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