]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/Config
63ca2954158ec39eb3882fd45ee8a2c3dba6887a
[ipfire-2.x.git] / lfs / Config
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
34 unexport BUILD_ARCH BUILD_PLATFORM BUILDTARGET CROSSTARGET TOOLCHAIN TOOLS_DIR
35
36 ifeq "$(BUILD_ARCH)" "aarch64"
37 IS_64BIT = 1
38 endif
39
40 ifeq "$(BUILD_ARCH)" "x86_64"
41 IS_64BIT = 1
42 endif
43
44 ifeq "$(TOOLCHAIN)" "1"
45 PREFIX = $(TOOLS_DIR)
46 else
47 PREFIX = /usr
48 endif
49
50 TAR_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 #
55 URL_IPFIRE = https://source.ipfire.org/source-2.x
56 URL_TOOLCHAIN = https://source.ipfire.org/toolchains
57 URL_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 #
61 ROOT =
62
63 # For most packages tarballs are unpacked here and then deleted after
64 # installation.
65 #
66 DIR_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 #
73 DIR_DL = $(LFS_BASEDIR)/cache
74 DIR_CHK = $(LFS_BASEDIR)/cache/check
75 DIR_CONF = $(LFS_BASEDIR)/config
76 DIR_INFO = $(LFS_BASEDIR)/log
77 DIR_TMP = /tmp
78
79 # Add the compiler location and version and specs to the ccache hash
80 CCACHE_COMPILERCHECK += $(shell gcc -dumpspecs 2>/dev/null | md5sum | cut -d ' ' -f1)
81
82 # We support EFI on x86_64 and aarch64
83 ifeq "$(BUILD_ARCH)" "x86_64"
84 EFI = 1
85 EFI_ARCH = x64
86 GRUB_ARCH = $(BUILD_ARCH)
87 endif
88
89 ifeq "$(BUILD_ARCH)" "aarch64"
90 EFI = 1
91 EFI_ARCH = aa64
92 GRUB_ARCH = arm64
93 endif
94
95 # Basic modules
96 GRUB_EFI_MODULES = \
97 configfile \
98 gzio \
99 linux \
100 loadenv \
101 normal \
102 regexp
103
104 # Stuff for accessing file systems
105 GRUB_EFI_MODULES += \
106 ext2 \
107 fat \
108 iso9660 \
109 part_gpt \
110 part_msdos \
111 udf
112
113 # Graphics & IO
114 GRUB_EFI_MODULES += \
115 all_video \
116 bitmap_scale \
117 font \
118 gfxmenu \
119 gfxterm \
120 jpeg \
121 png \
122 tga
123
124 # Commands
125 GRUB_EFI_MODULES += \
126 boot \
127 cat \
128 chain \
129 echo \
130 halt \
131 help \
132 ls \
133 minicmd \
134 probe \
135 reboot \
136 search \
137 search_fs_file \
138 search_fs_uuid \
139 search_label \
140 test \
141 true
142
143 # Platform dependent modules
144 ifeq "$(BUILD_ARCH)" "x86_64"
145 GRUB_EFI_MODULES += \
146 loadbios \
147 ahci \
148 at_keyboard \
149 usb_keyboard
150 endif
151
152 ###############################################################################
153 # Common Macro Definitions
154 ###############################################################################
155
156 # For each package we create a list of files that it installed under
157 # log/<TARGET> name. Modified files are not identified
158 #
159 define FIND_FILES
160 cd $(ROOT)/ && find -mount \
161 \( -path '.$(TOOLS_DIR)' -or -path './tmp' -or -path './usr/src' \
162 -or -path './run' -or -path './dev' -or -path './proc' \
163 -or -path './install' \) -prune -or -print | sort
164 endef
165
166 # This is common starting logic for builds.
167 #
168 ifeq "$(ROOT)" ""
169 define PREBUILD
170 echo "====================================== Installing $(THISAPP) ..."
171 @echo "Install started; saving file list to $(DIR_SRC)/lsalr ..."
172 @if [ ! -f $(DIR_SRC)/lsalr ]; then $(FIND_FILES) > $(DIR_SRC)/lsalr; fi
173 # Fix installation on partial rebuild, so modules install where they should
174 # and not everytime on the last compiled kernel
175 if [ -f $(DIR_SRC)/linux-$(KVER) ]; then \
176 cd $(DIR_SRC)/linux-$(KVER) && \
177 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))-ipfire$(KCFG)+' Makefile; \
178 fi
179 endef
180 else
181 define PREBUILD
182 echo "====================================== Installing $(THISAPP) ..."
183 endef
184 endif
185
186 # Common end-of-installation logic for Stage 2 and beyond.
187 #
188 ifeq "$(ROOT)" ""
189 define POSTBUILD
190 @echo "Updating linker cache..."
191 @type -p ldconfig >/dev/null && ldconfig || :
192 @echo "Install done; saving file list to $(TARGET) ..."
193 @$(FIND_FILES) > $(DIR_SRC)/lsalrnew
194 @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' > $(TARGET)_diff
195 @cp -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr
196 @rm -f $(DIR_SRC)/lsalrnew
197 sed -i -e 's+.\/++' $(TARGET)_diff
198 # compare roofile ( same name as lfs script) with the list of installed files
199 # special cases
200 # - if the corresponding rootfile is not found, touch $(TARGET)_missing_rootfile
201 # - on a partial rebuild without a new file inside TARGET_diff, just touch TARGET
202 # $(TARGET)_diff : result of the diff
203 # ROOTFILE : reference of include/exclude files
204 # $(TARGET)_rootfile : ROOTFILE with KVER replacement
205 # $(TARGET) : log result with {commented|include|added} files
206 if [ -s "$(TARGET)_diff" ]; then \
207 LFS_SCRIPT=$(firstword $(MAKEFILE_LIST))$(KCFG); \
208 echo $(LFS_SCRIPT); \
209 ROOTFILE=$$(find -L $(DIR_SRC)/config/rootfiles/{common,packages}/{$(BUILD_ARCH),} -maxdepth 1 -type f -name $$LFS_SCRIPT 2>/dev/null | head -1); \
210 if [ "$$ROOTFILE" = "" ]; then \
211 touch $(TARGET)_missing_rootfile; \
212 ROOTFILE=$(TARGET)_missing_rootfile ; \
213 echo "error $$LFS_SCRIPT not found in config/rootfiles"; \
214 fi; \
215 sed -e "s/BUILDTARGET/$(BUILDTARGET)/g" -e "s/KVER/$(KVER)/g" -e "s/MACHINE/$(BUILD_ARCH)/g" $$ROOTFILE > $(TARGET)_rootfile; \
216 for line in `cat $(TARGET)_diff`; do \
217 if grep -qG "^#$$line$$" $(TARGET)_rootfile; then echo "#$$line" >> $(TARGET); \
218 elif grep -qG "^$$line$$" $(TARGET)_rootfile ; then echo "$$line" >> $(TARGET); \
219 else echo "+$$line" >> $(TARGET); \
220 fi; \
221 done; \
222 for line in `grep -v "^#" $(TARGET)_rootfile`; do \
223 if ! grep -qG "^$$line$$" $(TARGET)_diff ; then echo "-$$line" >> $(TARGET); \
224 fi; \
225 done; \
226 rm -f $(TARGET)_rootfile; \
227 else \
228 touch $(TARGET); \
229 fi
230 @rm -f $(TARGET)_diff
231 endef
232 else
233 define POSTBUILD
234 @echo "===================================== Install done for $(THISAPP)."
235 touch $(TARGET)
236 endef
237 endif
238
239 define CHECK
240 @echo -e "$(MESSAGE)Check: $($(notdir $@))"
241 wget -T 120 -t 1 --spider -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O /dev/null
242 @touch $(DIR_CHK)/$(notdir $@)
243 endef
244
245 define LOAD
246 @echo -e "$(MESSAGE)Download: $($(notdir $@))"
247 wget -T 60 -t 1 -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@)
248 [ "$($(notdir $@)_MD5)" = `md5sum $(DIR_TMP)/$(notdir $@) | awk '{ print $$1 }'` ] # detect page not found answer
249 mv $(DIR_TMP)/$(notdir $@) $(DIR_DL)
250 endef
251
252 define MD5
253 # error mean file signature don't match the one in lfs script
254 [ "$($@_MD5)" = `md5sum $(DIR_DL)/$@ | awk '{ print $$1 }'` ]
255 echo "$@ checksum OK"
256 endef
257
258 define PAK
259 # Bringing the files to their right place.
260 @rm -rf /install/packages/package
261 @mkdir -p /install/packages/package/tmp
262 if [ -e "/usr/src/src/paks/$(PROG)" ]; then \
263 cp -f /usr/src/src/paks/$(PROG)/{,un}install.sh /usr/src/src/paks/$(PROG)/update.sh \
264 /install/packages/package; \
265 else \
266 cp -f /usr/src/src/paks/default/{,un}install.sh /usr/src/src/paks/default/update.sh \
267 /install/packages/package; \
268 fi
269 for i in $(DIR_SRC)/config/rootfiles/packages/{$(BUILD_ARCH),}/$(PROG); do \
270 if [ -e "$${i}" ]; then \
271 cp -v $${i} /install/packages/package/ROOTFILES; \
272 break; \
273 fi; \
274 done
275 sed -e 's/BUILDTARGET/$(BUILDTARGET)/g' -e 's/KVER/$(KVER)/g' -e 's/MACHINE/$(BUILD_ARCH)/g' -i /install/packages/package/ROOTFILES
276 sed -e 's/xxxKVERxxx/$(KVER)/g' -i /install/packages/package/install.sh
277 chmod 755 /install/packages/package/{{,un}install,update}.sh
278 cd / && tar cfp /install/packages/package/files.tmp --numeric-owner --exclude='#*' --files-from=/install/packages/package/ROOTFILES
279 # Double tar to remove double files
280 tar xfp /install/packages/package/files.tmp --numeric-owner -C /install/packages/package/tmp/
281 rm -f /install/packages/package/files.tmp
282 cd /install/packages/package/tmp/ && tar cf - -p --numeric-owner * | xz $(XZ_OPT) > /install/packages/package/files.tar.xz
283 rm -r /install/packages/package/tmp
284 -cat /install/packages/package/ROOTFILES | grep -v "#" > /install/packages/package/ROOTFILES.tmp
285 mv /install/packages/package/ROOTFILES.tmp /install/packages/package/ROOTFILES
286 cd /install/packages/package && tar cf ../$(PROG)-$(VER)-$(PAK_VER).ipfire --files-from=/usr/src/src/paks/files
287 rm -rf /install/packages/package
288 sed -e s/NAME/$(PROG)/g \
289 -e s/VER/$(VER)/g \
290 -e s/RELEASE/$(PAK_VER)/g \
291 -e s/DEPS/$(DEPS)/g \
292 -e s/SIZE/`ls -l \/install\/packages\/$(PROG)-$(VER)-$(PAK_VER).ipfire | awk '{ print $$5 }'`/g \
293 < /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG)
294 endef
295
296 define INSTALL_INITSCRIPT
297 install -m 754 -v $(DIR_SRC)/src/initscripts/packages/$(1) /etc/rc.d/init.d/$(1)
298 endef
299
300 ifeq "$(BUILD_ARCH)" "aarch64"
301 define UPDATE_AUTOMAKE
302 for i in $$(find $(DIR_APP) -name config.guess -o -name config.sub); do \
303 cp -vf /usr/share/automake*/$$(basename $${i}) $${i}; \
304 done
305 endef
306 endif
307
308 test:
309 $(call INSTALL_INITSCRIPT,hostapd)