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