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