]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/Config
checkrootfiles: add riscv64 checks
[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 #
9a7e4d85 16# Copyright (C) 2007-2022 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
4f2a9813
MT
37# Basic Variables
38EMPTY :=
39COMMA := ,
40SPACE := $(EMPTY) $(EMPTY)
41define NEWLINE
42
43
44endef
45
46# Basic Functions
47join-with = $(subst $(SPACE),$(1),$(strip $(2)))
48
7691a1bf 49PARALLELISM = $(shell echo $$( \
99d987bd
AF
50 if [ -n "$(MAX_PARALLELISM)" ] && [ $(MAX_PARALLELISM) -lt 1 ]; then \
51 echo 1 ; \
52 elif [ -n "$(MAX_PARALLELISM)" ] && [ $(MAX_PARALLELISM) -lt $(DEFAULT_PARALLELISM) ]; then \
7691a1bf
MT
53 echo $(MAX_PARALLELISM); \
54 else \
55 echo $(DEFAULT_PARALLELISM); \
56 fi) \
57)
58
d53537ce 59MAKETUNING = -j$(PARALLELISM)
77c863a2 60
c0878e43
MT
61ifeq "$(TOOLCHAIN)" "1"
62 PREFIX = $(TOOLS_DIR)
63else
64 PREFIX = /usr
65endif
66
b37678e9
MT
67TAR_OPTIONS = \
68 --format=pax \
69 --acls \
70 --xattrs --xattrs-include='*'
27267889 71
5621b0ef
MT
72ZSTD_OPTIONS = \
73 -T$(PARALLELISM) \
74 -19 \
75 --long
76
cd1a2927
MT
77# URLs that are common sources of downloads. If you're having trouble with
78# a site you should change its URL to that of a suitable mirror site.
79#
c484679b
MT
80URL_IPFIRE = https://source.ipfire.org/source-2.x
81URL_TOOLCHAIN = https://source.ipfire.org/toolchains
8a148bbc 82URL_SOURCE = git.ipfire.org:/pub/sources/source-2.x
cd1a2927 83
cd1a2927
MT
84# Don't change this; it will be overridden by other makefiles where necessary.
85#
86ROOT =
87
88# For most packages tarballs are unpacked here and then deleted after
89# installation.
90#
91DIR_SRC = $(ROOT)/usr/src
92
93# Files are downloaded into DIR_TMP and then moved to DIR_DL, to avoid
94# messes with partially retrieved files. DIR_DL is where we will
95# save all the files that are downloaded. DIR_INFO contains the
96# file lists of installed packages.
97#
98DIR_DL = $(LFS_BASEDIR)/cache
99DIR_CHK = $(LFS_BASEDIR)/cache/check
3796e3d5 100DIR_CONF = $(LFS_BASEDIR)/config
ebaecf2c 101DIR_INFO = $(LFS_BASEDIR)/log
05207d69 102DIR_TMP = /tmp
258bc2e3 103DIR_TMP_PAK = $(DIR_TMP)/package-$(PROG)
cd1a2927 104
1d9be34e
MT
105# Add the compiler location and version and specs to the ccache hash
106CCACHE_COMPILERCHECK += $(shell gcc -dumpspecs 2>/dev/null | md5sum | cut -d ' ' -f1)
107
582aba05 108# We support EFI on x86_64 and aarch64
ba3cbb0c 109ifeq "$(BUILD_ARCH)" "x86_64"
72d40cfd 110 EFI = 1
5f387a1b 111 EFI_ARCH = x64
a1eb7761 112 GRUB_ARCH = $(BUILD_ARCH)
72d40cfd
MT
113endif
114
582aba05
MT
115ifeq "$(BUILD_ARCH)" "aarch64"
116 EFI = 1
117 EFI_ARCH = aa64
a1eb7761 118 GRUB_ARCH = arm64
582aba05
MT
119endif
120
cde41c2e 121# Go
b4863d7d
MT
122export GOARCH
123export GOOS = linux
cde41c2e
MT
124export GOPATH = $(HOME)/gopath
125
b4863d7d
MT
126ifeq "$(BUILD_ARCH)" "x86_64"
127 GOARCH = amd64
128endif
129
130ifeq "$(BUILD_ARCH)" "aarch64"
131 GOARCH = arm64
132endif
133
112441db 134# Rust
5fec1256
MT
135ifeq "$(BUILD_ARCH)" "riscv64"
136 RUST_ARCH = riscv64gc
137else
138 RUST_ARCH = $(BUILD_ARCH)
139endif
f50da967 140
39f94ee8 141RUST_PLATFORM = $(RUST_ARCH)-unknown-linux-gnu
f50da967 142
4f2a9813
MT
143CARGO_PATH = $(DIR_APP)/.cargo
144CARGO_REGISTRY = /usr/share/cargo/registry
145
146CRATE_NAME = $(patsubst rust-%,%,$(firstword $(MAKEFILE_LIST)))
147CRATE_VER = $(VER)
148CRATE_PATH = $(CARGO_REGISTRY)/$(CRATE_NAME)-$(CRATE_VER)
149
150define CARGO_CONFIG
151[build]
152rustflags = [$(call join-with,$(COMMA)$(SPACE),$(foreach flag,$(RUSTFLAGS),"$(flag)"))]
153
154[env]
155CFLAGS = "$(CFLAGS)"
156CXXFLAGS = "$(CXXFLAGS)"
157LDFLAGS = "$(LDFLAGS)"
158
159[term]
160verbose = true
161
162[source]
163
164[source.local-registry]
165directory = "$(CARGO_REGISTRY)"
166
167[source.crates-io]
168registry = "https://crates.io"
169replace-with = "local-registry"
170endef
171export CARGO_CONFIG
172
c16dd3aa
MT
173# Set to false if you want to skip the binary install step
174CARGO_HAS_BIN = true
175
4f2a9813
MT
176CARGO = \
177 CARGOPATH=$(CARGO_PATH) \
1aab9dfb
MT
178 RUSTC_BOOTSTRAP=1 \
179 cargo \
180 --offline
181
182CARGO_OPTIONS = \
1aab9dfb 183 -Z avoid-dev-deps
4f2a9813 184
9b1f666e
MT
185# Cargo dealocks on riscv64 when building on multiple cores at the same time
186ifeq "$(BUILD_ARCH)" "riscv64"
187 CARGO_OPTIONS += -j1
188else
189 CARGO_OPTIONS += $(MAKETUNING)
190endif
191
4f2a9813
MT
192define CARGO_PREPARE
193 mkdir -p $(CARGO_PATH) && \
194 echo "$${CARGO_CONFIG}" > $(CARGO_PATH)/config && \
195 rm -f Cargo.lock
196endef
197
198CARGO_BUILD = \
199 $(CARGO) \
200 build \
1aab9dfb
MT
201 --release \
202 $(CARGO_OPTIONS)
4f2a9813
MT
203
204# Checks whether this crate has a right taregt
1aab9dfb 205CARGO_TARGET_CHECK = $(CARGO) metadata --format-version 1 --no-deps | \
4f2a9813
MT
206 jq -e ".packages[].targets[].kind | any(. == \"$(1)\")" | grep -q "true"
207
208define CARGO_INSTALL
209 mkdir -pv "$(CRATE_PATH)" && \
4f6d6c41 210 if $(call CARGO_TARGET_CHECK,lib) || $(call CARGO_TARGET_CHECK,rlib) || $(call CARGO_TARGET_CHECK,proc-macro); then \
4f2a9813
MT
211 awk \
212 '/^\\\[((.+\\\.)?((dev|build)-)?dependencies|features)/{f=1;next} /^\\\[/{f=0}; !f' \
213 < Cargo.toml > Cargo.toml.deps && \
214 $(CARGO) package -l | grep -wEv "Cargo.(lock|toml.orig)" \
942b7d0d 215 | xargs -d "\n" cp -v --parents -a -t $(CRATE_PATH) && \
4f2a9813
MT
216 install -v -m 644 Cargo.toml.deps $(CRATE_PATH)/Cargo.toml && \
217 echo "{\"files\":{},\"package\":\"\"}" > $(CRATE_PATH)/.cargo-checksum.json; \
218 fi && \
c16dd3aa 219 if $(CARGO_HAS_BIN) && $(call CARGO_TARGET_CHECK,bin); then \
1aab9dfb 220 $(CARGO) install $(CARGO_OPTIONS) --no-track --path .; \
4f2a9813
MT
221 fi
222endef
112441db 223
cd1a2927
MT
224###############################################################################
225# Common Macro Definitions
226###############################################################################
227
66c36198 228# For each package we create a list of files that it installed under
ebaecf2c 229# log/<TARGET> name. Modified files are not identified
cd1a2927
MT
230#
231define FIND_FILES
232 cd $(ROOT)/ && find -mount \
6c4cc7ea 233 \( -path '.$(TOOLS_DIR)' -or -path './tmp' -or -path './usr/src' \
1b169a72 234 -or -path './run' -or -path './dev' -or -path './proc' \
6ede1975 235 -or -path './install' -or -path '.*/__pycache__' \) -prune -or -print | sort
cd1a2927
MT
236endef
237
238# This is common starting logic for builds.
239#
240ifeq "$(ROOT)" ""
241define PREBUILD
242 echo "====================================== Installing $(THISAPP) ..."
243 @echo "Install started; saving file list to $(DIR_SRC)/lsalr ..."
244 @if [ ! -f $(DIR_SRC)/lsalr ]; then $(FIND_FILES) > $(DIR_SRC)/lsalr; fi
03ad5f93
MT
245 # Fix installation on partial rebuild, so modules install where they should
246 # and not everytime on the last compiled kernel
247 if [ -f $(DIR_SRC)/linux-$(KVER) ]; then \
fdf0c7c1
AF
248 cd $(DIR_SRC)/linux-$(KVER) && \
249 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))-ipfire$(KCFG)+' Makefile; \
03ad5f93 250 fi
cd1a2927
MT
251endef
252else
253define PREBUILD
254 echo "====================================== Installing $(THISAPP) ..."
255endef
256endif
257
258# Common end-of-installation logic for Stage 2 and beyond.
259#
260ifeq "$(ROOT)" ""
261define POSTBUILD
f5ad8f59
MT
262 @echo "Updating linker cache..."
263 @type -p ldconfig >/dev/null && ldconfig || :
03ad5f93 264 @echo "Install done; saving file list to $(TARGET) ..."
06fd5cdd 265 @rm -rf $(GOPATH) /root/.cargo
cd1a2927 266 @$(FIND_FILES) > $(DIR_SRC)/lsalrnew
e21bd39e 267 @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' > $(TARGET)_diff
761d0366
MT
268 @mv -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr
269 @sed -i -e 's+.\/++' $(TARGET)_diff
cd1a2927
MT
270 # compare roofile ( same name as lfs script) with the list of installed files
271 # special cases
03ad5f93 272 # - if the corresponding rootfile is not found, touch $(TARGET)_missing_rootfile
0145f271 273 # - on a partial rebuild without a new file inside TARGET_diff, just touch TARGET
03ad5f93
MT
274 # $(TARGET)_diff : result of the diff
275 # ROOTFILE : reference of include/exclude files
276 # $(TARGET)_rootfile : ROOTFILE with KVER replacement
277 # $(TARGET) : log result with {commented|include|added} files
761d0366 278 @if [ -s "$(TARGET)_diff" ]; then \
fdf0c7c1 279 LFS_SCRIPT=$(firstword $(MAKEFILE_LIST))$(KCFG); \
03ad5f93 280 echo $(LFS_SCRIPT); \
a4923c7f 281 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
282 if [ "$$ROOTFILE" = "" ]; then \
283 touch $(TARGET)_missing_rootfile; \
284 ROOTFILE=$(TARGET)_missing_rootfile ; \
285 echo "error $$LFS_SCRIPT not found in config/rootfiles"; \
286 fi; \
289a86a3 287 sed -e "s/BUILDTARGET/$(BUILDTARGET)/g" -e "s/KVER/$(KVER)/g" -e "s/xxxMACHINExxx/$(BUILD_ARCH)/g" $$ROOTFILE > $(TARGET)_rootfile; \
761d0366 288 while read -r line; do \
c9444dcf
AF
289 if grep -qG "^#$$line$$" $(TARGET)_rootfile; then echo "#$$line" >> $(TARGET); \
290 elif grep -qG "^$$line$$" $(TARGET)_rootfile ; then echo "$$line" >> $(TARGET); \
cd1a2927
MT
291 else echo "+$$line" >> $(TARGET); \
292 fi; \
761d0366
MT
293 done < $(TARGET)_diff; \
294 grep -v "^#" $(TARGET)_rootfile | while read -r line; do \
0f3c1311
AF
295 if ! grep -qG "^$$line$$" $(TARGET)_diff ; then echo "-$$line" >> $(TARGET); \
296 fi; \
297 done; \
0145f271 298 rm -f $(TARGET)_rootfile; \
cd1a2927
MT
299 else \
300 touch $(TARGET); \
301 fi
0145f271 302 @rm -f $(TARGET)_diff
cd1a2927
MT
303endef
304else
305define POSTBUILD
306 @echo "===================================== Install done for $(THISAPP)."
307 touch $(TARGET)
308endef
309endif
310
311define CHECK
312 @echo -e "$(MESSAGE)Check: $($(notdir $@))"
319d3289 313 wget -T 120 -t 1 --spider -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O /dev/null
cd1a2927
MT
314 @touch $(DIR_CHK)/$(notdir $@)
315endef
316
317define LOAD
318 @echo -e "$(MESSAGE)Download: $($(notdir $@))"
e99d32db 319 wget -T 60 -t 1 -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@)
62d9b7bd 320 [ "$($(notdir $@)_BLAKE2)" = "$$(b2sum $(DIR_TMP)/$(notdir $@) | awk '{ print $$1 }')" ] # detect page not found answer
cd1a2927
MT
321 mv $(DIR_TMP)/$(notdir $@) $(DIR_DL)
322endef
323
9a7e4d85 324define B2SUM
cd1a2927 325 # error mean file signature don't match the one in lfs script
62d9b7bd 326 [ "$($@_BLAKE2)" = "$$(b2sum $(DIR_DL)/$@ | awk '{ print $$1 }')" ] && echo "$@ checksum OK"
cd1a2927 327endef
a8b159e7
MT
328
329define PAK
5c8cfc99 330 # Bringing the files to their right place.
258bc2e3 331 @rm -rf $(DIR_TMP_PAK) && mkdir -p $(DIR_TMP_PAK)
4c7fa778 332 if [ -e "/usr/src/src/paks/$(PROG)" ]; then \
3489ebac 333 cp -f /usr/src/src/paks/$(PROG)/{,un}install.sh /usr/src/src/paks/$(PROG)/update.sh \
258bc2e3 334 $(DIR_TMP_PAK); \
3489ebac
MT
335 else \
336 cp -f /usr/src/src/paks/default/{,un}install.sh /usr/src/src/paks/default/update.sh \
258bc2e3 337 $(DIR_TMP_PAK); \
3489ebac 338 fi
dc7d6b20 339 for i in $(DIR_SRC)/config/rootfiles/packages/{$(BUILD_ARCH),}/$(PROG); do \
5596077b 340 if [ -e "$${i}" ]; then \
258bc2e3 341 cp -v $${i} $(DIR_TMP_PAK)/ROOTFILES; \
5596077b
MT
342 break; \
343 fi; \
344 done
258bc2e3
MT
345
346 # Replace variables in rootfiles
347 sed -i $(DIR_TMP_PAK)/ROOTFILES \
348 -e 's/BUILDTARGET/$(BUILDTARGET)/g' \
349 -e 's/KVER/$(KVER)/g' \
289a86a3 350 -e 's/xxxMACHINExxx/$(BUILD_ARCH)/g'
258bc2e3
MT
351
352 # Replace variables in scripts
353 sed -i $(DIR_TMP_PAK)/install.sh \
354 -e 's/xxxKVERxxx/$(KVER)/g'
355
356 # Make scripts executable
357 chmod 754 $(DIR_TMP_PAK)/{{,un}install,update}.sh
358
359 # Collect all files
360 rm -rf $(DIR_TMP_PAK)/root && mkdir -p $(DIR_TMP_PAK)/root
361 tar -c --exclude='#*' --exclude='proc/*' --exclude='dev/pts/*' --exclude='tmp/*' \
362 --exclude='__pycache__' \
6a8be3e1
MT
363 -C / --files-from=$(DIR_TMP_PAK)/ROOTFILES | tar -x -C $(DIR_TMP_PAK)/root; \
364 exit $${PIPESTATUS[0]}
258bc2e3
MT
365
366 # Compress tarball
367 cd $(DIR_TMP_PAK)/root && tar cf - * | xz $(XZ_OPT) > $(DIR_TMP_PAK)/files.tar.xz
368
369 # Cleanup temporary files
370 rm -rf $(DIR_TMP_PAK)/root
371
372 # Remove any commented lines
373 sed -i $(DIR_TMP_PAK)/ROOTFILES -e "/^#/d"
374
375 # Make package
376 cd $(DIR_TMP_PAK) && tar cf /install/packages/$(PROG)-$(VER)-$(PAK_VER).ipfire *
377
378 # Cleanup
379 rm -rf $(DIR_TMP_PAK)
380
a9d98b34
RR
381 # Escape SUMMARY variable and create meta file
382 summaryEscaped=$$(sed 's/[&/\]/\\&/g' <<< "$(SUMMARY)"); \
258bc2e3
MT
383 sed \
384 -e "s/NAME/$(PROG)/g" \
a9d98b34 385 -e "s/SUMMARY/$$summaryEscaped/g" \
258bc2e3
MT
386 -e "s/VER/$(VER)/g" \
387 -e "s/RELEASE/$(PAK_VER)/g" \
388 -e "s/DEPS/$(DEPS)/g" \
702b59cd 389 -e "s/SIZE/$$(stat --format=%s /install/packages/$(PROG)-$(VER)-$(PAK_VER).ipfire)/g" \
a9d98b34 390 -e "s/SERVICES/$(SERVICES)/g" \
5c8cfc99 391 < /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG)
a8b159e7 392endef
38888b3d
JS
393
394define INSTALL_INITSCRIPT
395 install -m 754 -v $(DIR_SRC)/src/initscripts/packages/$(1) /etc/rc.d/init.d/$(1)
396endef
397
a9d98b34
RR
398define INSTALL_INITSCRIPTS
399 for initscript in $(1); do \
400 $(call INSTALL_INITSCRIPT,$$initscript) || exit 1; \
401 done
402endef
403
1ebdfb0e 404ifeq "$(BUILD_ARCH)" "$(filter $(BUILD_ARCH),aarch64 riscv64)"
0d1df90f
MT
405define UPDATE_AUTOMAKE
406 for i in $$(find $(DIR_APP) -name config.guess -o -name config.sub); do \
5c36c8dd
MT
407 cp -vf /usr/share/automake*/$$(basename $${i}) $${i} || \
408 cp -vf $(TOOLS_DIR)/share/automake*/$$(basename $${i}) $${i}; \
0d1df90f
MT
409 done
410endef
411endif
412
38888b3d
JS
413test:
414 $(call INSTALL_INITSCRIPT,hostapd)