]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/Config
8b2e5dabb7494ce6f02bd201b4b57dea8e909f76
[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-2021 IPFire Team <info@ipfire.org> #
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 unexport XZ_OPT
36
37 PARALLELISM = $(shell echo $$( \
38 if [ -n "$(MAX_PARALLELISM)" ] && [ $(MAX_PARALLELISM) -lt 1 ]; then \
39 echo 1 ; \
40 elif [ -n "$(MAX_PARALLELISM)" ] && [ $(MAX_PARALLELISM) -lt $(DEFAULT_PARALLELISM) ]; then \
41 echo $(MAX_PARALLELISM); \
42 else \
43 echo $(DEFAULT_PARALLELISM); \
44 fi) \
45 )
46
47 MAKETUNING = -j$(PARALLELISM)
48
49 ifeq "$(BUILD_ARCH)" "aarch64"
50 IS_64BIT = 1
51 endif
52
53 ifeq "$(BUILD_ARCH)" "armv7hl"
54 IS_32BIT = 1
55 endif
56
57 ifeq "$(BUILD_ARCH)" "armv6l"
58 IS_32BIT = 1
59 endif
60
61 ifeq "$(BUILD_ARCH)" "x86_64"
62 IS_64BIT = 1
63 endif
64
65 ifeq "$(BUILD_ARCH)" "i586"
66 IS_32BIT = 1
67 endif
68
69 ifeq "$(BUILD_ARCH)" "riscv64"
70 IS_64BIT = 1
71 endif
72
73 ifeq "$(TOOLCHAIN)" "1"
74 PREFIX = $(TOOLS_DIR)
75 else
76 PREFIX = /usr
77 endif
78
79 TAR_OPTIONS = \
80 --format=pax \
81 --acls \
82 --xattrs --xattrs-include='*'
83
84 ZSTD_OPTIONS = \
85 -T$(PARALLELISM) \
86 -19 \
87 --long
88
89 # URLs that are common sources of downloads. If you're having trouble with
90 # a site you should change its URL to that of a suitable mirror site.
91 #
92 URL_IPFIRE = https://source.ipfire.org/source-2.x
93 URL_TOOLCHAIN = https://source.ipfire.org/toolchains
94 URL_SOURCE = git.ipfire.org:/pub/sources/source-2.x
95
96 # Don't change this; it will be overridden by other makefiles where necessary.
97 #
98 ROOT =
99
100 # For most packages tarballs are unpacked here and then deleted after
101 # installation.
102 #
103 DIR_SRC = $(ROOT)/usr/src
104
105 # Files are downloaded into DIR_TMP and then moved to DIR_DL, to avoid
106 # messes with partially retrieved files. DIR_DL is where we will
107 # save all the files that are downloaded. DIR_INFO contains the
108 # file lists of installed packages.
109 #
110 DIR_DL = $(LFS_BASEDIR)/cache
111 DIR_CHK = $(LFS_BASEDIR)/cache/check
112 DIR_CONF = $(LFS_BASEDIR)/config
113 DIR_INFO = $(LFS_BASEDIR)/log
114 DIR_TMP = /tmp
115 DIR_TMP_PAK = $(DIR_TMP)/package-$(PROG)
116
117 # Add the compiler location and version and specs to the ccache hash
118 CCACHE_COMPILERCHECK += $(shell gcc -dumpspecs 2>/dev/null | md5sum | cut -d ' ' -f1)
119
120 # We support EFI on x86_64 and aarch64
121 ifeq "$(BUILD_ARCH)" "x86_64"
122 EFI = 1
123 EFI_ARCH = x64
124 GRUB_ARCH = $(BUILD_ARCH)
125 endif
126
127 ifeq "$(BUILD_ARCH)" "aarch64"
128 EFI = 1
129 EFI_ARCH = aa64
130 GRUB_ARCH = arm64
131 endif
132
133 # Go
134 export GOARCH
135 export GOOS = linux
136 export GOPATH = $(HOME)/gopath
137
138 ifeq "$(BUILD_ARCH)" "x86_64"
139 GOARCH = amd64
140 endif
141
142 ifeq "$(BUILD_ARCH)" "aarch64"
143 GOARCH = arm64
144 endif
145
146 # Rust
147 export CARGOPATH = $(HOME)/.cargo
148
149 ###############################################################################
150 # Common Macro Definitions
151 ###############################################################################
152
153 # For each package we create a list of files that it installed under
154 # log/<TARGET> name. Modified files are not identified
155 #
156 define FIND_FILES
157 cd $(ROOT)/ && find -mount \
158 \( -path '.$(TOOLS_DIR)' -or -path './tmp' -or -path './usr/src' \
159 -or -path './run' -or -path './dev' -or -path './proc' \
160 -or -path './install' -or -path '.*/__pycache__' \) -prune -or -print | sort
161 endef
162
163 # This is common starting logic for builds.
164 #
165 ifeq "$(ROOT)" ""
166 define PREBUILD
167 echo "====================================== Installing $(THISAPP) ..."
168 @echo "Install started; saving file list to $(DIR_SRC)/lsalr ..."
169 @if [ ! -f $(DIR_SRC)/lsalr ]; then $(FIND_FILES) > $(DIR_SRC)/lsalr; fi
170 # Fix installation on partial rebuild, so modules install where they should
171 # and not everytime on the last compiled kernel
172 if [ -f $(DIR_SRC)/linux-$(KVER) ]; then \
173 cd $(DIR_SRC)/linux-$(KVER) && \
174 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))-ipfire$(KCFG)+' Makefile; \
175 fi
176 endef
177 else
178 define PREBUILD
179 echo "====================================== Installing $(THISAPP) ..."
180 endef
181 endif
182
183 # Common end-of-installation logic for Stage 2 and beyond.
184 #
185 ifeq "$(ROOT)" ""
186 define POSTBUILD
187 @echo "Updating linker cache..."
188 @type -p ldconfig >/dev/null && ldconfig || :
189 @echo "Install done; saving file list to $(TARGET) ..."
190 @rm -rf $(GOPATH) $(CARGOPATH)
191 @$(FIND_FILES) > $(DIR_SRC)/lsalrnew
192 @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' > $(TARGET)_diff
193 @cp -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr
194 @rm -f $(DIR_SRC)/lsalrnew
195 sed -i -e 's+.\/++' $(TARGET)_diff
196 # compare roofile ( same name as lfs script) with the list of installed files
197 # special cases
198 # - if the corresponding rootfile is not found, touch $(TARGET)_missing_rootfile
199 # - on a partial rebuild without a new file inside TARGET_diff, just touch TARGET
200 # $(TARGET)_diff : result of the diff
201 # ROOTFILE : reference of include/exclude files
202 # $(TARGET)_rootfile : ROOTFILE with KVER replacement
203 # $(TARGET) : log result with {commented|include|added} files
204 if [ -s "$(TARGET)_diff" ]; then \
205 LFS_SCRIPT=$(firstword $(MAKEFILE_LIST))$(KCFG); \
206 echo $(LFS_SCRIPT); \
207 ROOTFILE=$$(find -L $(DIR_SRC)/config/rootfiles/{common,packages}/{$(BUILD_ARCH),} -maxdepth 1 -type f -name $$LFS_SCRIPT 2>/dev/null | head -1); \
208 if [ "$$ROOTFILE" = "" ]; then \
209 touch $(TARGET)_missing_rootfile; \
210 ROOTFILE=$(TARGET)_missing_rootfile ; \
211 echo "error $$LFS_SCRIPT not found in config/rootfiles"; \
212 fi; \
213 sed -e "s/BUILDTARGET/$(BUILDTARGET)/g" -e "s/KVER/$(KVER)/g" -e "s/xxxMACHINExxx/$(BUILD_ARCH)/g" $$ROOTFILE > $(TARGET)_rootfile; \
214 for line in `cat $(TARGET)_diff`; do \
215 if grep -qG "^#$$line$$" $(TARGET)_rootfile; then echo "#$$line" >> $(TARGET); \
216 elif grep -qG "^$$line$$" $(TARGET)_rootfile ; then echo "$$line" >> $(TARGET); \
217 else echo "+$$line" >> $(TARGET); \
218 fi; \
219 done; \
220 for line in `grep -v "^#" $(TARGET)_rootfile`; do \
221 if ! grep -qG "^$$line$$" $(TARGET)_diff ; then echo "-$$line" >> $(TARGET); \
222 fi; \
223 done; \
224 rm -f $(TARGET)_rootfile; \
225 else \
226 touch $(TARGET); \
227 fi
228 @rm -f $(TARGET)_diff
229 endef
230 else
231 define POSTBUILD
232 @echo "===================================== Install done for $(THISAPP)."
233 touch $(TARGET)
234 endef
235 endif
236
237 define CHECK
238 @echo -e "$(MESSAGE)Check: $($(notdir $@))"
239 wget -T 120 -t 1 --spider -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O /dev/null
240 @touch $(DIR_CHK)/$(notdir $@)
241 endef
242
243 define LOAD
244 @echo -e "$(MESSAGE)Download: $($(notdir $@))"
245 wget -T 60 -t 1 -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@)
246 [ "$($(notdir $@)_MD5)" = `md5sum $(DIR_TMP)/$(notdir $@) | awk '{ print $$1 }'` ] # detect page not found answer
247 mv $(DIR_TMP)/$(notdir $@) $(DIR_DL)
248 endef
249
250 define MD5
251 # error mean file signature don't match the one in lfs script
252 [ "$($@_MD5)" = `md5sum $(DIR_DL)/$@ | awk '{ print $$1 }'` ]
253 echo "$@ checksum OK"
254 endef
255
256 define PAK
257 # Bringing the files to their right place.
258 @rm -rf $(DIR_TMP_PAK) && mkdir -p $(DIR_TMP_PAK)
259 if [ -e "/usr/src/src/paks/$(PROG)" ]; then \
260 cp -f /usr/src/src/paks/$(PROG)/{,un}install.sh /usr/src/src/paks/$(PROG)/update.sh \
261 $(DIR_TMP_PAK); \
262 else \
263 cp -f /usr/src/src/paks/default/{,un}install.sh /usr/src/src/paks/default/update.sh \
264 $(DIR_TMP_PAK); \
265 fi
266 for i in $(DIR_SRC)/config/rootfiles/packages/{$(BUILD_ARCH),}/$(PROG); do \
267 if [ -e "$${i}" ]; then \
268 cp -v $${i} $(DIR_TMP_PAK)/ROOTFILES; \
269 break; \
270 fi; \
271 done
272
273 # Replace variables in rootfiles
274 sed -i $(DIR_TMP_PAK)/ROOTFILES \
275 -e 's/BUILDTARGET/$(BUILDTARGET)/g' \
276 -e 's/KVER/$(KVER)/g' \
277 -e 's/xxxMACHINExxx/$(BUILD_ARCH)/g'
278
279 # Replace variables in scripts
280 sed -i $(DIR_TMP_PAK)/install.sh \
281 -e 's/xxxKVERxxx/$(KVER)/g'
282
283 # Make scripts executable
284 chmod 754 $(DIR_TMP_PAK)/{{,un}install,update}.sh
285
286 # Collect all files
287 rm -rf $(DIR_TMP_PAK)/root && mkdir -p $(DIR_TMP_PAK)/root
288 tar -c --exclude='#*' --exclude='proc/*' --exclude='dev/pts/*' --exclude='tmp/*' \
289 --exclude='__pycache__' \
290 -C / --files-from=$(DIR_TMP_PAK)/ROOTFILES | tar -x -C $(DIR_TMP_PAK)/root; \
291 exit $${PIPESTATUS[0]}
292
293 # Compress tarball
294 cd $(DIR_TMP_PAK)/root && tar cf - * | xz $(XZ_OPT) > $(DIR_TMP_PAK)/files.tar.xz
295
296 # Cleanup temporary files
297 rm -rf $(DIR_TMP_PAK)/root
298
299 # Remove any commented lines
300 sed -i $(DIR_TMP_PAK)/ROOTFILES -e "/^#/d"
301
302 # Make package
303 cd $(DIR_TMP_PAK) && tar cf /install/packages/$(PROG)-$(VER)-$(PAK_VER).ipfire *
304
305 # Cleanup
306 rm -rf $(DIR_TMP_PAK)
307
308 # Create meta file
309 sed \
310 -e "s/NAME/$(PROG)/g" \
311 -e "s/VER/$(VER)/g" \
312 -e "s/RELEASE/$(PAK_VER)/g" \
313 -e "s/DEPS/$(DEPS)/g" \
314 -e "s/SIZE/$$(stat --format=%s /install/packages/$(PROG)-$(VER)-$(PAK_VER).ipfire)/g" \
315 < /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG)
316 endef
317
318 define INSTALL_INITSCRIPT
319 install -m 754 -v $(DIR_SRC)/src/initscripts/packages/$(1) /etc/rc.d/init.d/$(1)
320 endef
321
322 ifeq "$(BUILD_ARCH)" "$(filter $(BUILD_ARCH),aarch64 riscv64)"
323 define UPDATE_AUTOMAKE
324 for i in $$(find $(DIR_APP) -name config.guess -o -name config.sub); do \
325 cp -vf /usr/share/automake*/$$(basename $${i}) $${i} || \
326 cp -vf $(TOOLS_DIR)/share/automake*/$$(basename $${i}) $${i}; \
327 done
328 endef
329 endif
330
331 test:
332 $(call INSTALL_INITSCRIPT,hostapd)