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