]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/Config
dnsdist: Update to 1.3.3
[ipfire-2.x.git] / lfs / Config
1 ###############################################################################
2 # LFSMake #
3 # by Rod Roark <rod@sunsetsystems.com> #
4 # #
5 # Copyright (C) 2002 Rod Roark #
6 # #
7 # See http://www.lfsmake.org/ for the most current standard version. #
8 # #
9 # These Makefiles are made available under the terms of the Artistic License, #
10 # found at http://www.opensource.org/licenses/artistic-license.html. #
11 ###############################################################################
12
13 ###############################################################################
14 # #
15 # IPFire.org - A linux based firewall #
16 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
17 # #
18 # This program is free software: you can redistribute it and/or modify #
19 # it under the terms of the GNU General Public License as published by #
20 # the Free Software Foundation, either version 3 of the License, or #
21 # (at your option) any later version. #
22 # #
23 # This program is distributed in the hope that it will be useful, #
24 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
25 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
26 # GNU General Public License for more details. #
27 # #
28 # You should have received a copy of the GNU General Public License #
29 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
30 # #
31 ###############################################################################
32
33 # Cleanup environment from any variables
34 unexport BUILD_ARCH BUILD_PLATFORM BUILDTARGET CROSSTARGET TOOLCHAIN TOOLS_DIR
35
36 PARALLELISM = $(shell echo $$( \
37 if [ -n "$(MAX_PARALLELISM)" ] && [ $(MAX_PARALLELISM) -lt $(DEFAULT_PARALLELISM) ]; then \
38 echo $(MAX_PARALLELISM); \
39 else \
40 echo $(DEFAULT_PARALLELISM); \
41 fi) \
42 )
43
44 MAKETUNING = -j$(PARALLELISM)
45
46 ifeq "$(BUILD_ARCH)" "aarch64"
47 IS_64BIT = 1
48 endif
49
50 ifeq "$(BUILD_ARCH)" "armv7hl"
51 IS_32BIT = 1
52 endif
53
54 ifeq "$(BUILD_ARCH)" "armv5tel"
55 IS_32BIT = 1
56 endif
57
58 ifeq "$(BUILD_ARCH)" "x86_64"
59 IS_64BIT = 1
60 endif
61
62 ifeq "$(BUILD_ARCH)" "i586"
63 IS_32BIT = 1
64 endif
65
66 ifeq "$(TOOLCHAIN)" "1"
67 PREFIX = $(TOOLS_DIR)
68 else
69 PREFIX = /usr
70 endif
71
72 TAR_OPTIONS = --xz
73
74 # URLs that are common sources of downloads. If you're having trouble with
75 # a site you should change its URL to that of a suitable mirror site.
76 #
77 URL_IPFIRE = https://source.ipfire.org/source-2.x
78 URL_TOOLCHAIN = https://source.ipfire.org/toolchains
79 URL_SOURCE = git.ipfire.org:/pub/sources/source-2.x
80
81 # Don't change this; it will be overridden by other makefiles where necessary.
82 #
83 ROOT =
84
85 # For most packages tarballs are unpacked here and then deleted after
86 # installation.
87 #
88 DIR_SRC = $(ROOT)/usr/src
89
90 # Files are downloaded into DIR_TMP and then moved to DIR_DL, to avoid
91 # messes with partially retrieved files. DIR_DL is where we will
92 # save all the files that are downloaded. DIR_INFO contains the
93 # file lists of installed packages.
94 #
95 DIR_DL = $(LFS_BASEDIR)/cache
96 DIR_CHK = $(LFS_BASEDIR)/cache/check
97 DIR_CONF = $(LFS_BASEDIR)/config
98 DIR_INFO = $(LFS_BASEDIR)/log
99 DIR_TMP = /tmp
100
101 # Add the compiler location and version and specs to the ccache hash
102 CCACHE_COMPILERCHECK += $(shell gcc -dumpspecs 2>/dev/null | md5sum | cut -d ' ' -f1)
103
104 # We support EFI on x86_64 and aarch64
105 ifeq "$(BUILD_ARCH)" "x86_64"
106 EFI = 1
107 EFI_ARCH = x64
108 GRUB_ARCH = $(BUILD_ARCH)
109 endif
110
111 ifeq "$(BUILD_ARCH)" "aarch64"
112 EFI = 1
113 EFI_ARCH = aa64
114 GRUB_ARCH = arm64
115 endif
116
117 ###############################################################################
118 # Common Macro Definitions
119 ###############################################################################
120
121 # For each package we create a list of files that it installed under
122 # log/<TARGET> name. Modified files are not identified
123 #
124 define FIND_FILES
125 cd $(ROOT)/ && find -mount \
126 \( -path '.$(TOOLS_DIR)' -or -path './tmp' -or -path './usr/src' \
127 -or -path './run' -or -path './dev' -or -path './proc' \
128 -or -path './install' \) -prune -or -print | sort
129 endef
130
131 # This is common starting logic for builds.
132 #
133 ifeq "$(ROOT)" ""
134 define PREBUILD
135 echo "====================================== Installing $(THISAPP) ..."
136 @echo "Install started; saving file list to $(DIR_SRC)/lsalr ..."
137 @if [ ! -f $(DIR_SRC)/lsalr ]; then $(FIND_FILES) > $(DIR_SRC)/lsalr; fi
138 # Fix installation on partial rebuild, so modules install where they should
139 # and not everytime on the last compiled kernel
140 if [ -f $(DIR_SRC)/linux-$(KVER) ]; then \
141 cd $(DIR_SRC)/linux-$(KVER) && \
142 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))-ipfire$(KCFG)+' Makefile; \
143 fi
144 endef
145 else
146 define PREBUILD
147 echo "====================================== Installing $(THISAPP) ..."
148 endef
149 endif
150
151 # Common end-of-installation logic for Stage 2 and beyond.
152 #
153 ifeq "$(ROOT)" ""
154 define POSTBUILD
155 @echo "Updating linker cache..."
156 @type -p ldconfig >/dev/null && ldconfig || :
157 @echo "Install done; saving file list to $(TARGET) ..."
158 @$(FIND_FILES) > $(DIR_SRC)/lsalrnew
159 @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' > $(TARGET)_diff
160 @cp -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr
161 @rm -f $(DIR_SRC)/lsalrnew
162 sed -i -e 's+.\/++' $(TARGET)_diff
163 # compare roofile ( same name as lfs script) with the list of installed files
164 # special cases
165 # - if the corresponding rootfile is not found, touch $(TARGET)_missing_rootfile
166 # - on a partial rebuild without a new file inside TARGET_diff, just touch TARGET
167 # $(TARGET)_diff : result of the diff
168 # ROOTFILE : reference of include/exclude files
169 # $(TARGET)_rootfile : ROOTFILE with KVER replacement
170 # $(TARGET) : log result with {commented|include|added} files
171 if [ -s "$(TARGET)_diff" ]; then \
172 LFS_SCRIPT=$(firstword $(MAKEFILE_LIST))$(KCFG); \
173 echo $(LFS_SCRIPT); \
174 ROOTFILE=$$(find -L $(DIR_SRC)/config/rootfiles/{common,packages}/{$(BUILD_ARCH),} -maxdepth 1 -type f -name $$LFS_SCRIPT 2>/dev/null | head -1); \
175 if [ "$$ROOTFILE" = "" ]; then \
176 touch $(TARGET)_missing_rootfile; \
177 ROOTFILE=$(TARGET)_missing_rootfile ; \
178 echo "error $$LFS_SCRIPT not found in config/rootfiles"; \
179 fi; \
180 sed -e "s/BUILDTARGET/$(BUILDTARGET)/g" -e "s/KVER/$(KVER)/g" -e "s/MACHINE/$(BUILD_ARCH)/g" $$ROOTFILE > $(TARGET)_rootfile; \
181 for line in `cat $(TARGET)_diff`; do \
182 if grep -qG "^#$$line$$" $(TARGET)_rootfile; then echo "#$$line" >> $(TARGET); \
183 elif grep -qG "^$$line$$" $(TARGET)_rootfile ; then echo "$$line" >> $(TARGET); \
184 else echo "+$$line" >> $(TARGET); \
185 fi; \
186 done; \
187 for line in `grep -v "^#" $(TARGET)_rootfile`; do \
188 if ! grep -qG "^$$line$$" $(TARGET)_diff ; then echo "-$$line" >> $(TARGET); \
189 fi; \
190 done; \
191 rm -f $(TARGET)_rootfile; \
192 else \
193 touch $(TARGET); \
194 fi
195 @rm -f $(TARGET)_diff
196 endef
197 else
198 define POSTBUILD
199 @echo "===================================== Install done for $(THISAPP)."
200 touch $(TARGET)
201 endef
202 endif
203
204 define CHECK
205 @echo -e "$(MESSAGE)Check: $($(notdir $@))"
206 wget -T 120 -t 1 --spider -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O /dev/null
207 @touch $(DIR_CHK)/$(notdir $@)
208 endef
209
210 define LOAD
211 @echo -e "$(MESSAGE)Download: $($(notdir $@))"
212 wget -T 60 -t 1 -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@)
213 [ "$($(notdir $@)_MD5)" = `md5sum $(DIR_TMP)/$(notdir $@) | awk '{ print $$1 }'` ] # detect page not found answer
214 mv $(DIR_TMP)/$(notdir $@) $(DIR_DL)
215 endef
216
217 define MD5
218 # error mean file signature don't match the one in lfs script
219 [ "$($@_MD5)" = `md5sum $(DIR_DL)/$@ | awk '{ print $$1 }'` ]
220 echo "$@ checksum OK"
221 endef
222
223 define PAK
224 # Bringing the files to their right place.
225 @rm -rf /install/packages/package
226 @mkdir -p /install/packages/package/tmp
227 if [ -e "/usr/src/src/paks/$(PROG)" ]; then \
228 cp -f /usr/src/src/paks/$(PROG)/{,un}install.sh /usr/src/src/paks/$(PROG)/update.sh \
229 /install/packages/package; \
230 else \
231 cp -f /usr/src/src/paks/default/{,un}install.sh /usr/src/src/paks/default/update.sh \
232 /install/packages/package; \
233 fi
234 for i in $(DIR_SRC)/config/rootfiles/packages/{$(BUILD_ARCH),}/$(PROG); do \
235 if [ -e "$${i}" ]; then \
236 cp -v $${i} /install/packages/package/ROOTFILES; \
237 break; \
238 fi; \
239 done
240 sed -e 's/BUILDTARGET/$(BUILDTARGET)/g' -e 's/KVER/$(KVER)/g' -e 's/MACHINE/$(BUILD_ARCH)/g' -i /install/packages/package/ROOTFILES
241 sed -e 's/xxxKVERxxx/$(KVER)/g' -i /install/packages/package/install.sh
242 chmod 755 /install/packages/package/{{,un}install,update}.sh
243 cd / && tar cfp /install/packages/package/files.tmp --numeric-owner --exclude='#*' --files-from=/install/packages/package/ROOTFILES
244 # Double tar to remove double files
245 tar xfp /install/packages/package/files.tmp --numeric-owner -C /install/packages/package/tmp/
246 rm -f /install/packages/package/files.tmp
247 cd /install/packages/package/tmp/ && tar cf - -p --numeric-owner * | xz $(XZ_OPT) > /install/packages/package/files.tar.xz
248 rm -r /install/packages/package/tmp
249 -cat /install/packages/package/ROOTFILES | grep -v "#" > /install/packages/package/ROOTFILES.tmp
250 mv /install/packages/package/ROOTFILES.tmp /install/packages/package/ROOTFILES
251 cd /install/packages/package && tar cf ../$(PROG)-$(VER)-$(PAK_VER).ipfire --files-from=/usr/src/src/paks/files
252 rm -rf /install/packages/package
253 sed -e s/NAME/$(PROG)/g \
254 -e s/VER/$(VER)/g \
255 -e s/RELEASE/$(PAK_VER)/g \
256 -e s/DEPS/$(DEPS)/g \
257 -e s/SIZE/`ls -l \/install\/packages\/$(PROG)-$(VER)-$(PAK_VER).ipfire | awk '{ print $$5 }'`/g \
258 < /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG)
259 endef
260
261 define INSTALL_INITSCRIPT
262 install -m 754 -v $(DIR_SRC)/src/initscripts/packages/$(1) /etc/rc.d/init.d/$(1)
263 endef
264
265 ifeq "$(BUILD_ARCH)" "aarch64"
266 define UPDATE_AUTOMAKE
267 for i in $$(find $(DIR_APP) -name config.guess -o -name config.sub); do \
268 cp -vf /usr/share/automake*/$$(basename $${i}) $${i}; \
269 done
270 endef
271 endif
272
273 test:
274 $(call INSTALL_INITSCRIPT,hostapd)