]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame_incremental - lfs/Config
make.sh: Log into subdirectory for each architecture
[people/pmueller/ipfire-2.x.git] / lfs / Config
... / ...
CommitLineData
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 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
33# Cleanup environment from any variables
34unexport BUILD_ARCH BUILD_PLATFORM BUILDTARGET CROSSTARGET TOOLCHAIN
35unexport TOOLS_DIR LOG_DIR
36
37ifeq "$(BUILD_ARCH)" "aarch64"
38 IS_64BIT = 1
39endif
40
41ifeq "$(BUILD_ARCH)" "armv7hl"
42 IS_32BIT = 1
43endif
44
45ifeq "$(BUILD_ARCH)" "armv5tel"
46 IS_32BIT = 1
47endif
48
49ifeq "$(BUILD_ARCH)" "x86_64"
50 IS_64BIT = 1
51endif
52
53ifeq "$(BUILD_ARCH)" "i586"
54 IS_32BIT = 1
55endif
56
57ifeq "$(TOOLCHAIN)" "1"
58 PREFIX = $(TOOLS_DIR)
59else
60 PREFIX = /usr
61endif
62
63TAR_OPTIONS = --xz
64
65# URLs that are common sources of downloads. If you're having trouble with
66# a site you should change its URL to that of a suitable mirror site.
67#
68URL_IPFIRE = https://source.ipfire.org/source-2.x
69URL_TOOLCHAIN = https://source.ipfire.org/toolchains
70URL_SOURCE = git.ipfire.org:/pub/sources/source-2.x
71
72# Don't change this; it will be overridden by other makefiles where necessary.
73#
74ROOT =
75
76# For most packages tarballs are unpacked here and then deleted after
77# installation.
78#
79DIR_SRC = $(ROOT)/usr/src
80
81# Files are downloaded into DIR_TMP and then moved to DIR_DL, to avoid
82# messes with partially retrieved files. DIR_DL is where we will
83# save all the files that are downloaded. DIR_INFO contains the
84# file lists of installed packages.
85#
86DIR_DL = $(LFS_BASEDIR)/cache
87DIR_CHK = $(LFS_BASEDIR)/cache/check
88DIR_CONF = $(LFS_BASEDIR)/config
89DIR_INFO = $(LFS_BASEDIR)/$(LOG_DIR)
90DIR_TMP = /tmp
91
92# Add the compiler location and version and specs to the ccache hash
93CCACHE_COMPILERCHECK += $(shell gcc -dumpspecs 2>/dev/null | md5sum | cut -d ' ' -f1)
94
95# We support EFI on x86_64 and aarch64
96ifeq "$(BUILD_ARCH)" "x86_64"
97 EFI = 1
98 EFI_ARCH = x64
99 GRUB_ARCH = $(BUILD_ARCH)
100endif
101
102ifeq "$(BUILD_ARCH)" "aarch64"
103 EFI = 1
104 EFI_ARCH = aa64
105 GRUB_ARCH = arm64
106endif
107
108###############################################################################
109# Common Macro Definitions
110###############################################################################
111
112# For each package we create a list of files that it installed under
113# $(LOG_DIR/)<TARGET> name. Modified files are not identified
114#
115define FIND_FILES
116 cd $(ROOT)/ && find -mount \
117 \( -path '.$(TOOLS_DIR)' -or -path './tmp' -or -path './usr/src' \
118 -or -path './run' -or -path './dev' -or -path './proc' \
119 -or -path './install' \) -prune -or -print | sort
120endef
121
122# This is common starting logic for builds.
123#
124ifeq "$(ROOT)" ""
125define PREBUILD
126 echo "====================================== Installing $(THISAPP) ..."
127 @echo "Install started; saving file list to $(DIR_SRC)/lsalr ..."
128 @if [ ! -f $(DIR_SRC)/lsalr ]; then $(FIND_FILES) > $(DIR_SRC)/lsalr; fi
129 # Fix installation on partial rebuild, so modules install where they should
130 # and not everytime on the last compiled kernel
131 if [ -f $(DIR_SRC)/linux-$(KVER) ]; then \
132 cd $(DIR_SRC)/linux-$(KVER) && \
133 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))-ipfire$(KCFG)+' Makefile; \
134 fi
135endef
136else
137define PREBUILD
138 echo "====================================== Installing $(THISAPP) ..."
139endef
140endif
141
142# Common end-of-installation logic for Stage 2 and beyond.
143#
144ifeq "$(ROOT)" ""
145define POSTBUILD
146 @echo "Updating linker cache..."
147 @type -p ldconfig >/dev/null && ldconfig || :
148 @echo "Install done; saving file list to $(TARGET) ..."
149 @$(FIND_FILES) > $(DIR_SRC)/lsalrnew
150 @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' > $(TARGET)_diff
151 @cp -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr
152 @rm -f $(DIR_SRC)/lsalrnew
153 sed -i -e 's+.\/++' $(TARGET)_diff
154 # compare roofile ( same name as lfs script) with the list of installed files
155 # special cases
156 # - if the corresponding rootfile is not found, touch $(TARGET)_missing_rootfile
157 # - on a partial rebuild without a new file inside TARGET_diff, just touch TARGET
158 # $(TARGET)_diff : result of the diff
159 # ROOTFILE : reference of include/exclude files
160 # $(TARGET)_rootfile : ROOTFILE with KVER replacement
161 # $(TARGET) : log result with {commented|include|added} files
162 if [ -s "$(TARGET)_diff" ]; then \
163 LFS_SCRIPT=$(firstword $(MAKEFILE_LIST))$(KCFG); \
164 echo $(LFS_SCRIPT); \
165 ROOTFILE=$$(find -L $(DIR_SRC)/config/rootfiles/{common,packages}/{$(BUILD_ARCH),} -maxdepth 1 -type f -name $$LFS_SCRIPT 2>/dev/null | head -1); \
166 if [ "$$ROOTFILE" = "" ]; then \
167 touch $(TARGET)_missing_rootfile; \
168 ROOTFILE=$(TARGET)_missing_rootfile ; \
169 echo "error $$LFS_SCRIPT not found in config/rootfiles"; \
170 fi; \
171 sed -e "s/BUILDTARGET/$(BUILDTARGET)/g" -e "s/KVER/$(KVER)/g" -e "s/MACHINE/$(BUILD_ARCH)/g" $$ROOTFILE > $(TARGET)_rootfile; \
172 for line in `cat $(TARGET)_diff`; do \
173 if grep -qG "^#$$line$$" $(TARGET)_rootfile; then echo "#$$line" >> $(TARGET); \
174 elif grep -qG "^$$line$$" $(TARGET)_rootfile ; then echo "$$line" >> $(TARGET); \
175 else echo "+$$line" >> $(TARGET); \
176 fi; \
177 done; \
178 for line in `grep -v "^#" $(TARGET)_rootfile`; do \
179 if ! grep -qG "^$$line$$" $(TARGET)_diff ; then echo "-$$line" >> $(TARGET); \
180 fi; \
181 done; \
182 rm -f $(TARGET)_rootfile; \
183 else \
184 touch $(TARGET); \
185 fi
186 @rm -f $(TARGET)_diff
187endef
188else
189define POSTBUILD
190 @echo "===================================== Install done for $(THISAPP)."
191 touch $(TARGET)
192endef
193endif
194
195define CHECK
196 @echo -e "$(MESSAGE)Check: $($(notdir $@))"
197 wget -T 120 -t 1 --spider -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O /dev/null
198 @touch $(DIR_CHK)/$(notdir $@)
199endef
200
201define LOAD
202 @echo -e "$(MESSAGE)Download: $($(notdir $@))"
203 wget -T 60 -t 1 -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@)
204 [ "$($(notdir $@)_MD5)" = `md5sum $(DIR_TMP)/$(notdir $@) | awk '{ print $$1 }'` ] # detect page not found answer
205 mv $(DIR_TMP)/$(notdir $@) $(DIR_DL)
206endef
207
208define MD5
209 # error mean file signature don't match the one in lfs script
210 [ "$($@_MD5)" = `md5sum $(DIR_DL)/$@ | awk '{ print $$1 }'` ]
211 echo "$@ checksum OK"
212endef
213
214define PAK
215 # Bringing the files to their right place.
216 @rm -rf /install/packages/package
217 @mkdir -p /install/packages/package/tmp
218 if [ -e "/usr/src/src/paks/$(PROG)" ]; then \
219 cp -f /usr/src/src/paks/$(PROG)/{,un}install.sh /usr/src/src/paks/$(PROG)/update.sh \
220 /install/packages/package; \
221 else \
222 cp -f /usr/src/src/paks/default/{,un}install.sh /usr/src/src/paks/default/update.sh \
223 /install/packages/package; \
224 fi
225 for i in $(DIR_SRC)/config/rootfiles/packages/{$(BUILD_ARCH),}/$(PROG); do \
226 if [ -e "$${i}" ]; then \
227 cp -v $${i} /install/packages/package/ROOTFILES; \
228 break; \
229 fi; \
230 done
231 sed -e 's/BUILDTARGET/$(BUILDTARGET)/g' -e 's/KVER/$(KVER)/g' -e 's/MACHINE/$(BUILD_ARCH)/g' -i /install/packages/package/ROOTFILES
232 sed -e 's/xxxKVERxxx/$(KVER)/g' -i /install/packages/package/install.sh
233 chmod 755 /install/packages/package/{{,un}install,update}.sh
234 cd / && tar cfp /install/packages/package/files.tmp --numeric-owner --exclude='#*' --files-from=/install/packages/package/ROOTFILES
235 # Double tar to remove double files
236 tar xfp /install/packages/package/files.tmp --numeric-owner -C /install/packages/package/tmp/
237 rm -f /install/packages/package/files.tmp
238 cd /install/packages/package/tmp/ && tar cf - -p --numeric-owner * | xz $(XZ_OPT) > /install/packages/package/files.tar.xz
239 rm -r /install/packages/package/tmp
240 -cat /install/packages/package/ROOTFILES | grep -v "#" > /install/packages/package/ROOTFILES.tmp
241 mv /install/packages/package/ROOTFILES.tmp /install/packages/package/ROOTFILES
242 cd /install/packages/package && tar cf ../$(PROG)-$(VER)-$(PAK_VER).ipfire --files-from=/usr/src/src/paks/files
243 rm -rf /install/packages/package
244 sed -e s/NAME/$(PROG)/g \
245 -e s/VER/$(VER)/g \
246 -e s/RELEASE/$(PAK_VER)/g \
247 -e s/DEPS/$(DEPS)/g \
248 -e s/SIZE/`ls -l \/install\/packages\/$(PROG)-$(VER)-$(PAK_VER).ipfire | awk '{ print $$5 }'`/g \
249 < /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG)
250endef
251
252define INSTALL_INITSCRIPT
253 install -m 754 -v $(DIR_SRC)/src/initscripts/packages/$(1) /etc/rc.d/init.d/$(1)
254endef
255
256ifeq "$(BUILD_ARCH)" "aarch64"
257define UPDATE_AUTOMAKE
258 for i in $$(find $(DIR_APP) -name config.guess -o -name config.sub); do \
259 cp -vf /usr/share/automake*/$$(basename $${i}) $${i}; \
260 done
261endef
262endif
263
264test:
265 $(call INSTALL_INITSCRIPT,hostapd)