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