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