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