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