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