forked from Freetz/freetz
-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
Makefile
712 lines (603 loc) · 28 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
# Makefile for Freetz, Kernel 2.6 series
#
# Copyright (C) 1999-2004 by Erik Andersen <[email protected]>
# Copyright (C) 2005-2006 by Daniel Eiband <[email protected]>
# Copyright (C) 2006-2018 by the Freetz developers (http://freetz.org)
# Copyright (C) 2019 by Freetz developers (https://freetz-ng.github.io/ and https://freetz.github.io)
#
# Licensed under the GPL v2, see the file COPYING in this tarball.
#--------------------------------------------------------------
# Just run 'make menuconfig', configure stuff, then run 'make'.
# You shouldn't need to mess with anything beyond this point...
#--------------------------------------------------------------
include make/include/100-suffixes.mk
MAKEFLAGS+=--no-print-directory
# Envira: Custom environment and arguments
ENVIRA_MARK:=ENVIRA
ifneq ($($(ENVIRA_MARK)),y)
ENVIRA_UMASK:=0022
ENVIRA_MODE_EXEC:=0755
ENVIRA_MODE_FILE:=0644
ENVIRA_CVS_DIRS:=.github addon config docs graphics include make patches tools
ENVIRA_LAST_REV:=.envira.log
ENVIRA_REV_TOOL:=tools/freetz_revision
ENVIRA_PATH_REL:=tools/path
ENVIRA_PATH_ABS:=$(shell realpath $(ENVIRA_PATH_REL))
ENVIRA_MAKE_VARS:=$(ENVIRA_MARK)=y
envira:
ifneq ($(shell umask),$(ENVIRA_UMASK))
ifneq ($(shell grep -q "$$($(ENVIRA_REV_TOOL))" $(ENVIRA_LAST_REV) 2>/dev/null && echo y),y)
@echo -n "Fixing checkout permissions " && \
echo -n "." && find . -maxdepth 0 -type d -print0 | xargs -0 chmod $(ENVIRA_MODE_EXEC) -- && \
echo -n "." && find . -maxdepth 1 -type f -executable -print0 | xargs -0 chmod $(ENVIRA_MODE_EXEC) -- && \
echo -n "." && find . -maxdepth 1 -type f ! -executable -print0 | xargs -0 chmod $(ENVIRA_MODE_FILE) -- && \
echo -n "." && find $(ENVIRA_CVS_DIRS) -type d -print0 | xargs -0 chmod $(ENVIRA_MODE_EXEC) -- && \
echo -n "." && find $(ENVIRA_CVS_DIRS) -type f -executable -print0 | xargs -0 chmod $(ENVIRA_MODE_EXEC) -- && \
echo -n "." && find $(ENVIRA_CVS_DIRS) -type f ! -executable -print0 | xargs -0 chmod $(ENVIRA_MODE_FILE) -- && \
echo " done." && \
$(ENVIRA_REV_TOOL) > $(ENVIRA_LAST_REV)
endif
endif
@$(ENVIRA_REV_TOOL) make
ifeq ($(strip $(MAKECMDGOALS)),)
@$(MAKE) olddefconfig > /dev/null
endif
@umask $(ENVIRA_UMASK) && LANG=C PATH="$(ENVIRA_PATH_ABS):$(PATH):/usr/sbin" $(MAKE) $(MAKECMDGOALS) $(ENVIRA_MAKE_VARS) || kill $$$$
.PHONY: envira
$(MAKECMDGOALS): envira
@:
.PHONY: $(MAKECMDGOALS)
else # Envira
TOPDIR=.
CONFIG_IN=config/Config.in
CONFIG_IN_CACHE=config/.cache.in
CONFIG_IN_CUSTOM=config/custom.in
CONFIG=tools/kconfig
SHELL:=bash
IMAGE:=
LOCALIP:=
RECOVER:=
export FREETZ_BASE_DIR:=$(shell pwd)
ADDON_DIR:=addon
BUILD_DIR:=build
DL_DIR:=dl
FAKEROOT_CACHE_DIR:=.fakeroot-cache
INCLUDE_DIR:=include
MAKE_DIR:=make
KERNEL_TARGET_DIR:=kernel
PACKAGES_DIR_ROOT:=packages
SOURCE_DIR_ROOT:=source
TOOLCHAIN_DIR:=toolchain
TOOLS_DIR:=tools
DL_FW_DIR:=$(DL_DIR)/fw
export FW_IMAGES_DIR:=images
MIRROR_DIR:=$(DL_DIR)/mirror
TOOLCHAIN_BUILD_DIR:=$(TOOLCHAIN_DIR)/$(BUILD_DIR)
TOOLS_BUILD_DIR:=$(TOOLS_DIR)/$(BUILD_DIR)
include $(MAKE_DIR)/include/200-aliases.mk
include $(MAKE_DIR)/include/300-helper.mk
# load user configuration file
-include $(TOPDIR)/.config
DL_TOOL:=$(TOOLS_DIR)/freetz_download
PATCH_TOOL:=$(TOOLS_DIR)/freetz_patch
PARSE_CONFIG_TOOL:=$(TOOLS_DIR)/parse-config
CHECK_PREREQ_TOOL:=$(TOOLS_DIR)/prerequisites
GENERATE_IN_TOOL:=$(TOOLS_DIR)/genin
TAR:=$(TOOLS_DIR)/tar-gnu
SED:=sed
PATCHELF:=patchelf
PYTHON3=python3
MESON=meson
CMAKE=cmake
NINJA=ninja
PERL=perl
MAKE1=make
ifeq ($(FREETZ_JLEVEL),0)
MAKE=make -j$(shell echo $$(( $$(nproc || echo 1) +1 )) )
else
MAKE=make -j$(FREETZ_JLEVEL)
endif
ifeq ($(FREETZ_REPRODUCIBLE),y)
export SOURCE_DATE_EPOCH:=$(shell tools/freetz_revision ticks)
endif
# Don't go parallel
.NOTPARALLEL:
# We don't use suffixes in the main make, don't waste time searching for files
.SUFFIXES:
# Use echo -e "$(_Y)message$(_N)" if you want to print a yellow message
IS_TTY=$(shell tty -s && echo 1 || echo 0)
ifeq ($(IS_TTY),1)
_Y:=\\033[33m
__Y:=\033[33m
_N:=\\033[m
__N:=\033[m
endif
export __Y
export __N
define MESSAGE
printf "%s\n" "$(1)" $(SILENT)
endef
# Print yellow error message and exit
define ERROR
[ "$(FREETZ_VERBOSITY_LEVEL)" = "0" ] && echo && cat .build.log 2>/dev/null; \
kill $$$$ 2>/dev/null || kill $$$$$$$$ 2>/dev/null; \
printf "\n$(_Y)%s$(_N)\n" "ERROR: $(2)"; exit $(1);
endef
# check for very old linux with kernel v3 or less
ifeq ($(shell uname -r | sed 's/\..*//;s/^[1-3]//'),)
$(info Your Linux System is very old. Please upgrade it or use Freetz-Linux: https://github.com/Freetz-NG/freetz-ng/blob/master/README.md)
endif
# check for proper make version
ifneq ($(filter 3.7% 3.80 3.81,$(MAKE_VERSION)),)
$(error Your make ($(MAKE_VERSION)) is too old. Go get at least 3.82)
endif
# Current user == root? -> Error
ifeq ($(shell echo $$UID),0)
$(error Running makefile as root is prohibited! Please build Freetz as normal user)
endif
# Mod archive unpacked incorrectly (heuristics)? -> Error
ifeq ($(shell MWW=make/pkgs/mod/files/root/usr/mww; \
[ ! -L $$MWW/cgi-bin/index.cgi -o ! -x $$MWW/cgi-bin/status.cgi -o -x $$MWW/index.html ] \
&& echo y\
),y)
$(error File permissions or links are wrong! Please unpack Freetz on a filesystem with Unix-like permissions)
endif
# Folder root/ needs 755 permissions
ifneq ($(shell stat -c %a make/pkgs/mod/files/root),755)
$(error Wrong build directory permissions. Please set umask to 0022 and then unpack/checkout again in a directory having no uid-/gid-bits set)
endif
# We need umask 0022
ifneq ($(shell umask),0022)
$(error Please run "umask 0022", it is now $(shell umask))
endif
# We don't like cygwin
ifeq ($(shell uname -o),Cygwin)
$(error Cygwin is not supported! Please use a real Linux environment)
endif
# git-svn removes empty directories, check for one of them
ifneq (OK,$(shell [ -d make/pkgs/mod/files/root/sys ] && echo OK))
$(error The empty directory root/sys is missing! Please do a clean checkout)
endif
# Simple checking of build prerequisites
# kconfig checks them in its .mk-file to be able to disable items always
ifneq ($(findstring menuconfig,$(MAKECMDGOALS)),menuconfig)
ifneq ($(NO_PREREQ_CHECK),y)
ifneq (OK,$(shell $(CHECK_PREREQ_TOOL) check >&2 && echo OK))
$(error Some prerequisites are missing! Install the missing packages with 'tools/prerequisites install' or check https://freetz-ng.github.io/freetz-ng/PREREQUISITES for hints. See '.prerequisites' for why)
endif
endif
endif
# There are known problems with mksquashfs3 and SUSE's gcc-4.5.0
ifeq ($(shell gcc --version | grep -q "gcc (SUSE Linux) 4.5.0 20100604" && echo y),y)
$(error gcc (SUSE Linux) 4.5.0 has known bugs. Please install and use a different version)
endif
# genin: (re)generate .in files if necessary
ifneq ($(findstring clean,$(MAKECMDGOALS)),clean)
# Note: the list of the packages to be treated specially (the 3rd argument of get-subdirs-containing) should match that used in genin
ifneq ($(call genin-get-considered-packages,make/pkgs/Config.in.generated),$(call get-subdirs-containing,make/pkgs,Config.in,asterisk[-].* iptables-cgi nhipt python[-].* ruby-fcgi sg3_utils))
ifneq ($(shell $(GENERATE_IN_TOOL) $(if $(findstring legacy,$(MAKECMDGOALS)),legacy) >&2 && echo OK),OK)
$(error genin failed)
endif
endif
endif
all: step
world: check-dot-config-uptodateness clear-echo-temporary $(DL_DIR) $(BUILD_DIR) $(KERNEL_TARGET_DIR) $(PACKAGES_DIR_ROOT) $(SOURCE_DIR_ROOT) $(TOOLCHAIN_BUILD_DIR)
ALL_PACKAGES_AND_LIBRARIES:=
NON_LOCALSOURCE_DOWNLOADABLE:=
KCONFIG_TARGETS:=config menuconfig menuconfig-single nconfig nconfig-single gconfig xconfig oldconfig olddefconfig allnoconfig allyesconfig randconfig listnewconfig config-compress
ifneq ($(findstring menuconfig,$(MAKECMDGOALS)),menuconfig)
# check linux for WSL
ifeq ($(shell uname -r | grep -q -i 'Microsoft' && echo y),y)
ifeq ($(FREETZ_TOOLCHAIN_CCACHE),y)
DLCHG:=$(shell echo 'y' ; sed 's/^FREETZ_TOOLCHAIN_CCACHE=.*/\# FREETZ_TOOLCHAIN_CCACHE is not set/' -i $(TOPDIR)/.config)
$(info You are running WSL, ccache automatically disabled.)
endif
endif
# check cpu for aarch64
ifeq ($(shell uname -m),aarch64)
ifeq ($(FREETZ_AVM_KERNEL_CONFIG_AREA_KNOWN),y)
DLCHG:=y
$(info You have an aarch64 CPU+OS and so you can not compile and run 32-bit code, required by yf-akcarea-host which is used for this avm device.)
endif
endif
# check cpu for x86_64
ifneq ($(shell uname -m),x86_64)
ifeq ($(FREETZ_DOWNLOAD_TOOLCHAIN),y)
DLCHG:=$(shell echo 'y' ; sed 's/^\# FREETZ_BUILD_TOOLCHAIN .*/FREETZ_BUILD_TOOLCHAIN=y/' -i $(TOPDIR)/.config)
DLCHG:=$(shell echo 'y' ; sed 's/^FREETZ_DOWNLOAD_TOOLCHAIN=.*/\# FREETZ_DOWNLOAD_TOOLCHAIN is not set/' -i $(TOPDIR)/.config)
$(info You have no x86_64 CPU, precompiled (download) toolchains automatically disabled.)
endif
ifeq ($(FREETZ_HOSTTOOLS_DOWNLOAD),y)
DLCHG:=$(shell echo 'y' ; sed 's/^FREETZ_HOSTTOOLS_DOWNLOAD=.*/\# FREETZ_HOSTTOOLS_DOWNLOAD is not set/' -i $(TOPDIR)/.config)
$(info You have no x86_64 CPU, precompiled (download) host-tools automatically disabled.)
endif
endif
# check cpu for AVX2
ifneq ($(shell grep -q ' avx2 ' /proc/cpuinfo && echo y),y)
ifeq ($(FREETZ_DOWNLOAD_TOOLCHAIN),y)
DLCHG:=$(shell echo 'y' ; sed 's/^\# FREETZ_BUILD_TOOLCHAIN .*/FREETZ_BUILD_TOOLCHAIN=y/' -i $(TOPDIR)/.config)
DLCHG:=$(shell echo 'y' ; sed 's/^FREETZ_DOWNLOAD_TOOLCHAIN=.*/\# FREETZ_DOWNLOAD_TOOLCHAIN is not set/' -i $(TOPDIR)/.config)
$(info You have no CPU with AVX2 support, precompiled (download) toolchains automatically disabled.)
endif
ifeq ($(FREETZ_HOSTTOOLS_DOWNLOAD),y)
DLCHG:=$(shell echo 'y' ; sed 's/^FREETZ_HOSTTOOLS_DOWNLOAD=.*/\# FREETZ_HOSTTOOLS_DOWNLOAD is not set/' -i $(TOPDIR)/.config)
$(info You have no CPU with AVX2 support, precompiled (download) host-tools automatically disabled.)
endif
endif
# check debian for <11
ifeq ($([ "$(sed 's/\..*//' /etc/debian_version 2>/dev/null)" -lt 11 ] 2>/dev/null && echo n),n)
ifeq ($(FREETZ_DOWNLOAD_TOOLCHAIN),y)
DLCHG:=$(shell echo 'y' ; sed 's/^\# FREETZ_BUILD_TOOLCHAIN .*/FREETZ_BUILD_TOOLCHAIN=y/' -i $(TOPDIR)/.config)
DLCHG:=$(shell echo 'y' ; sed 's/^FREETZ_DOWNLOAD_TOOLCHAIN=.*/\# FREETZ_DOWNLOAD_TOOLCHAIN is not set/' -i $(TOPDIR)/.config)
$(info Debian version before 11-bullseye are too old, precompiled (download) toolchains automatically disabled.)
endif
ifeq ($(FREETZ_HOSTTOOLS_DOWNLOAD),y)
DLCHG:=$(shell echo 'y' ; sed 's/^FREETZ_HOSTTOOLS_DOWNLOAD=.*/\# FREETZ_HOSTTOOLS_DOWNLOAD is not set/' -i $(TOPDIR)/.config)
$(info Debian version before 11-bullseye are too old, precompiled (download) host-tools automatically disabled.)
endif
endif
# compat 2020/08: change FEATURE_CROND_DIR: /var/spool/cron -> /mod/var/spool/cron
ifeq ($(shell sed -n 's/^FREETZ_BUSYBOX___V..._FEATURE_CROND_DIR=//p' $(TOPDIR)/.config 2>/dev/null),"/var/spool/cron")
DLCHG:=$(shell echo 'y' ; sed 's/^\(FREETZ_BUSYBOX___V..._FEATURE_CROND_DIR\)=.*/\1=\"\/mod\/var\/spool\/cron\"/' -i $(TOPDIR)/.config)
$(info BusyBox FEATURE_CROND_DIR automatically changed.)
endif
# compat 2021/04: change LAST_SYSTEM_ID: 999 -> 899
ifeq ($(shell sed -n 's/^FREETZ_BUSYBOX___V..._LAST_SYSTEM_ID=//p' $(TOPDIR)/.config 2>/dev/null),999)
DLCHG:=$(shell echo 'y' ; sed 's/^\(FREETZ_BUSYBOX___V..._LAST_SYSTEM_ID\)=.*/\1=899/' -i $(TOPDIR)/.config)
$(info BusyBox LAST_SYSTEM_ID automatically changed.)
endif
# compat 2022/04: remove orphan yourfritz link in tools
ifeq ($(shell test -L $(TOPDIR)/tools/yf && echo y),y)
DLCHG:=$(shell echo 'y' ; rm -f $(TOPDIR)/tools/yf $(TOPDIR)/source/host-tools/yf-*/.installed)
$(info Orphan link automatically removed.)
endif
#
$(if $(DLCHG),$(error Please re-run))
endif
VERBOSE:=
QUIET:=--quiet
QUIETSHORT:=-q
QUIETCMAKE:=-DCMAKE_MESSAGE_LOG_LEVEL=error
ifeq ($(strip $(FREETZ_VERBOSITY_LEVEL)),0)
.SILENT:
# Don't be silent when a menuconfig target is called
ifneq ($(findstring menuconfig,$(MAKECMDGOALS)),menuconfig)
#SILENT:= >>build.log 2>&1
SILENT:= > .build.log 2>&1
#SILENT:= > /dev/null 2>&1
endif
endif
ifeq ($(strip $(FREETZ_VERBOSITY_LEVEL)),2)
#VERBOSE:=-v # Show files on untar
QUIET:=
QUIETSHORT:=
QUIETCMAKE:=-DCMAKE_MESSAGE_LOG_LEVEL=status
endif
export FREETZ_VERBOSITY_LEVEL
export VERBOSE
include $(MAKE_DIR)/include/400-host.mk
include $(MAKE_DIR)/include/500-echo.mk
include $(MAKE_DIR)/include/600-macros.mk
include $(MAKE_DIR)/host-tools/Makefile.in
include $(call sorted-wildcard,$(MAKE_DIR)/host-tools/*/*.mk)
TOOLS_CACHECLEAN:=$(patsubst %,%-cacheclean,$(TOOLS))
TOOLS_CLEAN:=$(patsubst %,%-clean,$(TOOLS))
TOOLS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TOOLS))
TOOLS_DISTCLEAN:=$(patsubst %,%-distclean,$(TOOLS))
TOOLS_SOURCE:=$(patsubst %,%-source,$(TOOLS))
TOOLS_PRECOMPILED:=$(patsubst %,%-precompiled,$(TOOLS))
TOOLS_RECOMPILE:=$(patsubst %,%-recompile,$(TOOLS))
TOOLS_FIXHARDCODED:=$(patsubst %,%-fixhardcoded,$(TOOLS))
TOOLS_AUTOFIX:=$(patsubst %,%-autofix,$(TOOLS))
$(DL_DIR):
@ \
[ ! -e "$(DL_DIR)" -a ! -L "$(DL_DIR)" ] && ln -s ~/.freetz-dl "$(DL_DIR)"; \
[ -d "$(DL_DIR)" ] || mkdir -p "$$(readlink "$(DL_DIR)")"
$(DL_FW_DIR) $(MIRROR_DIR): | $(DL_DIR)
@mkdir -p $@
$(BUILD_DIR) \
$(KERNEL_TARGET_DIR) \
$(PACKAGES_DIR_ROOT) \
$(SOURCE_DIR_ROOT) \
$(TOOLCHAIN_BUILD_DIR) \
$(TOOLS_BUILD_DIR) \
$(FW_IMAGES_DIR):
@mkdir -p $@
ifneq ($(strip $(FREETZ_HAVE_DOT_CONFIG)),y)
step: menuconfig
cacheclean: $(TOOLS_CACHECLEAN) common-cacheclean
clean: $(TOOLS_CLEAN) common-clean
dirclean: $(TOOLS_DIRCLEAN) common-dirclean
distclean: $(TOOLS_DISTCLEAN) common-distclean
else
step: image world tools firmware
-include .config.cmd
include $(MAKE_DIR)/toolchain/Makefile.in
include $(MAKE_DIR)/include/700-image.mk
include $(MAKE_DIR)/pkgs/Makefile.in
include $(call sorted-wildcard,$(MAKE_DIR)/libs/*/Makefile.in)
include $(call sorted-wildcard,$(MAKE_DIR)/pkgs/*/Makefile.in)
include $(call sorted-wildcard,$(MAKE_DIR)/busybox/Makefile.in)
include $(call sorted-wildcard,$(MAKE_DIR)/kernel/Makefile.in)
include $(call sorted-wildcard,$(MAKE_DIR)/libs/*/*.mk)
include $(call sorted-wildcard,$(MAKE_DIR)/pkgs/*/*.mk)
include $(call sorted-wildcard,$(MAKE_DIR)/busybox/busybox.mk)
include $(call sorted-wildcard,$(MAKE_DIR)/kernel/kernel.mk)
DOWNLOADABLES_CHECK_DOWNLOADS:=$(patsubst %,%-check-download,$(NON_LOCALSOURCE_DOWNLOADABLE))
DOWNLOADABLES_MIRROR:=$(patsubst %,%-download-mirror,$(NON_LOCALSOURCE_DOWNLOADABLE))
TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
TARGETS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TARGETS))
TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS))
TARGETS_PRECOMPILED:=$(patsubst %,%-precompiled,$(TARGETS))
PACKAGES_BUILD:=$(patsubst %,%-package,$(PACKAGES))
PACKAGES_CLEAN:=$(patsubst %,%-clean,$(PACKAGES))
PACKAGES_DIRCLEAN:=$(patsubst %,%-dirclean,$(PACKAGES))
PACKAGES_LIST:=$(patsubst %,%-list,$(PACKAGES))
PACKAGES_SOURCE:=$(patsubst %,%-source,$(PACKAGES))
PACKAGES_PRECOMPILED:=$(patsubst %,%-precompiled,$(PACKAGES))
LIBS_CLEAN:=$(patsubst %,%-clean,$(LIBS))
LIBS_DIRCLEAN:=$(patsubst %,%-dirclean,$(LIBS))
LIBS_SOURCE:=$(patsubst %,%-source,$(LIBS))
LIBS_PRECOMPILED:=$(patsubst %,%-precompiled,$(LIBS))
TOOLCHAIN_CLEAN:=$(patsubst %,%-clean,$(TOOLCHAIN))
TOOLCHAIN_DIRCLEAN:=$(patsubst %,%-dirclean,$(TOOLCHAIN))
TOOLCHAIN_DISTCLEAN:=$(patsubst %,%-distclean,$(TOOLCHAIN))
TOOLCHAIN_SOURCE:=$(patsubst %,%-source,$(TOOLCHAIN))
ifeq ($(strip $(FREETZ_BUILD_TOOLCHAIN)),y)
include $(MAKE_DIR)/toolchain/kernel-toolchain.mk
include $(MAKE_DIR)/toolchain/target-toolchain.mk
else
include $(MAKE_DIR)/toolchain/download-toolchain.mk
endif
package-list: package-list-clean $(PACKAGES_LIST)
@touch .packages
package-list-clean:
@$(RM) .packages
firmware-nocompile: tools $(DL_IMAGE) $(DL_IMAGE2) $(DL_IMAGE3)
ifneq ($(strip $(FREETZ_FWMOD_SKIP_ALL)),y)
@./fwmod \
$(if $(call is-y,$(FREETZ_FWMOD_SKIP_UNPACK)),,-u) \
$(if $(call is-y,$(FREETZ_FWMOD_SKIP_MODIFY)),,-m) \
$(if $(call is-y,$(FREETZ_FWMOD_SKIP_PACK)),,-p) \
$(if $(call is-y,$(FREETZ_FWMOD_VALIDATE)),-v "$(strip $(FREETZ_AVM_SIGNATURE_KEY))",) \
$(if $(call is-y,$(FREETZ_FWMOD_VALIDATE)),$(if $(call is-y,$(FREETZ_DL_ALIEN)),-w "$(strip $(FREETZ_AVM_SIGNATURE_KEY2))",),) \
$(if $(call is-y,$(FREETZ_FWMOD_VALIDATE)),$(if $(call is-y,$(FREETZ_DL_ALIEN)),-x "$(strip $(FREETZ_AVM_SIGNATURE_KEY3))",),) \
$(if $(call is-y,$(FREETZ_FWMOD_SIGN)),-s) \
$(if $(call is-y,$(FREETZ_FWMOD_USBROOT)),-z) \
$(if $(strip $(FREETZ_FWMOD_NFSROOT_DIR)),-c "$(strip $(FREETZ_FWMOD_NFSROOT_DIR))") \
$(if $(filter firmware-nocompile,$(MAKECMDGOALS)),-n) \
$(if $(call is-y,$(FREETZ_FWMOD_FORCE_PACK)),-f) \
-d $(BUILD_DIR) \
$(if $(DL_IMAGE),"$(DL_IMAGE)") $(if $(DL_IMAGE2),"$(DL_IMAGE2)") $(if $(DL_IMAGE3),"$(DL_IMAGE3)")
endif
ifneq ($(strip $(FREETZ_FWMOD_SKIP_MODIFY)),y)
firmware-nocompile: $(PACKAGES) package-list .config.compressed
firmware: precompiled
endif
firmware: firmware-nocompile
test: $(BUILD_DIR)/modified
@echo "no tests defined"
toolchain-depend: | $(TOOLCHAIN)
# Use KTV and TTV variables to provide new toolchain versions, i.e.
# make KTV=freetz-0.4 TTV=freetz-0.5 toolchain
toolchain: $(DL_DIR) $(SOURCE_DIR_ROOT) $(TOOLCHAIN) tools lzma1-host
@echo
@echo "################################################################"
@echo
@echo "Creating toolchain tarballs ... "
@$(call TOOLCHAIN_CREATE_TARBALL,$(KERNEL_TOOLCHAIN_STAGING_DIR),$(KTV))
@$(call TOOLCHAIN_CREATE_TARBALL,$(TARGET_TOOLCHAIN_STAGING_DIR),$(TTV))
@echo
@echo "FINISHED: new download toolchains can be found in $(DL_DIR)/"
libs: $(DL_DIR) $(SOURCE_DIR_ROOT) $(LIBS_PRECOMPILED)
sources: $(DL_DIR) $(FW_IMAGES_DIR) $(SOURCE_DIR_ROOT) $(PACKAGES_DIR_ROOT) $(DL_IMAGE) $(DL_IMAGE2) $(DL_IMAGE3) \
$(TARGETS_SOURCE) $(PACKAGES_SOURCE) $(LIBS_SOURCE) $(TOOLCHAIN_SOURCE) $(TOOLS_SOURCE)
precompiled: $(DL_DIR) $(FW_IMAGES_DIR) $(SOURCE_DIR_ROOT) $(KERNEL_TARGET_DIR) $(PACKAGES_DIR_ROOT) toolchain-depend \
$(LIBS_PRECOMPILED) $(TARGETS_PRECOMPILED) $(PACKAGES_PRECOMPILED)
check-downloads: $(DOWNLOADABLES_CHECK_DOWNLOADS)
mirror: $(MIRROR_DIR) $(DOWNLOADABLES_MIRROR)
cacheclean: $(TOOLS_CACHECLEAN) common-cacheclean
clean: $(TARGETS_CLEAN) $(PACKAGES_CLEAN) $(LIBS_CLEAN) $(TOOLCHAIN_CLEAN) $(TOOLS_CLEAN) common-clean
dirclean: $(TOOLCHAIN_DIRCLEAN) $(TOOLS_DISTCLEAN) common-dirclean
distclean: $(TOOLCHAIN_DISTCLEAN) $(TOOLS_DISTCLEAN) common-distclean
.PHONY: firmware package-list package-list-clean sources precompiled toolchain toolchain-depend libs mirror check-downloads \
$(TARGETS) $(TARGETS_CLEAN) $(TARGETS_DIRCLEAN) $(TARGETS_SOURCE) $(TARGETS_PRECOMPILED) \
$(PACKAGES) $(PACKAGES_BUILD) $(PACKAGES_CLEAN) $(PACKAGES_DIRCLEAN) $(PACKAGES_LIST) $(PACKAGES_SOURCE) $(PACKAGES_PRECOMPILED) \
$(LIBS) $(LIBS_CLEAN) $(LIBS_DIRCLEAN) $(LIBS_SOURCE) $(LIBS_PRECOMPILED) \
$(TOOLCHAIN) $(TOOLCHAIN_CLEAN) $(TOOLCHAIN_DIRCLEAN) $(TOOLCHAIN_DISTCLEAN) $(TOOLCHAIN_SOURCE)
endif # FREETZ_HAVE_DOT_CONFIG!=y
#wrapper: $TOOL-host -> $TOOL-host-precompiled
$(filter-out $(TOOLS_BUILD_LOCAL),$(TOOLS)): % : $(if $(FREETZ_HOSTTOOLS_DOWNLOAD),tools-host,%-precompiled)
$(filter $(TOOLS_BUILD_LOCAL),$(TOOLS)): % : %-precompiled
$(patsubst %,%-autofix,$(TOOLS)): %-autofix : %-dirclean
$(MAKE) AUTO_FIX_PATCHES=y $*-unpacked
$(patsubst %,%-recompile,$(TOOLS)): %-recompile : %-dirclean %-precompiled
$(patsubst %,%-fixhardcoded,$(TOOLS)): %-fixhardcoded :
tools: $(DL_DIR) $(SOURCE_DIR_ROOT) $(filter-out $(TOOLS_CONDITIONAL),$(TOOLS))
tools-all: $(DL_DIR) $(SOURCE_DIR_ROOT) $(filter-out $(TOOLS_TARXZBUNDLE),$(TOOLS))
tools-allexcept-local: $(DL_DIR) $(SOURCE_DIR_ROOT) $(filter-out $(TOOLS_BUILD_LOCAL),$(TOOLS))
tools-distclean-local: $(patsubst %,%-distclean,$(filter-out $(TOOLS_TARXZBUNDLE),$(TOOLS_BUILD_LOCAL)))
tools-dirclean: $(TOOLS_DIRCLEAN)
tools-distclean: $(TOOLS_DISTCLEAN)
.PHONY: push_firmware push-firmware pf pfp tools-push_firmware
pfp tools-push_firmware: netkit-ftp-host ncftp-host dos2unix-host tichksum-host dtc-host uimg-host
push_firmware push-firmware pf: tools-push_firmware
@if [ ! -e "images/latest.image" ]; then \
echo "Please run 'make' first to build an image."; exit 1; \
else \
$(TOOLS_DIR)/push_firmware; exit $?; \
fi
recover:
@if [ -z "$(IMAGE)" ]; then \
echo "Specify an image to recover." 1>&2; \
echo "e.g. make recover IMAGE=some.image" 1>&2; \
elif [ ! -r "$(IMAGE)" ]; then \
echo "Cannot read $(IMAGE)." 1>&2; \
else \
echo "This can help if your box is not booting any more"; \
echo "(Power LED on and flashing of all LEDs every 5 secs)."; \
echo; \
echo "Make sure that there is only one box in your subnet."; \
echo; \
while true; do \
echo "Are you sure you want to recover filesystem and kernel"; \
echo -n "from $(IMAGE)? (y/n) "; \
read yn; \
case "$$yn" in \
[yY]*) \
echo; \
if [ -z "$(LOCALIP)" ]; then \
echo "If this fails try to specify a local IP adress. Your"; \
echo "local IP has to be in the 192.168.178.0/24 subnet."; \
echo "e.g. make recover LOCALIP=192.168.178.20"; \
echo; \
$(TOOLS_DIR)/recover-eva -f "$(IMAGE)"; \
else \
$(TOOLS_DIR)/recover-eva -l $(LOCALIP) -f "$(IMAGE)"; \
fi; break ;; \
[nN]*) \
break ;; \
esac; \
done; \
fi
xconfig: config-cache kconfig-host-qconf
@$(CONFIG)/qconf $(CONFIG_IN_CACHE)
gconfig: config-cache kconfig-host-gconf
@$(CONFIG)/gconf $(CONFIG_IN_CACHE)
nconfig: config-cache kconfig-host-nconf
@$(CONFIG)/nconf $(CONFIG_IN_CACHE)
nconfig-single: config-cache kconfig-host-nconf
@MENUCONFIG_MODE="single_menu" $(CONFIG)/nconf $(CONFIG_IN_CACHE)
menuconfig: config-cache kconfig-host-mconf
@$(CONFIG)/mconf $(CONFIG_IN_CACHE)
menuconfig-single: config-cache kconfig-host-mconf
@MENUCONFIG_MODE="single_menu" $(CONFIG)/mconf $(CONFIG_IN_CACHE)
menuconfig-nocache: $(CONFIG_IN_CUSTOM) kconfig-host-mconf
@$(CONFIG)/mconf $(CONFIG_IN)
config: config-cache kconfig-host-conf
@$(CONFIG)/conf $(CONFIG_IN_CACHE)
config-compress: .config.compressed
.config.compressed: .config config-cache kconfig-host-conf
@$(CONFIG)/conf --savedefconfig $@ $(CONFIG_IN_CACHE)
@sed -e "/^FREETZ_FWMOD_SIGN_PASSWORD=/d" -i $@ 2>/dev/null
# @echo "Compressed configuration written to $@."; \
# echo "It is equivalent to .config, but contains only non-default user selections and no signing key password."
listnewconfig: config-cache kconfig-host-conf
@$(CONFIG)/conf --listnewconfig $(CONFIG_IN_CACHE)
config-flush-invalid:
-@$(SED) '/^FREETZ_TARGET_CFLAGS=/d' -i .config 2>/dev/null
oldconfig olddefconfig: config-flush-invalid
oldconfig olddefconfig allnoconfig allyesconfig randconfig: config-cache kconfig-host-conf
@$(CONFIG)/conf --$@ $(CONFIG_IN_CACHE) && touch .config
reuseconfig: .config
@tools/reuseconfig
config-cache: $(CONFIG_IN_CACHE)
config-cache-clean:
@$(RM) $(CONFIG_IN_CACHE)
config-cache-refresh: config-cache-clean config-cache
ifneq ($(findstring clean,$(MAKECMDGOALS)),clean)
-include $(INCLUDE_DIR)/config/cache.conf.cmd
$(CONFIG_IN_CACHE) $(INCLUDE_DIR)/config/cache.conf.cmd: $(CONFIG_IN_CUSTOM) $(PARSE_CONFIG_TOOL) $(deps_config_cache)
@mkdir -p $(INCLUDE_DIR)/config
@$(PARSE_CONFIG_TOOL) $(CONFIG_IN) > $(CONFIG_IN_CACHE)
endif
$(CONFIG_IN_CUSTOM): | $(DL_DIR)
@touch $@
# Macro to clean up config dependencies
# $(1) = target name to be defined
# $(2) = info text to be printed
# $(3) = sub-regex for removing symbols from .config
#
# Note: We could also deactivate options which are on by default, but not
# selected by any packages, e.g. FREETZ_BUSYBOX_ETHER_WAKE or almost 20 default
# FREETZ_SHARE_terminfo_*. At the moment those options will be reactivated. To
# deactivate them as well, the 'sed' command for step 1 can be replaced by:
# $$(SED) -i -r 's/^(FREETZ_($(3))_.+)=.+/\1=n/' .config; \
#
define CONFIG_CLEAN_DEPS
$(1):
@{ \
cp .config .config_tmp; \
echo -n "Step 1: temporarily deactivate all $(2) ... "; \
$$(SED) -i -r '/^FREETZ_BUSYBOX__VERSION_V/n;s/^(FREETZ_($(3))_)/# \1/' .config; \
echo "DONE"; \
echo -n "Step 2: reactivate only elements required by selected packages or active by default ... "; \
make olddefconfig > /dev/null; \
echo "DONE"; \
echo "The following elements have been deactivated:"; \
diff -U 0 .config_tmp .config | $$(SED) -rn 's/^\+# ([^ ]+) is not set$$$$/ \1/p'; \
$$(RM) .config_tmp; \
}
endef
# Decactivate optional stuff by category
$(eval $(call CONFIG_CLEAN_DEPS,config-clean-deps-modules,kernel modules,MODULE))
$(eval $(call CONFIG_CLEAN_DEPS,config-clean-deps-libs,shared libraries,LIB))
$(eval $(call CONFIG_CLEAN_DEPS,config-clean-deps-busybox,BusyBox applets,BUSYBOX))
$(eval $(call CONFIG_CLEAN_DEPS,config-clean-deps-terminfo,terminfos,SHARE_terminfo))
# Deactivate all optional stuff
$(eval $(call CONFIG_CLEAN_DEPS,config-clean-deps,kernel modules$(_comma) shared libraries$(_comma) BusyBox applets and terminfos,MODULE|LIB|BUSYBOX|SHARE_terminfo))
# Deactivate all optional stuff except for Busybox applets
$(eval $(call CONFIG_CLEAN_DEPS,config-clean-deps-keep-busybox,kernel modules$(_comma) shared libraries and terminfos,MODULE|LIB|SHARE_terminfo))
common-cacheclean:
[ ! -x .fwmod_custom ] || ./.fwmod_custom clean
./fwmod_custom clean
$(RM) make/pkgs/Config.in.generated make/pkgs/external.in.generated
$(RM) .config.compressed .config.old .config.*.tmp
$(RM) .packages .exclude-release-tmp $(CONFIG_IN_CACHE)
$(RM) $(DL_FW_DIR)/*.detected.image $(DL_FW_DIR)/*.detected.image.url
$(RM) -r $(BUILD_DIR)
$(RM) -r $(FAKEROOT_CACHE_DIR)
common-clean: common-cacheclean
common-dirclean: common-clean $(if $(FREETZ_HAVE_DOT_CONFIG),kernel-dirclean)
$(RM) -r $(if $(FREETZ_HAVE_DOT_CONFIG),$(PACKAGES_DIR) $(SOURCE_DIR) $(TARGET_TOOLCHAIN_DIR),$(PACKAGES_DIR_ROOT) $(SOURCE_DIR_ROOT))
common-distclean: common-dirclean
$(RM) .config.cmd .tmpconfig.h *.log
$(RM) -r $(INCLUDE_DIR)/config
$(RM) -r $(FW_IMAGES_DIR)
$(RM) -r $(KERNEL_TARGET_DIR)
$(RM) -r $(PACKAGES_DIR_ROOT) $(SOURCE_DIR_ROOT)
$(RM) -r $(TOOLCHAIN_DIR)
$(RM) -r $(TOOLS_BUILD_DIR)
@echo "The files ./.config ./config/custom.in ./.fwmod_custom and the directories ~/.freetz-dl/ ~/.freetz-signature/ were not removed."
release: distclean
version="$$(cat .version)"; \
curdir="$$(basename $$(pwd))"; \
dir="$$(cat .version | $(SED) -e 's#^\(freetz.*-[0-9\.]*\).*$$#\1#')"; \
( \
cd ../; \
[ "$$curdir" == "$$dir" ] || mv "$$curdir" "$$dir"; \
( \
find "$$dir" -type f -name .gitignore; \
$(SED) "s/^/$$dir\//" "$$dir/.exclude-release"; \
echo "$$dir/.exclude-release-tmp"; \
) > "$$dir/.exclude-release-tmp"; \
echo "excluding:"; \
cat "$$dir/.exclude-release-tmp" ; \
echo "creating: $${version}.tar.bz2"; \
tar --exclude-from="$${dir}/.exclude-release-tmp" --owner=0 --group=0 -cjf "$${version}.tar.bz2" "$$dir"; \
du -h "$${version}.tar.bz2"; \
[ "$$curdir" == "$$dir" ] || mv "$$dir" "$$curdir"; \
cd "$$curdir"; \
)
$(RM) .exclude-release-tmp
clear-echo-temporary:
@$(RM) $(ECHO_ITEM_1ST) $(ECHO_ITEM_TMP) $(ECHO_ITEM_NEW) $(ECHO_ITEM_END)
# Check .config is up-to-date. Any change to any of the menuconfig configuration files (either manual or one caused by 'svn up') require .config to be updated.
check-dot-config-uptodateness: $(CONFIG_IN_CACHE)
@if [ -e .config -a $(CONFIG_IN_CACHE) -nt .config ]; then \
echo -n -e $(_Y); \
echo "ERROR: The .config file needs to be updated, because"; \
echo " you have either updated to a newer revision"; \
echo " or altered one of the menuconfig files manually."; \
echo " Please run 'make olddefconfig'."; \
echo -n -e $(_N); \
exit 3; \
fi
help:
@sed 's/^# /\n/;/```/d' docs/wiki/20_Advanced/make_targets.en.md
.PHONY: all world step $(KCONFIG_TARGETS) config-flush-invalid config-cache config-cache-clean config-cache-refresh tools recover \
config-clean-deps-modules config-clean-deps-libs config-clean-deps-busybox config-clean-deps-terminfo config-clean-deps config-clean-deps-keep-busybox \
cacheclean clean dirclean distclean common-cacheclean common-clean common-dirclean common-distclean release \
$(TOOLS) $(TOOLS_CACHECLEAN) $(TOOLS_CLEAN) $(TOOLS_DIRCLEAN) $(TOOLS_DISTCLEAN) $(TOOLS_SOURCE) $(TOOLS_PRECOMPILED) $(TOOLS_RECOMPILE) $(TOOLS_FIXHARDCODED) $(TOOLS_AUTOFIX) \
clear-echo-temporary check-dot-config-uptodateness
endif # Envira