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