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