]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/Config
Update translations
[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
cd1a2927 101
1d9be34e
MT
102# Add the compiler location and version and specs to the ccache hash
103CCACHE_COMPILERCHECK += $(shell gcc -dumpspecs 2>/dev/null | md5sum | cut -d ' ' -f1)
104
582aba05 105# We support EFI on x86_64 and aarch64
ba3cbb0c 106ifeq "$(BUILD_ARCH)" "x86_64"
72d40cfd 107 EFI = 1
5f387a1b 108 EFI_ARCH = x64
a1eb7761 109 GRUB_ARCH = $(BUILD_ARCH)
72d40cfd
MT
110endif
111
582aba05
MT
112ifeq "$(BUILD_ARCH)" "aarch64"
113 EFI = 1
114 EFI_ARCH = aa64
a1eb7761 115 GRUB_ARCH = arm64
582aba05
MT
116endif
117
cd1a2927
MT
118###############################################################################
119# Common Macro Definitions
120###############################################################################
121
122# For each package we create a list of files that it installed under
ebaecf2c 123# log/<TARGET> name. Modified files are not identified
cd1a2927
MT
124#
125define FIND_FILES
126 cd $(ROOT)/ && find -mount \
6c4cc7ea 127 \( -path '.$(TOOLS_DIR)' -or -path './tmp' -or -path './usr/src' \
1b169a72
MT
128 -or -path './run' -or -path './dev' -or -path './proc' \
129 -or -path './install' \) -prune -or -print | sort
cd1a2927
MT
130endef
131
132# This is common starting logic for builds.
133#
134ifeq "$(ROOT)" ""
135define PREBUILD
136 echo "====================================== Installing $(THISAPP) ..."
137 @echo "Install started; saving file list to $(DIR_SRC)/lsalr ..."
138 @if [ ! -f $(DIR_SRC)/lsalr ]; then $(FIND_FILES) > $(DIR_SRC)/lsalr; fi
03ad5f93
MT
139 # Fix installation on partial rebuild, so modules install where they should
140 # and not everytime on the last compiled kernel
141 if [ -f $(DIR_SRC)/linux-$(KVER) ]; then \
fdf0c7c1
AF
142 cd $(DIR_SRC)/linux-$(KVER) && \
143 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))-ipfire$(KCFG)+' Makefile; \
03ad5f93 144 fi
cd1a2927
MT
145endef
146else
147define PREBUILD
148 echo "====================================== Installing $(THISAPP) ..."
149endef
150endif
151
152# Common end-of-installation logic for Stage 2 and beyond.
153#
154ifeq "$(ROOT)" ""
155define POSTBUILD
f5ad8f59
MT
156 @echo "Updating linker cache..."
157 @type -p ldconfig >/dev/null && ldconfig || :
03ad5f93 158 @echo "Install done; saving file list to $(TARGET) ..."
cd1a2927 159 @$(FIND_FILES) > $(DIR_SRC)/lsalrnew
e21bd39e 160 @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' > $(TARGET)_diff
cd1a2927
MT
161 @cp -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr
162 @rm -f $(DIR_SRC)/lsalrnew
0145f271 163 sed -i -e 's+.\/++' $(TARGET)_diff
cd1a2927
MT
164 # compare roofile ( same name as lfs script) with the list of installed files
165 # special cases
03ad5f93 166 # - if the corresponding rootfile is not found, touch $(TARGET)_missing_rootfile
0145f271 167 # - on a partial rebuild without a new file inside TARGET_diff, just touch TARGET
03ad5f93
MT
168 # $(TARGET)_diff : result of the diff
169 # ROOTFILE : reference of include/exclude files
170 # $(TARGET)_rootfile : ROOTFILE with KVER replacement
171 # $(TARGET) : log result with {commented|include|added} files
0145f271 172 if [ -s "$(TARGET)_diff" ]; then \
fdf0c7c1 173 LFS_SCRIPT=$(firstword $(MAKEFILE_LIST))$(KCFG); \
03ad5f93 174 echo $(LFS_SCRIPT); \
a4923c7f 175 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
176 if [ "$$ROOTFILE" = "" ]; then \
177 touch $(TARGET)_missing_rootfile; \
178 ROOTFILE=$(TARGET)_missing_rootfile ; \
179 echo "error $$LFS_SCRIPT not found in config/rootfiles"; \
180 fi; \
dc7d6b20 181 sed -e "s/BUILDTARGET/$(BUILDTARGET)/g" -e "s/KVER/$(KVER)/g" -e "s/MACHINE/$(BUILD_ARCH)/g" $$ROOTFILE > $(TARGET)_rootfile; \
0145f271 182 for line in `cat $(TARGET)_diff`; do \
c9444dcf
AF
183 if grep -qG "^#$$line$$" $(TARGET)_rootfile; then echo "#$$line" >> $(TARGET); \
184 elif grep -qG "^$$line$$" $(TARGET)_rootfile ; then echo "$$line" >> $(TARGET); \
cd1a2927
MT
185 else echo "+$$line" >> $(TARGET); \
186 fi; \
187 done; \
0f3c1311
AF
188 for line in `grep -v "^#" $(TARGET)_rootfile`; do \
189 if ! grep -qG "^$$line$$" $(TARGET)_diff ; then echo "-$$line" >> $(TARGET); \
190 fi; \
191 done; \
0145f271 192 rm -f $(TARGET)_rootfile; \
cd1a2927
MT
193 else \
194 touch $(TARGET); \
195 fi
0145f271 196 @rm -f $(TARGET)_diff
cd1a2927
MT
197endef
198else
199define POSTBUILD
200 @echo "===================================== Install done for $(THISAPP)."
201 touch $(TARGET)
202endef
203endif
204
205define CHECK
206 @echo -e "$(MESSAGE)Check: $($(notdir $@))"
319d3289 207 wget -T 120 -t 1 --spider -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O /dev/null
cd1a2927
MT
208 @touch $(DIR_CHK)/$(notdir $@)
209endef
210
211define LOAD
212 @echo -e "$(MESSAGE)Download: $($(notdir $@))"
e99d32db 213 wget -T 60 -t 1 -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@)
cd1a2927
MT
214 [ "$($(notdir $@)_MD5)" = `md5sum $(DIR_TMP)/$(notdir $@) | awk '{ print $$1 }'` ] # detect page not found answer
215 mv $(DIR_TMP)/$(notdir $@) $(DIR_DL)
216endef
217
218define MD5
219 # error mean file signature don't match the one in lfs script
220 [ "$($@_MD5)" = `md5sum $(DIR_DL)/$@ | awk '{ print $$1 }'` ]
221 echo "$@ checksum OK"
222endef
a8b159e7
MT
223
224define PAK
5c8cfc99 225 # Bringing the files to their right place.
5b2a12ff 226 @rm -rf /install/packages/package
d12153b0 227 @mkdir -p /install/packages/package/tmp
4c7fa778 228 if [ -e "/usr/src/src/paks/$(PROG)" ]; then \
3489ebac
MT
229 cp -f /usr/src/src/paks/$(PROG)/{,un}install.sh /usr/src/src/paks/$(PROG)/update.sh \
230 /install/packages/package; \
231 else \
232 cp -f /usr/src/src/paks/default/{,un}install.sh /usr/src/src/paks/default/update.sh \
233 /install/packages/package; \
234 fi
dc7d6b20 235 for i in $(DIR_SRC)/config/rootfiles/packages/{$(BUILD_ARCH),}/$(PROG); do \
5596077b
MT
236 if [ -e "$${i}" ]; then \
237 cp -v $${i} /install/packages/package/ROOTFILES; \
238 break; \
239 fi; \
240 done
dc7d6b20 241 sed -e 's/BUILDTARGET/$(BUILDTARGET)/g' -e 's/KVER/$(KVER)/g' -e 's/MACHINE/$(BUILD_ARCH)/g' -i /install/packages/package/ROOTFILES
45e5371d 242 sed -e 's/xxxKVERxxx/$(KVER)/g' -i /install/packages/package/install.sh
99e6df8e 243 chmod 755 /install/packages/package/{{,un}install,update}.sh
c2297690 244 cd / && tar cfp /install/packages/package/files.tmp --numeric-owner --exclude='#*' --files-from=/install/packages/package/ROOTFILES
d12153b0 245 # Double tar to remove double files
c2297690 246 tar xfp /install/packages/package/files.tmp --numeric-owner -C /install/packages/package/tmp/
d12153b0 247 rm -f /install/packages/package/files.tmp
65a73698 248 cd /install/packages/package/tmp/ && tar cf - -p --numeric-owner * | xz $(XZ_OPT) > /install/packages/package/files.tar.xz
d12153b0 249 rm -r /install/packages/package/tmp
08fc1a19
AF
250 -cat /install/packages/package/ROOTFILES | grep -v "#" > /install/packages/package/ROOTFILES.tmp
251 mv /install/packages/package/ROOTFILES.tmp /install/packages/package/ROOTFILES
65a73698 252 cd /install/packages/package && tar cf ../$(PROG)-$(VER)-$(PAK_VER).ipfire --files-from=/usr/src/src/paks/files
cab737ed 253 rm -rf /install/packages/package
5c8cfc99
MT
254 sed -e s/NAME/$(PROG)/g \
255 -e s/VER/$(VER)/g \
256 -e s/RELEASE/$(PAK_VER)/g \
257 -e s/DEPS/$(DEPS)/g \
38965639 258 -e s/SIZE/`ls -l \/install\/packages\/$(PROG)-$(VER)-$(PAK_VER).ipfire | awk '{ print $$5 }'`/g \
5c8cfc99 259 < /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG)
a8b159e7 260endef
38888b3d
JS
261
262define INSTALL_INITSCRIPT
263 install -m 754 -v $(DIR_SRC)/src/initscripts/packages/$(1) /etc/rc.d/init.d/$(1)
264endef
265
0d1df90f
MT
266ifeq "$(BUILD_ARCH)" "aarch64"
267define UPDATE_AUTOMAKE
268 for i in $$(find $(DIR_APP) -name config.guess -o -name config.sub); do \
269 cp -vf /usr/share/automake*/$$(basename $${i}) $${i}; \
270 done
271endef
272endif
273
38888b3d
JS
274test:
275 $(call INSTALL_INITSCRIPT,hostapd)