]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - make.sh
fuse: Update to 2.9.7
[people/pmueller/ipfire-2.x.git] / make.sh
CommitLineData
df5e82b3 1#!/bin/bash
df5e82b3
MT
2############################################################################
3# #
f8e5510c 4# This file is part of the IPFire Firewall. #
df5e82b3 5# #
f8e5510c 6# IPFire is free software; you can redistribute it and/or modify #
df5e82b3
MT
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation; either version 2 of the License, or #
9# (at your option) any later version. #
10# #
f8e5510c 11# IPFire is distributed in the hope that it will be useful, #
df5e82b3
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
f8e5510c 17# along with IPFire; if not, write to the Free Software #
df5e82b3
MT
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19# #
f7a48dd3 20# Copyright (C) 2007-2017 IPFire Team <info@ipfire.org>. #
df5e82b3
MT
21# #
22############################################################################
df5e82b3
MT
23#
24
e8ee3199
AF
25NAME="IPFire" # Software name
26SNAME="ipfire" # Short name
33513817 27VERSION="2.19" # Version number
63de1e48 28CORE="110" # Core Level (Filename)
7ea716b4 29PAKFIRE_CORE="110" # Core Level (PAKFIRE)
595e89a8 30GIT_BRANCH=`git rev-parse --abbrev-ref HEAD` # Git Branch
e8ee3199
AF
31SLOGAN="www.ipfire.org" # Software slogan
32CONFIG_ROOT=/var/ipfire # Configuration rootdir
33NICE=10 # Nice level
34MAX_RETRIES=1 # prefetch/check loop
305a7b38 35BUILD_IMAGES=1 # Flash and Xen Downloader
15679d9f 36KVER=`grep --max-count=1 VER lfs/linux | awk '{ print $3 }'`
e8ee3199
AF
37GIT_TAG=$(git tag | tail -1) # Git Tag
38GIT_LASTCOMMIT=$(git log | head -n1 | cut -d" " -f2 |head -c8) # Last commit
363e358f 39TOOLCHAINVER=12
03ad5f93 40
bcb9dc13 41# New architecture variables
dc7d6b20 42HOST_ARCH="$(uname -m)"
94571564 43
15679d9f
MT
44# Debian specific settings
45if [ ! -e /etc/debian_version ]; then
df5e82b3 46 FULLPATH=`which $0`
15679d9f 47else
df5e82b3
MT
48 if [ -x /usr/bin/realpath ]; then
49 FULLPATH=`/usr/bin/realpath $0`
50 else
51 echo "ERROR: Need to do apt-get install realpath"
52 exit 1
53 fi
15679d9f 54fi
df5e82b3 55
15679d9f
MT
56PWD=`pwd`
57BASENAME=`basename $0`
58BASEDIR=`echo $FULLPATH | sed "s/\/$BASENAME//g"`
59LOGFILE=$BASEDIR/log/_build.preparation.log
60export BASEDIR LOGFILE
61DIR_CHK=$BASEDIR/cache/check
62mkdir $BASEDIR/log/ 2>/dev/null
df5e82b3 63
15679d9f
MT
64# Include funtions
65. tools/make-functions
df5e82b3 66
15679d9f
MT
67if [ -f .config ]; then
68 . .config
15679d9f 69fi
df5e82b3 70
dc7d6b20
MT
71if [ -n "${BUILD_ARCH}" ]; then
72 configure_build "${BUILD_ARCH}"
73elif [ -n "${TARGET_ARCH}" ]; then
74 configure_build "${TARGET_ARCH}"
75 unset TARGET_ARCH
949544f5 76else
dc7d6b20 77 configure_build "default"
949544f5
MT
78fi
79
483b7768
MT
80if [ -z $EDITOR ]; then
81 for i in nano emacs vi; do
82 EDITOR=$(which $i 2>/dev/null)
83 if ! [ -z $EDITOR ]; then
84 export EDITOR=$EDITOR
85 break
86 fi
87 done
88 [ -z $EDITOR ] && exiterror "You should have installed an editor."
89fi
90
d02853e7 91
df5e82b3
MT
92prepareenv() {
93 ############################################################################
94 # #
95 # Are we running the right shell? #
96 # #
97 ############################################################################
98 if [ ! "$BASH" ]; then
1b273e8f 99 exiterror "BASH environment variable is not set. You're probably running the wrong shell."
df5e82b3
MT
100 fi
101
102 if [ -z "${BASH_VERSION}" ]; then
1b273e8f 103 exiterror "Not running BASH shell."
df5e82b3
MT
104 fi
105
106
107 ############################################################################
108 # #
109 # Trap on emergency exit #
110 # #
111 ############################################################################
112 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP SIGQUIT
113
114
115 ############################################################################
116 # #
117 # Resetting our nice level #
118 # #
119 ############################################################################
9b0ff0a0 120 echo -ne "Resetting our nice level to $NICE" | tee -a $LOGFILE
df5e82b3
MT
121 renice $NICE $$ > /dev/null
122 if [ `nice` != "$NICE" ]; then
1b273e8f
MT
123 beautify message FAIL
124 exiterror "Failed to set correct nice level"
15679d9f 125 else
1b273e8f 126 beautify message DONE
df5e82b3
MT
127 fi
128
15679d9f 129
df5e82b3
MT
130 ############################################################################
131 # #
132 # Checking if running as root user #
133 # #
134 ############################################################################
9b0ff0a0 135 echo -ne "Checking if we're running as root user" | tee -a $LOGFILE
df5e82b3 136 if [ `id -u` != 0 ]; then
1b273e8f
MT
137 beautify message FAIL
138 exiterror "Not building as root"
15679d9f 139 else
1b273e8f 140 beautify message DONE
df5e82b3
MT
141 fi
142
143
144 ############################################################################
145 # #
146 # Checking for necessary temporary space #
147 # #
148 ############################################################################
9b0ff0a0 149 echo -ne "Checking for necessary space on disk $BASE_DEV" | tee -a $LOGFILE
df5e82b3
MT
150 BASE_DEV=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
151 BASE_ASPACE=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
41921bd9 152 if (( 2048000 > $BASE_ASPACE )); then
1b273e8f
MT
153 BASE_USPACE=`du -skx $BASEDIR | awk '{print $1}'`
154 if (( 2048000 - $BASE_USPACE > $BASE_ASPACE )); then
155 beautify message FAIL
156 exiterror "Not enough temporary space available, need at least 2GB on $BASE_DEV"
157 fi
15679d9f 158 else
1b273e8f 159 beautify message DONE
df5e82b3
MT
160 fi
161
162 ############################################################################
163 # #
164 # Building Linux From Scratch system #
165 # #
166 ############################################################################
df5e82b3
MT
167 # Set umask
168 umask 022
169
170 # Set LFS Directory
171 LFS=$BASEDIR/build
172
173 # Check /tools symlink
174 if [ -h /tools ]; then
175 rm -f /tools
176 fi
177 if [ ! -a /tools ]; then
1b273e8f 178 ln -s $BASEDIR/build/tools /
df5e82b3
MT
179 fi
180 if [ ! -h /tools ]; then
1b273e8f 181 exiterror "Could not create /tools symbolic link."
df5e82b3
MT
182 fi
183
184 # Setup environment
185 set +h
186 LC_ALL=POSIX
e4e74858 187 if [ -z $MAKETUNING ]; then
26b34186
MT
188 CPU_COUNT="$(getconf _NPROCESSORS_ONLN 2>/dev/null)"
189 if [ -z "${CPU_COUNT}" ]; then
190 CPU_COUNT=1
191 fi
192
193 MAKETUNING="-j$(( ${CPU_COUNT} * 2 + 1 ))"
e4e74858 194 fi
dd714b8a 195 export LFS LC_ALL CFLAGS CXXFLAGS MAKETUNING
df5e82b3
MT
196 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
197
198 # Make some extra directories
199 mkdir -p $BASEDIR/build/{tools,etc,usr/src} 2>/dev/null
90d372c4 200 mkdir -p $BASEDIR/build/{dev/{shm,pts},proc,sys}
df5e82b3 201 mkdir -p $BASEDIR/{cache,ccache} 2>/dev/null
90d372c4
MT
202 mkdir -p $BASEDIR/build/usr/src/{cache,config,doc,html,langs,lfs,log,src,ccache}
203
204 mknod -m 600 $BASEDIR/build/dev/console c 5 1 2>/dev/null
205 mknod -m 666 $BASEDIR/build/dev/null c 1 3 2>/dev/null
df5e82b3
MT
206
207 # Make all sources and proc available under lfs build
90d372c4 208 mount --bind /dev $BASEDIR/build/dev
857d9bf2
MT
209 mount --bind /dev/pts $BASEDIR/build/dev/pts
210 mount --bind /dev/shm $BASEDIR/build/dev/shm
211 mount --bind /proc $BASEDIR/build/proc
212 mount --bind /sys $BASEDIR/build/sys
df5e82b3
MT
213 mount --bind $BASEDIR/cache $BASEDIR/build/usr/src/cache
214 mount --bind $BASEDIR/ccache $BASEDIR/build/usr/src/ccache
215 mount --bind $BASEDIR/config $BASEDIR/build/usr/src/config
216 mount --bind $BASEDIR/doc $BASEDIR/build/usr/src/doc
217 mount --bind $BASEDIR/html $BASEDIR/build/usr/src/html
218 mount --bind $BASEDIR/langs $BASEDIR/build/usr/src/langs
219 mount --bind $BASEDIR/lfs $BASEDIR/build/usr/src/lfs
220 mount --bind $BASEDIR/log $BASEDIR/build/usr/src/log
221 mount --bind $BASEDIR/src $BASEDIR/build/usr/src/src
222
223 # Run LFS static binary creation scripts one by one
224 export CCACHE_DIR=$BASEDIR/ccache
36d351ff 225 export CCACHE_COMPRESS=1
dc7d6b20 226 export CCACHE_COMPILERCHECK="string:toolchain-${TOOLCHAINVER} ${BUILD_ARCH}"
df5e82b3
MT
227
228 # Remove pre-install list of installed files in case user erase some files before rebuild
229 rm -f $BASEDIR/build/usr/src/lsalr 2>/dev/null
7f69895c
AF
230
231 # Prepare string for /etc/system-release.
dc7d6b20 232 SYSTEM_RELEASE="${NAME} ${VERSION} (${BUILD_ARCH})"
7f69895c
AF
233 if [ "$(git status -s | wc -l)" == "0" ]; then
234 GIT_STATUS=""
235 else
236 GIT_STATUS="-dirty"
237 fi
238 case "$GIT_BRANCH" in
239 core*|beta?|rc?)
240 SYSTEM_RELEASE="${SYSTEM_RELEASE} - $GIT_BRANCH$GIT_STATUS"
241 ;;
242 *)
243 SYSTEM_RELEASE="${SYSTEM_RELEASE} - Development Build: $GIT_BRANCH/$GIT_LASTCOMMIT$GIT_STATUS"
244 ;;
245 esac
df5e82b3
MT
246}
247
df5e82b3 248buildtoolchain() {
f13d4e0b 249 local error=false
dc7d6b20 250 case "${BUILD_ARCH}:${HOST_ARCH}" in
fc155193
MT
251 # x86_64
252 x86_64:x86_64)
253 # This is working.
254 ;;
255
f13d4e0b 256 # x86
8399842e 257 i586:i586|i586:i686|i586:x86_64)
f13d4e0b
MT
258 # These are working.
259 ;;
260 i586:*)
261 error=true
262 ;;
263
264 # ARM
4162dbae
MT
265 arvm7hl:armv7hl|armv7hl:armv7l)
266 # These are working.
267 ;;
268
b5548cbb 269 armv5tel:armv5tel|armv5tel:armv5tejl|armv5tel:armv6l|armv5tel:armv7l|armv5tel:aarch64)
f13d4e0b
MT
270 # These are working.
271 ;;
272 armv5tel:*)
273 error=true
274 ;;
275 esac
276
277 ${error} && \
dc7d6b20 278 exiterror "Cannot build ${BUILD_ARCH} toolchain on $(uname -m). Please use the download if any."
f13d4e0b 279
8399842e
MT
280 local gcc=$(type -p gcc)
281 if [ -z "${gcc}" ]; then
282 exiterror "Could not find GCC. You will need a working build enviroment in order to build the toolchain."
6c9d6fcc
AF
283 fi
284
df5e82b3
MT
285 LOGFILE="$BASEDIR/log/_build.toolchain.log"
286 export LOGFILE
40e38688 287
b7093f17 288 lfsmake1 stage1
40e38688
MT
289 lfsmake1 ccache PASS=1
290 lfsmake1 binutils PASS=1
291 lfsmake1 gcc PASS=1
991d11d7 292 lfsmake1 linux KCFG="-headers"
dd714b8a 293 lfsmake1 glibc
764a3f1f 294 lfsmake1 gcc PASS=L
40e38688
MT
295 lfsmake1 binutils PASS=2
296 lfsmake1 gcc PASS=2
40e38688 297 lfsmake1 ccache PASS=2
df5e82b3
MT
298 lfsmake1 tcl
299 lfsmake1 expect
df5e82b3 300 lfsmake1 dejagnu
ec149ba0 301 lfsmake1 pkg-config
dd714b8a
MT
302 lfsmake1 ncurses
303 lfsmake1 bash
df5e82b3 304 lfsmake1 bzip2
b48a6c97 305 lfsmake1 automake
dd714b8a 306 lfsmake1 coreutils
df5e82b3
MT
307 lfsmake1 diffutils
308 lfsmake1 findutils
dd714b8a 309 lfsmake1 gawk
df5e82b3 310 lfsmake1 gettext
dd714b8a
MT
311 lfsmake1 grep
312 lfsmake1 gzip
313 lfsmake1 m4
40e38688 314 lfsmake1 make
df5e82b3 315 lfsmake1 patch
dd714b8a
MT
316 lfsmake1 perl
317 lfsmake1 sed
df5e82b3
MT
318 lfsmake1 tar
319 lfsmake1 texinfo
31e94846 320 lfsmake1 xz
997736b7 321 lfsmake1 fake-environ
174498ef 322 lfsmake1 cleanup-toolchain
df5e82b3
MT
323}
324
325buildbase() {
326 LOGFILE="$BASEDIR/log/_build.base.log"
327 export LOGFILE
df5e82b3 328 lfsmake2 stage2
cc24c14b 329 lfsmake2 linux KCFG="-headers"
df5e82b3
MT
330 lfsmake2 man-pages
331 lfsmake2 glibc
f7623512 332 lfsmake2 tzdata
174498ef 333 lfsmake2 cleanup-toolchain
28d70963 334 lfsmake2 zlib
df5e82b3 335 lfsmake2 binutils
28d70963
MT
336 lfsmake2 gmp
337 lfsmake2 gmp-compat
338 lfsmake2 mpfr
bdfd41c4 339 lfsmake2 libmpc
28d70963 340 lfsmake2 file
df5e82b3 341 lfsmake2 gcc
28d70963 342 lfsmake2 sed
9b0ff0a0 343 lfsmake2 berkeley
7cf3a80b
ML
344 lfsmake2 autoconf
345 lfsmake2 automake
df5e82b3 346 lfsmake2 coreutils
df5e82b3 347 lfsmake2 iana-etc
df5e82b3
MT
348 lfsmake2 m4
349 lfsmake2 bison
ec149ba0 350 lfsmake2 ncurses-compat
9b0ff0a0
MT
351 lfsmake2 ncurses
352 lfsmake2 procps
9b0ff0a0 353 lfsmake2 libtool
df5e82b3 354 lfsmake2 perl
9b0ff0a0 355 lfsmake2 readline
f19b3cb6 356 lfsmake2 readline-compat
eb03f017 357 lfsmake2 bzip2
542244b3
MT
358 lfsmake2 pcre
359 lfsmake2 pcre-compat
df5e82b3 360 lfsmake2 bash
df5e82b3 361 lfsmake2 diffutils
df5e82b3 362 lfsmake2 e2fsprogs
65998e0a 363 lfsmake2 ed
9b0ff0a0
MT
364 lfsmake2 findutils
365 lfsmake2 flex
9b0ff0a0
MT
366 lfsmake2 gawk
367 lfsmake2 gettext
368 lfsmake2 grep
369 lfsmake2 groff
d1347595 370 lfsmake2 gperf
df5e82b3 371 lfsmake2 gzip
f4e9a251 372 lfsmake2 hostname
9b0ff0a0 373 lfsmake2 iproute2
c5e5324c 374 lfsmake2 jwhois
9b0ff0a0
MT
375 lfsmake2 kbd
376 lfsmake2 less
df5e82b3 377 lfsmake2 make
9b0ff0a0 378 lfsmake2 man
ba109afd 379 lfsmake2 kmod
65998e0a 380 lfsmake2 net-tools
df5e82b3 381 lfsmake2 patch
df5e82b3
MT
382 lfsmake2 psmisc
383 lfsmake2 shadow
384 lfsmake2 sysklogd
385 lfsmake2 sysvinit
386 lfsmake2 tar
90d372c4 387 lfsmake2 texinfo
df5e82b3 388 lfsmake2 util-linux
1ee33dda 389 lfsmake2 udev
90d372c4 390 lfsmake2 vim
31e94846 391 lfsmake2 xz
df5e82b3
MT
392}
393
15679d9f 394buildipfire() {
907cd036 395 LOGFILE="$BASEDIR/log/_build.ipfire.log"
df5e82b3 396 export LOGFILE
15679d9f 397 ipfiremake configroot
ad898e7f 398 ipfiremake initscripts
dc8b9670 399 ipfiremake backup
b8e0573b 400 ipfiremake pkg-config
15679d9f 401 ipfiremake libusb
5d4c1d20 402 ipfiremake libusb-compat
15679d9f 403 ipfiremake libpcap
15679d9f 404 ipfiremake ppp
a456f23e 405 ipfiremake pptp
15679d9f 406 ipfiremake unzip
2b2e03ed 407 ipfiremake which
443aece5 408 ipfiremake linux-firmware
ee1148d1 409 ipfiremake ath10k-firmware
beecbb59 410 ipfiremake dvb-firmwares
d731b1f9 411 ipfiremake mt7601u-firmware
162d2e2f 412 ipfiremake zd1211-firmware
9007007b 413 ipfiremake rpi-firmware
bb5f0bf8 414 ipfiremake bc
ddc492dd 415 ipfiremake u-boot
4db4aeee 416 ipfiremake cpio
9f572d66 417 ipfiremake mdadm
4db4aeee 418 ipfiremake dracut
da45819d
MT
419 ipfiremake lvm2
420 ipfiremake multipath-tools
ed8977a1 421 ipfiremake freetype
da45819d 422 ipfiremake grub
b8e0573b 423 ipfiremake libmnl
4ebb37c8 424 ipfiremake libnfnetlink
d2f2ca65 425 ipfiremake libnetfilter_queue
b5722656 426 ipfiremake libnetfilter_conntrack
fec7a5b7 427 ipfiremake libnetfilter_cthelper
ead1c73f 428 ipfiremake libnetfilter_cttimeout
b8e0573b 429 ipfiremake iptables
8e6fb99d 430
dc7d6b20 431 case "${BUILD_ARCH}" in
fc155193 432 x86_64)
ba583892 433 ipfiremake linux KCFG=""
1f2bda9b 434 ipfiremake backports KCFG=""
ba583892 435 ipfiremake e1000e KCFG=""
db151fde 436 ipfiremake igb KCFG=""
ba583892
MT
437 ipfiremake ixgbe KCFG=""
438 ipfiremake xtables-addons KCFG=""
439 ipfiremake linux-initrd KCFG=""
fc155193 440 ;;
3d02c091
MT
441 i586)
442 # x86-pae (Native and new XEN) kernel build
443 ipfiremake linux KCFG="-pae"
91e56a59 444 ipfiremake backports KCFG="-pae"
3d02c091 445 ipfiremake e1000e KCFG="-pae"
db151fde 446 ipfiremake igb KCFG="-pae"
af396901 447 ipfiremake ixgbe KCFG="-pae"
b8e0573b 448 ipfiremake xtables-addons KCFG="-pae"
22820bf2 449 ipfiremake linux-initrd KCFG="-pae"
3d02c091
MT
450
451 # x86 kernel build
452 ipfiremake linux KCFG=""
91e56a59 453 ipfiremake backports KCFG=""
3d02c091 454 ipfiremake e1000e KCFG=""
db151fde 455 ipfiremake igb KCFG=""
af396901 456 ipfiremake ixgbe KCFG=""
b8e0573b 457 ipfiremake xtables-addons KCFG=""
22820bf2 458 ipfiremake linux-initrd KCFG=""
3d02c091 459 ;;
544f40d4 460
3d02c091
MT
461 armv5tel)
462 # arm-rpi (Raspberry Pi) kernel build
463 ipfiremake linux KCFG="-rpi"
91e56a59 464 ipfiremake backports KCFG="-rpi"
b8e0573b 465 ipfiremake xtables-addons KCFG="-rpi"
22820bf2 466 ipfiremake linux-initrd KCFG="-rpi"
3d02c091
MT
467
468 # arm multi platform (Panda, Wandboard ...) kernel build
469 ipfiremake linux KCFG="-multi"
91e56a59 470 ipfiremake backports KCFG="-multi"
3d02c091 471 ipfiremake e1000e KCFG="-multi"
db151fde 472 ipfiremake igb KCFG="-multi"
af396901 473 ipfiremake ixgbe KCFG="-multi"
b8e0573b 474 ipfiremake xtables-addons KCFG="-multi"
22820bf2 475 ipfiremake linux-initrd KCFG="-multi"
3d02c091
MT
476
477 # arm-kirkwood (Dreamplug, ICY-Box ...) kernel build
478 ipfiremake linux KCFG="-kirkwood"
91e56a59 479 ipfiremake backports KCFG="-kirkwood"
af396901 480 ipfiremake e1000e KCFG="-kirkwood"
db151fde 481 ipfiremake igb KCFG="-kirkwood"
af396901 482 ipfiremake ixgbe KCFG="-kirkwood"
b8e0573b 483 ipfiremake xtables-addons KCFG="-kirkwood"
22820bf2 484 ipfiremake linux-initrd KCFG="-kirkwood"
3d02c091
MT
485 ;;
486 esac
b8e0573b 487 ipfiremake xtables-addons USPACE="1"
c0845171 488 ipfiremake openssl
dc7d6b20 489 [ "${BUILD_ARCH}" = "i586" ] && ipfiremake openssl KCFG='-sse2'
c0845171
MT
490 ipfiremake libgpg-error
491 ipfiremake libgcrypt
492 ipfiremake libassuan
5c9d32f6
MT
493 ipfiremake nettle
494 ipfiremake libevent
495 ipfiremake libevent2
ac69a292 496 ipfiremake libevent2-compat
30aff66a 497 ipfiremake expat
5c9d32f6
MT
498 ipfiremake unbound
499 ipfiremake gnutls
c0845171
MT
500 ipfiremake bind
501 ipfiremake dhcp
502 ipfiremake dhcpcd
c226543b 503 ipfiremake boost
a89770fa 504 ipfiremake linux-atm
15679d9f 505 ipfiremake gdbm
c8ead4a5 506 ipfiremake pam
eac942d9 507 ipfiremake curl
404094ce 508 ipfiremake tcl
1916a97e 509 ipfiremake sqlite
67bc7ab2 510 ipfiremake libffi
15679d9f 511 ipfiremake python
2b6cce9b 512 ipfiremake python3
f0aa99fb 513 ipfiremake ca-certificates
01d103a9 514 ipfiremake fireinfo
15679d9f 515 ipfiremake libnet
999d55de 516 ipfiremake libnl
f808e589 517 ipfiremake libnl-3
27b8cc24 518 ipfiremake libidn
79518a2f 519 ipfiremake nasm
ddac6087 520 ipfiremake libjpeg
71a95ee3 521 ipfiremake libjpeg-compat
946a2afe 522 ipfiremake libexif
15679d9f
MT
523 ipfiremake libpng
524 ipfiremake libtiff
fd3e7da0 525 ipfiremake libart
15679d9f
MT
526 ipfiremake gd
527 ipfiremake popt
411afd1f 528 ipfiremake pcre
15679d9f
MT
529 ipfiremake slang
530 ipfiremake newt
2d01ecf5 531 ipfiremake libsmooth
5e8b8362 532 ipfiremake attr
989a31e2 533 ipfiremake acl
fd3e7da0 534 ipfiremake libcap
15679d9f 535 ipfiremake pciutils
51f3b7f5 536 ipfiremake usbutils
15679d9f 537 ipfiremake libxml2
c6c9630e 538 ipfiremake libxslt
6b8cff41 539 ipfiremake BerkeleyDB
15679d9f 540 ipfiremake mysql
411afd1f 541 ipfiremake cyrus-sasl
15679d9f
MT
542 ipfiremake openldap
543 ipfiremake apache2
544 ipfiremake php
afdf1483 545 ipfiremake web-user-interface
97a5baac 546 ipfiremake flag-icons
f9935652 547 ipfiremake jquery
15679d9f
MT
548 ipfiremake arping
549 ipfiremake beep
849d454a 550 ipfiremake dvdrtools
15679d9f 551 ipfiremake dosfstools
72d80898 552 ipfiremake reiserfsprogs
e0c749da 553 ipfiremake xfsprogs
93afd047 554 ipfiremake sysfsutils
8e055e65 555 ipfiremake fuse
d02350a2 556 ipfiremake ntfs-3g
15679d9f
MT
557 ipfiremake ethtool
558 ipfiremake ez-ipupdate
559 ipfiremake fcron
e3670217 560 ipfiremake perl-GD
330345c2 561 ipfiremake GD-Graph
786f2c8a 562 ipfiremake GD-TextUtil
c5e3d520
MT
563 ipfiremake perl-Device-SerialPort
564 ipfiremake perl-Device-Modem
52b08bc1 565 ipfiremake perl-Apache-Htpasswd
15679d9f
MT
566 ipfiremake gnupg
567 ipfiremake hdparm
f9956330 568 ipfiremake sdparm
7861f575 569 ipfiremake mtools
406f019f 570 ipfiremake whatmask
a10733a5 571 ipfiremake conntrack-tools
490256d5 572 ipfiremake libupnp
15679d9f 573 ipfiremake ipaddr
fd3e7da0 574 ipfiremake iputils
15679d9f 575 ipfiremake l7-protocols
d644d86f 576 ipfiremake mISDNuser
83bac7f3 577 ipfiremake capi4k-utils
93afd047 578 ipfiremake hwdata
15679d9f
MT
579 ipfiremake logrotate
580 ipfiremake logwatch
15679d9f 581 ipfiremake misc-progs
15679d9f 582 ipfiremake nano
15679d9f
MT
583 ipfiremake URI
584 ipfiremake HTML-Tagset
585 ipfiremake HTML-Parser
d3112744 586 ipfiremake HTML-Template
15679d9f
MT
587 ipfiremake Compress-Zlib
588 ipfiremake Digest
589 ipfiremake Digest-SHA1
590 ipfiremake Digest-HMAC
591 ipfiremake libwww-perl
592 ipfiremake Net-DNS
593 ipfiremake Net-IPv4Addr
594 ipfiremake Net_SSLeay
595 ipfiremake IO-Stringy
f98766eb 596 ipfiremake IO-Socket-SSL
15679d9f
MT
597 ipfiremake Unix-Syslog
598 ipfiremake Mail-Tools
599 ipfiremake MIME-Tools
600 ipfiremake Net-Server
601 ipfiremake Convert-TNEF
602 ipfiremake Convert-UUlib
603 ipfiremake Archive-Tar
604 ipfiremake Archive-Zip
605 ipfiremake Text-Tabs+Wrap
606 ipfiremake Locale-Country
93afd047 607 ipfiremake XML-Parser
d8799d92 608 ipfiremake Crypt-PasswdMD5
54fd0535 609 ipfiremake Net-Telnet
87b91593
MT
610 ipfiremake python-setuptools
611 ipfiremake python-clientform
612 ipfiremake python-mechanize
613 ipfiremake python-feedparser
614 ipfiremake python-rssdler
08f6cdcf 615 ipfiremake python-inotify
89b0810b
MT
616 ipfiremake python-docutils
617 ipfiremake python-daemon
3f1b94b9 618 ipfiremake python-ipaddress
c5568d64 619 ipfiremake glib
15679d9f
MT
620 ipfiremake GeoIP
621 ipfiremake fwhits
622 ipfiremake noip_updater
623 ipfiremake ntp
15679d9f 624 ipfiremake openssh
68a3ec7d 625 ipfiremake fontconfig
5c08baab 626 ipfiremake dejavu-fonts-ttf
68a3ec7d
MT
627 ipfiremake freefont
628 ipfiremake pixman
629 ipfiremake cairo
630 ipfiremake pango
15679d9f
MT
631 ipfiremake rrdtool
632 ipfiremake setserial
633 ipfiremake setup
853b7559
CS
634 ipfiremake libdnet
635 ipfiremake daq
15679d9f 636 ipfiremake snort
8a5604bf 637 ipfiremake oinkmaster
15679d9f 638 ipfiremake squid
15679d9f 639 ipfiremake squidguard
069ae085 640 ipfiremake calamaris
f4c3f459 641 ipfiremake tcpdump
15679d9f
MT
642 ipfiremake traceroute
643 ipfiremake vlan
644 ipfiremake wireless
15679d9f 645 ipfiremake pakfire
15679d9f
MT
646 ipfiremake spandsp
647 ipfiremake lzo
648 ipfiremake openvpn
15679d9f 649 ipfiremake pammysql
64c5bbc4 650 ipfiremake mpage
16e27e9a 651 ipfiremake dbus
e8689bfa
MT
652 ipfiremake intltool
653 ipfiremake libdaemon
15679d9f 654 ipfiremake cups
fccb3371 655 ipfiremake ghostscript
460a510b 656 ipfiremake lcms2
ee072e10 657 ipfiremake qpdf
5f8203b2 658 ipfiremake poppler
d46244f3 659 ipfiremake cups-filters
bdd2de73 660 ipfiremake epson-inkjet-printer-escpr
fccb3371 661 ipfiremake foomatic
2231d107 662 ipfiremake hplip
a45d2204 663 ipfiremake cifs-utils
cfba7c56 664 ipfiremake krb5
15679d9f
MT
665 ipfiremake samba
666 ipfiremake sudo
667 ipfiremake mc
668 ipfiremake wget
c0b99a4c 669 ipfiremake bridge-utils
15679d9f 670 ipfiremake screen
15679d9f
MT
671 ipfiremake smartmontools
672 ipfiremake htop
31847530 673 ipfiremake chkconfig
8f28e1b8 674 ipfiremake postfix
15679d9f 675 ipfiremake fetchmail
5ad5a6bc 676 ipfiremake cyrus-imapd
58493e1e 677 ipfiremake openmailadmin
15679d9f 678 ipfiremake clamav
15679d9f 679 ipfiremake spamassassin
fd3e7da0 680 ipfiremake amavisd
de849bc5 681 ipfiremake dma
0708852c 682 ipfiremake alsa
a28fdc01 683 ipfiremake mpfire
6c98857b 684 ipfiremake guardian
67081922 685 ipfiremake libid3tag
15679d9f
MT
686 ipfiremake libmad
687 ipfiremake libogg
688 ipfiremake libvorbis
3de6d1b9 689 ipfiremake libdvbpsi
946a2afe 690 ipfiremake flac
15679d9f 691 ipfiremake lame
15679d9f 692 ipfiremake sox
a6931e7e 693 ipfiremake libshout
0dde24fa
MT
694 ipfiremake xvid
695 ipfiremake libmpeg2
5184e8d3 696 ipfiremake libarchive
3926e90d 697 ipfiremake cmake
15679d9f 698 ipfiremake gnump3d
15679d9f
MT
699 ipfiremake rsync
700 ipfiremake tcpwrapper
a1a05a44 701 ipfiremake libtirpc
e93a0b06 702 ipfiremake rpcbind
15679d9f 703 ipfiremake nfs
33a24fcc 704 ipfiremake gnu-netcat
b395d328 705 ipfiremake ncat
e0fe704b 706 ipfiremake nmap
15679d9f 707 ipfiremake ncftp
15679d9f 708 ipfiremake etherwake
06da1292 709 ipfiremake bwm-ng
1a8688ba 710 ipfiremake sysstat
a08c3a2e 711 ipfiremake vsftpd
6652626c 712 ipfiremake strongswan
8af8d5d1 713 ipfiremake rng-tools
186e3d2c 714 ipfiremake lsof
d83f547d 715 ipfiremake br2684ctl
bb565aa4 716 ipfiremake pcmciautils
87846bb3 717 ipfiremake lm_sensors
7c7ea34a 718 ipfiremake liboping
a332b303 719 ipfiremake collectd
3495f7ba 720 ipfiremake elinks
3fcb086e 721 ipfiremake igmpproxy
47d36d8e 722 ipfiremake fbset
8d90174a
JS
723 ipfiremake opus
724 ipfiremake python-six
725 ipfiremake python-pyparsing
726 ipfiremake spice-protocol
727 ipfiremake spice
bc38ecd0 728 ipfiremake sdl
678a7970 729 ipfiremake libusbredir
bc38ecd0 730 ipfiremake qemu
08fc1a19 731 ipfiremake sane
b332d4ea
AF
732 ipfiremake netpbm
733 ipfiremake phpSANE
f8abcd46 734 ipfiremake tunctl
4e6e5af8 735 ipfiremake netsnmpd
3fcb086e 736 ipfiremake nagios
bddc81b4 737 ipfiremake nagios_nrpe
776029bb 738 ipfiremake icinga
eb20e136 739 ipfiremake ebtables
78c655ac
AF
740 ipfiremake directfb
741 ipfiremake dfb++
03df93e9 742 ipfiremake faad2
4dab22a1 743 ipfiremake ffmpeg
debeaeaa 744 ipfiremake vdr
58ccbbd4 745 ipfiremake vdr_streamdev
1d39d23d 746 ipfiremake vdr_vnsiserver5
58ccbbd4 747 ipfiremake vdr_epgsearch
d1dee6c1 748 ipfiremake vdr_dvbapi
c39413f2 749 ipfiremake vdr_eepg
9dd15f03 750 ipfiremake w_scan
4276eb31
AF
751 ipfiremake icecast
752 ipfiremake icegenerator
753 ipfiremake mpd
48d52263 754 ipfiremake libmpdclient
4276eb31 755 ipfiremake mpc
96396af0 756 ipfiremake perl-Net-SMTP-SSL
60c16cfd 757 ipfiremake perl-MIME-Base64
37672a3d 758 ipfiremake perl-Authen-SASL
42edc41f
AM
759 ipfiremake perl-MIME-Lite
760 ipfiremake perl-Email-Date-Format
77a2f0af 761 ipfiremake git
3900a6c7 762 ipfiremake squidclamav
6c33dc5c 763 ipfiremake vnstat
999d55de 764 ipfiremake iw
fad7b108 765 ipfiremake wpa_supplicant
d0817963 766 ipfiremake hostapd
cfeb8fa3 767 ipfiremake pycurl
396eca1a 768 ipfiremake urlgrabber
1596f7ff 769 ipfiremake syslinux
d49c3993 770 ipfiremake tftpd
d2c65e37 771 ipfiremake cpufrequtils
44e8a23a 772 ipfiremake bluetooth
95257a66 773 ipfiremake gutenprint
4e464f98 774 ipfiremake apcupsd
034a390e 775 ipfiremake iperf
5a9c9396 776 ipfiremake iperf3
3799d284 777 ipfiremake 7zip
1aa810ea 778 ipfiremake lynis
c268aebd 779 ipfiremake streamripper
18163ef2 780 ipfiremake sshfs
52fbfb8c 781 ipfiremake taglib
21819b54 782 #ipfiremake mediatomb
d0515b01 783 ipfiremake sslh
f902119c 784 ipfiremake perl-gettext
158a4318 785 ipfiremake perl-Sort-Naturally
c0b229ae 786 ipfiremake vdradmin
791b2270 787 ipfiremake miau
cc3f6e5c 788 ipfiremake perl-DBI
880cb343 789 ipfiremake perl-DBD-mysql
3704887e 790 ipfiremake perl-DBD-SQLite
abff56f0 791 ipfiremake perl-File-ReadBackwards
31f3654f 792 ipfiremake cacti
a075b9c5 793 ipfiremake openvmtools
91d539ab 794 ipfiremake nagiosql
653bee2b 795 ipfiremake iftop
f4c3f459 796 ipfiremake motion
245e26c9 797 ipfiremake joe
58dca4e5 798 ipfiremake monit
ffc22d72 799 ipfiremake nut
3f4aa73d 800 ipfiremake watchdog
b6541fec 801 ipfiremake libpri
65418d1d 802 ipfiremake libsrtp
76628c77
MT
803 ipfiremake asterisk
804 ipfiremake lcr
3fc69b3e 805 ipfiremake usb_modeswitch
d1c956e8 806 ipfiremake usb_modeswitch_data
dfc4bc56 807 ipfiremake zerofree
6b406afb 808 ipfiremake pound
7afbf8c4 809 ipfiremake minicom
69e29b22 810 ipfiremake ddrescue
aac0f711 811 ipfiremake imspector
fd69d6f6 812 ipfiremake miniupnpd
35f90335 813 ipfiremake client175
aafa82e7 814 ipfiremake powertop
5d547072 815 ipfiremake parted
ff305ff7
AF
816 ipfiremake swig
817 ipfiremake python-m2crypto
3ced8695 818 ipfiremake wireless-regdb
ff305ff7 819 ipfiremake crda
b297f517 820 ipfiremake libsolv
ce457e7f 821 ipfiremake python-distutils-extra
32c95e11 822 ipfiremake python-lzma
8ce0db7c
AF
823 ipfiremake python-progressbar
824 ipfiremake python-xattr
c05bbee7 825 ipfiremake ddns
c7270944 826 ipfiremake transmission
c1250cd8
AF
827 ipfiremake dpfhack
828 ipfiremake lcd4linux
e70bd5b7
EK
829 ipfiremake mtr
830 ipfiremake tcpick
3bdc0102 831 ipfiremake minidlna
d75b739e 832 ipfiremake acpid
9d0acf61 833 ipfiremake fping
b52f6eb2 834 ipfiremake telnet
8ec8462c 835 ipfiremake xinetd
9983d55f
EK
836 ipfiremake gpgme
837 ipfiremake pygpgme
0adb55f2 838 ipfiremake pakfire3
cc8ac763 839 ipfiremake stress
ce819132 840 ipfiremake libstatgrab
fb6e700b 841 ipfiremake sarg
30213d32 842 ipfiremake check_mk_agent
c3ad835a 843 ipfiremake nginx
f98766eb 844 ipfiremake sendEmail
ada69e12 845 ipfiremake sysbench
7739c2db 846 ipfiremake strace
015640d6 847 ipfiremake elfutils
f0c71e72 848 ipfiremake ltrace
76d5aabd 849 ipfiremake ipfire-netboot
2e6c5015 850 ipfiremake lcdproc
0a21ce42
JL
851 ipfiremake bitstream
852 ipfiremake multicat
fc621876 853 ipfiremake keepalived
9ba34569 854 ipfiremake ipvsadm
85981472
JL
855 ipfiremake perl-Carp-Clan
856 ipfiremake perl-Date-Calc
857 ipfiremake perl-Date-Manip
858 ipfiremake perl-File-Tail
859 ipfiremake perl-TimeDate
860 ipfiremake swatch
b312967c 861 ipfiremake tor
ce33eb3e 862 ipfiremake arm
7a6bb67a 863 ipfiremake wavemon
9e49a099 864 ipfiremake iptraf-ng
5a038beb 865 ipfiremake iotop
d2d7a46b 866 ipfiremake stunnel
0f7ee3ea 867 ipfiremake sslscan
7140a7a8 868 ipfiremake owncloud
008c392e 869 ipfiremake bacula
f808e589 870 ipfiremake batctl
db8a01e0
AM
871 ipfiremake perl-PDF-API2
872 ipfiremake squid-accounting
2d37f412 873 ipfiremake pigz
940c90d0 874 ipfiremake tmux
67716b19 875 ipfiremake perl-Text-CSV_XS
ffeb717f 876 ipfiremake swconfig
0f0e30dc 877 ipfiremake haproxy
63cbd2c1 878 ipfiremake ipset
6138d53b 879 ipfiremake lua
98b8cabf 880 ipfiremake dnsdist
8c1cf3b1 881 ipfiremake bird
4ffb9f95 882 ipfiremake dmidecode
9f19223e 883 ipfiremake mcelog
57bf7620 884 ipfiremake rtpproxy
7e39a893 885 ipfiremake util-macros
534199c2 886 ipfiremake libpciaccess
15c80cec 887 ipfiremake libyajl
272ac1b4 888 ipfiremake libvirt
fd15f250 889 ipfiremake python3-libvirt
71f578bb 890 ipfiremake freeradius
65c61b57 891 ipfiremake perl-common-sense
7f218a58 892 ipfiremake perl-inotify2
8afd763e 893 ipfiremake perl-Net-IP
d0817963 894}
df5e82b3
MT
895
896buildinstaller() {
897 # Run installer scripts one by one
898 LOGFILE="$BASEDIR/log/_build.installer.log"
899 export LOGFILE
fd0763dc 900 ipfiremake memtest
6cf9e770
AF
901 ipfiremake installer
902 installmake strip
df5e82b3
MT
903}
904
905buildpackages() {
906 LOGFILE="$BASEDIR/log/_build.packages.log"
907 export LOGFILE
908 echo "... see detailed log in _build.*.log files" >> $LOGFILE
0fbb45e9 909
df5e82b3
MT
910
911 # Generating list of packages used
0fbb45e9 912 echo -n "Generating packages list from logs" | tee -a $LOGFILE
df5e82b3
MT
913 rm -f $BASEDIR/doc/packages-list
914 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
915 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
7471f6ab 916 echo "* `basename $i`" >>$BASEDIR/doc/packages-list
df5e82b3
MT
917 fi
918 done
7471f6ab 919 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc/packages-list.txt
4fe9acb2 920 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$\|install1$\|install2$\|pass1$\|pass2$\|pass3$' \
df5e82b3
MT
921 $BASEDIR/doc/packages-list | sort >> $BASEDIR/doc/packages-list.txt
922 rm -f $BASEDIR/doc/packages-list
c9673262 923 # packages-list.txt is ready to be displayed for wiki page
0fbb45e9 924 beautify message DONE
4b06f504
MT
925
926 # Update changelog
e49f7f0d 927 cd $BASEDIR
c43b07fd
AF
928 [ -z $GIT_TAG ] || LAST_TAG=$GIT_TAG
929 [ -z $LAST_TAG ] || EXT="$LAST_TAG..HEAD"
930 git log -n 500 --no-merges --pretty=medium --shortstat $EXT > $BASEDIR/doc/ChangeLog
df5e82b3 931
9607771a 932 # Create images for install
3c937429 933 ipfiremake cdrom
bada0832 934
4dc82852 935 # Check if there is a loop device for building in virtual environments
841663e7
MT
936 modprobe loop 2>/dev/null
937 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev/loop/0 ] || [ -e /dev/loop0 ] || [ -e "/dev/loop-control" ]); then
3c937429 938 ipfiremake flash-images
c42cbc86 939 ipfiremake flash-images SCON=1
4dc82852 940 fi
c9673262 941
f0fc8807 942 mv $LFS/install/images/{*.iso,*.tgz,*.img.gz,*.bz2} $BASEDIR >> $LOGFILE 2>&1
c9673262 943
0d909a4a 944 ipfirepackages
e67a57fe 945
305a7b38 946 ipfiremake xen-image
939c2a21 947 mv $LFS/install/images/*.bz2 $BASEDIR >> $LOGFILE 2>&1
bada0832 948
b307417f 949 cd $BASEDIR
744a04ea
AF
950
951 # remove not useable iso on armv5tel (needed to build flash images)
dc7d6b20 952 [ "${BUILD_ARCH}" = "armv5tel" ] && rm -rf *.iso
744a04ea 953
b307417f
AF
954 for i in `ls *.bz2 *.img.gz *.iso`; do
955 md5sum $i > $i.md5
956 done
957 cd $PWD
958
e67a57fe
MT
959 # Cleanup
960 stdumount
961 rm -rf $BASEDIR/build/tmp/*
962
963 # Generating total list of files
0d909a4a 964 echo -n "Generating files list from logs" | tee -a $LOGFILE
e67a57fe
MT
965 rm -f $BASEDIR/log/FILES
966 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
967 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
968 echo "##" >>$BASEDIR/log/FILES
969 echo "## `basename $i`" >>$BASEDIR/log/FILES
970 echo "##" >>$BASEDIR/log/FILES
971 cat $i | sed "s%^\./%#%" | sort >> $BASEDIR/log/FILES
972 fi
973 done
0d909a4a 974 beautify message DONE
e67a57fe
MT
975
976 cd $PWD
e67a57fe
MT
977}
978
979ipfirepackages() {
4378d325 980 ipfiremake core-updates
5596077b
MT
981
982 local i
dc7d6b20 983 for i in $(find $BASEDIR/config/rootfiles/packages{/${BUILD_ARCH},} -maxdepth 1 -type f); do
5596077b 984 i=$(basename ${i})
453b418b
MT
985 if [ -e $BASEDIR/lfs/$i ]; then
986 ipfiredist $i
987 else
988 echo -n $i
989 beautify message SKIP
990 fi
fe7fe395 991 done
78331e30 992 test -d $BASEDIR/packages || mkdir $BASEDIR/packages
5c8cfc99 993 mv -f $LFS/install/packages/* $BASEDIR/packages >> $LOGFILE 2>&1
483f59cd 994 rm -rf $BASEDIR/build/install/packages/*
df5e82b3
MT
995}
996
bcb9dc13
MT
997while [ $# -gt 0 ]; do
998 case "${1}" in
999 --target=*)
1000 configure_target "${1#--target=}"
1001 ;;
1002 -*)
1003 exiterror "Unknown configuration option: ${1}"
1004 ;;
1005 *)
1006 # Found a command, so exit options parsing.
1007 break
1008 ;;
1009 esac
1010 shift
1011done
1012
df5e82b3
MT
1013# See what we're supposed to do
1014case "$1" in
1015build)
9729e787 1016 clear
dc7d6b20 1017 PACKAGE=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.tar.gz 2> /dev/null | head -n 1`
df5e82b3 1018 #only restore on a clean disk
bdc6837d 1019 if [ ! -e "${BASEDIR}/build/tools/.toolchain-successful" ]; then
df5e82b3 1020 if [ ! -n "$PACKAGE" ]; then
15679d9f 1021 beautify build_stage "Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
df5e82b3
MT
1022 prepareenv
1023 buildtoolchain
1024 else
1025 PACKAGENAME=${PACKAGE%.tar.gz}
15679d9f 1026 beautify build_stage "Packaged toolchain compilation"
df5e82b3
MT
1027 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
1028 tar zxf $PACKAGE
1029 prepareenv
1030 else
1031 exiterror "$PACKAGENAME md5 did not match, check downloaded package"
1032 fi
1033 fi
1034 else
9729e787
MT
1035 echo -n "Using installed toolchain" | tee -a $LOGFILE
1036 beautify message SKIP
df5e82b3
MT
1037 prepareenv
1038 fi
5cfe86e6 1039
7ab7a9b4 1040 beautify build_start
0b59f25c 1041 beautify build_stage "Building LFS"
df5e82b3 1042 buildbase
15679d9f 1043
0b59f25c 1044 beautify build_stage "Building IPFire"
15679d9f 1045 buildipfire
5cfe86e6 1046
0b59f25c 1047 beautify build_stage "Building installer"
df5e82b3 1048 buildinstaller
15679d9f 1049
0b59f25c 1050 beautify build_stage "Building packages"
df5e82b3 1051 buildpackages
7a5ed24e
CS
1052
1053 beautify build_stage "Checking Logfiles for new Files"
b307417f
AF
1054
1055 cd $BASEDIR
7a5ed24e 1056 tools/checknewlog.pl
e0c923f4 1057 tools/checkrootfiles
b307417f 1058 cd $PWD
a23731d1 1059
7ab7a9b4 1060 beautify build_end
df5e82b3
MT
1061 ;;
1062shell)
1063 # enter a shell inside LFS chroot
1064 # may be used to changed kernel settings
1065 prepareenv
1066 entershell
1067 ;;
df5e82b3 1068clean)
a50d04ab 1069 echo -en "${BOLD}Cleaning build directory...${NORMAL}"
df5e82b3
MT
1070 for i in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
1071 $LOSETUP -d $i 2>/dev/null
1072 done
1073 for i in `mount | grep $BASEDIR | cut -d " " -f 1`; do
1074 umount $i
1075 done
1076 stdumount
1077 for i in `seq 0 7`; do
1078 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
1079 umount /dev/loop${i} 2>/dev/null;
1080 losetup -d /dev/loop${i} 2>/dev/null;
1081 fi;
1082 done
1083 rm -rf $BASEDIR/build
1084 rm -rf $BASEDIR/cdrom
f9315063 1085 rm -rf $BASEDIR/packages
df5e82b3 1086 rm -rf $BASEDIR/log
df5e82b3
MT
1087 if [ -h /tools ]; then
1088 rm -f /tools
1089 fi
b307417f 1090 rm -f $BASEDIR/ipfire-*
a50d04ab 1091 beautify message DONE
df5e82b3 1092 ;;
c3db995c 1093downloadsrc)
df5e82b3
MT
1094 if [ ! -d $BASEDIR/cache ]; then
1095 mkdir $BASEDIR/cache
1096 fi
1097 mkdir -p $BASEDIR/log
857d9bf2 1098 echo -e "${BOLD}Preload all source files${NORMAL}" | tee -a $LOGFILE
df5e82b3
MT
1099 FINISHED=0
1100 cd $BASEDIR/lfs
1101 for c in `seq $MAX_RETRIES`; do
1102 if (( FINISHED==1 )); then
1103 break
1104 fi
1105 FINISHED=1
1106 cd $BASEDIR/lfs
1107 for i in *; do
1108 if [ -f "$i" -a "$i" != "Config" ]; then
846e756e
MT
1109 lfsmakecommoncheck ${i} || continue
1110
dc7d6b20 1111 make -s -f $i LFS_BASEDIR=$BASEDIR BUILD_ARCH="${BUILD_ARCH}" \
51f9e7ac 1112 MESSAGE="$i\t ($c/$MAX_RETRIES)" download >> $LOGFILE 2>&1
df5e82b3 1113 if [ $? -ne 0 ]; then
e22c7973 1114 beautify message FAIL
df5e82b3
MT
1115 FINISHED=0
1116 else
1117 if [ $c -eq 1 ]; then
e22c7973 1118 beautify message DONE
df5e82b3
MT
1119 fi
1120 fi
1121 fi
1122 done
1123 done
e22c7973 1124 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
df5e82b3
MT
1125 ERROR=0
1126 for i in *; do
1127 if [ -f "$i" -a "$i" != "Config" ]; then
a4130265 1128 lfsmakecommoncheck ${i} > /dev/null || continue
dc7d6b20 1129 make -s -f $i LFS_BASEDIR=$BASEDIR BUILD_ARCH="${BUILD_ARCH}" \
51f9e7ac 1130 MESSAGE="$i\t " md5 >> $LOGFILE 2>&1
df5e82b3 1131 if [ $? -ne 0 ]; then
e22c7973
MT
1132 echo -ne "MD5 difference in lfs/$i"
1133 beautify message FAIL
df5e82b3
MT
1134 ERROR=1
1135 fi
1136 fi
1137 done
1138 if [ $ERROR -eq 0 ]; then
e22c7973
MT
1139 echo -ne "${BOLD}all files md5sum match${NORMAL}"
1140 beautify message DONE
1141 else
1142 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
1143 beautify message FAIL
df5e82b3 1144 fi
e22c7973 1145 cd - >/dev/null 2>&1
df5e82b3 1146 ;;
df5e82b3 1147toolchain)
9729e787 1148 clear
df5e82b3 1149 prepareenv
15679d9f 1150 beautify build_stage "Toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
df5e82b3 1151 buildtoolchain
dc7d6b20 1152 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for ${BUILD_ARCH}" | tee -a $LOGFILE
11104bfe 1153 test -d $BASEDIR/cache/toolchains || mkdir -p $BASEDIR/cache/toolchains
dc7d6b20 1154 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.tar.gz \
3e106ae5 1155 build/tools build/bin/sh log >> $LOGFILE
dc7d6b20
MT
1156 md5sum cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.tar.gz \
1157 > cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.md5
df5e82b3
MT
1158 stdumount
1159 ;;
1160gettoolchain)
df5e82b3 1161 # arbitrary name to be updated in case of new toolchain package upload
dc7d6b20 1162 PACKAGE=$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}
712d859c 1163 if [ ! -f $BASEDIR/cache/toolchains/$PACKAGE.tar.gz ]; then
5bd13f01 1164 URL_TOOLCHAIN=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
11104bfe 1165 test -d $BASEDIR/cache/toolchains || mkdir -p $BASEDIR/cache/toolchains
dc7d6b20 1166 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for ${BUILD_ARCH}" | tee -a $LOGFILE
712d859c 1167 cd $BASEDIR/cache/toolchains
74f3678b 1168 wget -U "IPFireSourceGrabber/2.x" $URL_TOOLCHAIN/$PACKAGE.tar.gz $URL_TOOLCHAIN/$PACKAGE.md5 >& /dev/null
712d859c 1169 if [ $? -ne 0 ]; then
dc7d6b20 1170 echo "`date -u '+%b %e %T'`: error downloading $PACKAGE toolchain for ${BUILD_ARCH} machine" | tee -a $LOGFILE
40a4ea4c 1171 else
712d859c
MT
1172 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
1173 echo "`date -u '+%b %e %T'`: toolchain md5 ok" | tee -a $LOGFILE
1174 else
1175 exiterror "$PACKAGE.md5 did not match, check downloaded package"
1176 fi
40a4ea4c 1177 fi
712d859c
MT
1178 else
1179 echo "Toolchain is already downloaded. Exiting..."
df5e82b3
MT
1180 fi
1181 ;;
15679d9f 1182othersrc)
ce56e927 1183 prepareenv
dc7d6b20 1184 echo -ne "`date -u '+%b %e %T'`: Build sources iso for ${BUILD_ARCH}" | tee -a $LOGFILE
ce56e927
MT
1185 chroot $LFS /tools/bin/env -i HOME=/root \
1186 TERM=$TERM PS1='\u:\w\$ ' \
1187 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
dc7d6b20 1188 VERSION=$VERSION NAME="$NAME" SNAME="$SNAME" BUILD_ARCH="${BUILD_ARCH}" \
ce56e927
MT
1189 /bin/bash -x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
1190 mv $LFS/install/images/ipfire-* $BASEDIR >> $LOGFILE 2>&1
15679d9f
MT
1191 if [ $? -eq "0" ]; then
1192 beautify message DONE
1193 else
1194 beautify message FAIL
1195 fi
ce56e927
MT
1196 stdumount
1197 ;;
15679d9f
MT
1198uploadsrc)
1199 PWD=`pwd`
661d9388
CS
1200 if [ -z $IPFIRE_USER ]; then
1201 echo -n "You have to setup IPFIRE_USER first. See .config for details."
1202 beautify message FAIL
1203 exit 1
1204 fi
ae23a606 1205
661d9388 1206 URL_SOURCE=$(grep URL_SOURCE lfs/Config | awk '{ print $3 }')
15e38431 1207 REMOTE_FILES=$(echo "ls -1" | sftp -C ${IPFIRE_USER}@${URL_SOURCE})
661d9388 1208
15e38431
MT
1209 for file in ${BASEDIR}/cache/*; do
1210 [ -d "${file}" ] && continue
1211 grep -q "$(basename ${file})" <<<$REMOTE_FILES && continue
661d9388 1212 NEW_FILES="$NEW_FILES $file"
0eab8e84 1213 done
661d9388
CS
1214 [ -n "$NEW_FILES" ] && scp -2 $NEW_FILES ${IPFIRE_USER}@${URL_SOURCE}
1215 cd $BASEDIR
15679d9f
MT
1216 cd $PWD
1217 exit 0
0eab8e84 1218 ;;
bf7c473f
MT
1219lang)
1220 update_langs
1221 ;;
6b8cff41 1222*)
a50d04ab 1223 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
6b8cff41
MT
1224 cat doc/make.sh-usage
1225 ;;
3ea75603 1226esac