]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - make.sh
pigz: New package for faster image compression
[people/pmueller/ipfire-2.x.git] / make.sh
1 #!/bin/bash
2 ############################################################################
3 # #
4 # This file is part of the IPFire Firewall. #
5 # #
6 # IPFire is free software; you can redistribute it and/or modify #
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 # #
11 # IPFire is distributed in the hope that it will be useful, #
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 #
17 # along with IPFire; if not, write to the Free Software #
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19 # #
20 # Copyright (C) 2007-2014 IPFire Team <info@ipfire.org>. #
21 # #
22 ############################################################################
23 #
24
25 NAME="IPFire" # Software name
26 SNAME="ipfire" # Short name
27 VERSION="2.15" # Version number
28 CORE="82" # Core Level (Filename)
29 PAKFIRE_CORE="81" # Core Level (PAKFIRE)
30 GIT_BRANCH=`git rev-parse --abbrev-ref HEAD` # Git Branch
31 SLOGAN="www.ipfire.org" # Software slogan
32 CONFIG_ROOT=/var/ipfire # Configuration rootdir
33 NICE=10 # Nice level
34 MAX_RETRIES=1 # prefetch/check loop
35 BUILD_IMAGES=1 # Flash and Xen Downloader
36 KVER=`grep --max-count=1 VER lfs/linux | awk '{ print $3 }'`
37 GIT_TAG=$(git tag | tail -1) # Git Tag
38 GIT_LASTCOMMIT=$(git log | head -n1 | cut -d" " -f2 |head -c8) # Last commit
39 TOOLCHAINVER=7
40
41 # New architecture variables
42 BUILD_ARCH="$(uname -m)"
43 BUILDMACHINE="${BUILD_ARCH}"
44
45 # Debian specific settings
46 if [ ! -e /etc/debian_version ]; then
47 FULLPATH=`which $0`
48 else
49 if [ -x /usr/bin/realpath ]; then
50 FULLPATH=`/usr/bin/realpath $0`
51 else
52 echo "ERROR: Need to do apt-get install realpath"
53 exit 1
54 fi
55 fi
56
57 PWD=`pwd`
58 BASENAME=`basename $0`
59 BASEDIR=`echo $FULLPATH | sed "s/\/$BASENAME//g"`
60 LOGFILE=$BASEDIR/log/_build.preparation.log
61 export BASEDIR LOGFILE
62 DIR_CHK=$BASEDIR/cache/check
63 mkdir $BASEDIR/log/ 2>/dev/null
64
65 # Include funtions
66 . tools/make-functions
67
68 if [ -f .config ]; then
69 . .config
70 fi
71
72 if [ -n "${TARGET_ARCH}" ]; then
73 configure_target "${TARGET_ARCH}"
74 else
75 configure_target "default"
76 fi
77
78 if [ -z $EDITOR ]; then
79 for i in nano emacs vi; do
80 EDITOR=$(which $i 2>/dev/null)
81 if ! [ -z $EDITOR ]; then
82 export EDITOR=$EDITOR
83 break
84 fi
85 done
86 [ -z $EDITOR ] && exiterror "You should have installed an editor."
87 fi
88
89 # Prepare string for /etc/system-release.
90 SYSTEM_RELEASE="${NAME} ${VERSION} (${MACHINE})"
91 if [ "$(git status -s | wc -l)" == "0" ]; then
92 GIT_STATUS=""
93 else
94 GIT_STATUS="-dirty"
95 fi
96 case "$GIT_BRANCH" in
97 core*|beta?|rc?)
98 SYSTEM_RELEASE="${SYSTEM_RELEASE} - $GIT_BRANCH$GIT_STATUS"
99 ;;
100 *)
101 SYSTEM_RELEASE="${SYSTEM_RELEASE} - Development Build: $GIT_BRANCH/$GIT_LASTCOMMIT$GIT_STATUS"
102 ;;
103 esac
104
105 prepareenv() {
106 ############################################################################
107 # #
108 # Are we running the right shell? #
109 # #
110 ############################################################################
111 if [ ! "$BASH" ]; then
112 exiterror "BASH environment variable is not set. You're probably running the wrong shell."
113 fi
114
115 if [ -z "${BASH_VERSION}" ]; then
116 exiterror "Not running BASH shell."
117 fi
118
119
120 ############################################################################
121 # #
122 # Trap on emergency exit #
123 # #
124 ############################################################################
125 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP SIGQUIT
126
127
128 ############################################################################
129 # #
130 # Resetting our nice level #
131 # #
132 ############################################################################
133 echo -ne "Resetting our nice level to $NICE" | tee -a $LOGFILE
134 renice $NICE $$ > /dev/null
135 if [ `nice` != "$NICE" ]; then
136 beautify message FAIL
137 exiterror "Failed to set correct nice level"
138 else
139 beautify message DONE
140 fi
141
142
143 ############################################################################
144 # #
145 # Checking if running as root user #
146 # #
147 ############################################################################
148 echo -ne "Checking if we're running as root user" | tee -a $LOGFILE
149 if [ `id -u` != 0 ]; then
150 beautify message FAIL
151 exiterror "Not building as root"
152 else
153 beautify message DONE
154 fi
155
156
157 ############################################################################
158 # #
159 # Checking for necessary temporary space #
160 # #
161 ############################################################################
162 echo -ne "Checking for necessary space on disk $BASE_DEV" | tee -a $LOGFILE
163 BASE_DEV=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
164 BASE_ASPACE=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
165 if (( 2048000 > $BASE_ASPACE )); then
166 BASE_USPACE=`du -skx $BASEDIR | awk '{print $1}'`
167 if (( 2048000 - $BASE_USPACE > $BASE_ASPACE )); then
168 beautify message FAIL
169 exiterror "Not enough temporary space available, need at least 2GB on $BASE_DEV"
170 fi
171 else
172 beautify message DONE
173 fi
174
175 ############################################################################
176 # #
177 # Building Linux From Scratch system #
178 # #
179 ############################################################################
180 # Set umask
181 umask 022
182
183 # Set LFS Directory
184 LFS=$BASEDIR/build
185
186 # Check /tools symlink
187 if [ -h /tools ]; then
188 rm -f /tools
189 fi
190 if [ ! -a /tools ]; then
191 ln -s $BASEDIR/build/tools /
192 fi
193 if [ ! -h /tools ]; then
194 exiterror "Could not create /tools symbolic link."
195 fi
196
197 # Setup environment
198 set +h
199 LC_ALL=POSIX
200 if [ -z $MAKETUNING ]; then
201 CPU_COUNT="$(getconf _NPROCESSORS_ONLN 2>/dev/null)"
202 if [ -z "${CPU_COUNT}" ]; then
203 CPU_COUNT=1
204 fi
205
206 MAKETUNING="-j$(( ${CPU_COUNT} * 2 + 1 ))"
207 fi
208 export LFS LC_ALL CFLAGS CXXFLAGS MAKETUNING
209 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
210
211 # Make some extra directories
212 mkdir -p $BASEDIR/build/{tools,etc,usr/src} 2>/dev/null
213 mkdir -p $BASEDIR/build/{dev/{shm,pts},proc,sys}
214 mkdir -p $BASEDIR/{cache,ccache} 2>/dev/null
215 mkdir -p $BASEDIR/build/usr/src/{cache,config,doc,html,langs,lfs,log,src,ccache}
216
217 mknod -m 600 $BASEDIR/build/dev/console c 5 1 2>/dev/null
218 mknod -m 666 $BASEDIR/build/dev/null c 1 3 2>/dev/null
219
220 # Make all sources and proc available under lfs build
221 mount --bind /dev $BASEDIR/build/dev
222 mount --bind /dev/pts $BASEDIR/build/dev/pts
223 mount --bind /dev/shm $BASEDIR/build/dev/shm
224 mount --bind /proc $BASEDIR/build/proc
225 mount --bind /sys $BASEDIR/build/sys
226 mount --bind $BASEDIR/cache $BASEDIR/build/usr/src/cache
227 mount --bind $BASEDIR/ccache $BASEDIR/build/usr/src/ccache
228 mount --bind $BASEDIR/config $BASEDIR/build/usr/src/config
229 mount --bind $BASEDIR/doc $BASEDIR/build/usr/src/doc
230 mount --bind $BASEDIR/html $BASEDIR/build/usr/src/html
231 mount --bind $BASEDIR/langs $BASEDIR/build/usr/src/langs
232 mount --bind $BASEDIR/lfs $BASEDIR/build/usr/src/lfs
233 mount --bind $BASEDIR/log $BASEDIR/build/usr/src/log
234 mount --bind $BASEDIR/src $BASEDIR/build/usr/src/src
235
236 # Run LFS static binary creation scripts one by one
237 export CCACHE_DIR=$BASEDIR/ccache
238 export CCACHE_COMPRESS=1
239 export CCACHE_COMPILERCHECK="none"
240
241 # Remove pre-install list of installed files in case user erase some files before rebuild
242 rm -f $BASEDIR/build/usr/src/lsalr 2>/dev/null
243 }
244
245 buildtoolchain() {
246 local error=false
247 case "${TARGET_ARCH}:${BUILD_ARCH}" in
248 # x86
249 i586:i586|i586:i686|i586:x86_64)
250 # These are working.
251 ;;
252 i586:*)
253 error=true
254 ;;
255
256 # ARM
257 armv5tel:armv5tel|armv5tel:armv5tejl|armv5tel:armv6l|armv5tel:armv7l)
258 # These are working.
259 ;;
260 armv5tel:*)
261 error=true
262 ;;
263 esac
264
265 ${error} && \
266 exiterror "Cannot build ${MACHINE} toolchain on $(uname -m). Please use the download if any."
267
268 local gcc=$(type -p gcc)
269 if [ -z "${gcc}" ]; then
270 exiterror "Could not find GCC. You will need a working build enviroment in order to build the toolchain."
271 fi
272
273 LOGFILE="$BASEDIR/log/_build.toolchain.log"
274 export LOGFILE
275
276 local ORG_PATH=$PATH
277 export PATH="/tools/ccache/bin:/tools/bin:$PATH"
278 lfsmake1 ccache PASS=1
279 lfsmake1 binutils PASS=1
280 lfsmake1 gcc PASS=1
281 lfsmake1 linux TOOLS=1 KCFG="-headers"
282 lfsmake1 glibc
283 lfsmake1 cleanup-toolchain PASS=1
284 lfsmake1 binutils PASS=2
285 lfsmake1 gcc PASS=2
286 lfsmake1 ccache PASS=2
287 lfsmake1 tcl
288 lfsmake1 expect
289 lfsmake1 dejagnu
290 lfsmake1 ncurses
291 lfsmake1 bash
292 lfsmake1 bzip2
293 lfsmake1 coreutils
294 lfsmake1 diffutils
295 lfsmake1 findutils
296 lfsmake1 gawk
297 lfsmake1 gettext
298 lfsmake1 grep
299 lfsmake1 gzip
300 lfsmake1 m4
301 lfsmake1 make
302 lfsmake1 patch
303 lfsmake1 perl
304 lfsmake1 sed
305 lfsmake1 tar
306 lfsmake1 texinfo
307 lfsmake1 xz
308 lfsmake1 fake-environ
309 lfsmake1 cleanup-toolchain PASS=2
310 export PATH=$ORG_PATH
311 }
312
313 buildbase() {
314 LOGFILE="$BASEDIR/log/_build.base.log"
315 export LOGFILE
316 lfsmake2 stage2
317 lfsmake2 linux KCFG="-headers"
318 lfsmake2 man-pages
319 lfsmake2 glibc
320 lfsmake2 tzdata
321 lfsmake2 cleanup-toolchain PASS=3
322 lfsmake2 zlib
323 lfsmake2 binutils
324 lfsmake2 gmp
325 lfsmake2 gmp-compat
326 lfsmake2 mpfr
327 lfsmake2 file
328 lfsmake2 gcc
329 lfsmake2 sed
330 lfsmake2 berkeley
331 lfsmake2 coreutils
332 lfsmake2 iana-etc
333 lfsmake2 m4
334 lfsmake2 bison
335 lfsmake2 ncurses
336 lfsmake2 procps
337 lfsmake2 libtool
338 lfsmake2 perl
339 lfsmake2 readline
340 lfsmake2 readline-compat
341 lfsmake2 pcre
342 lfsmake2 pcre-compat
343 lfsmake2 autoconf
344 lfsmake2 automake
345 lfsmake2 bash
346 lfsmake2 bzip2
347 lfsmake2 diffutils
348 lfsmake2 e2fsprogs
349 lfsmake2 ed
350 lfsmake2 findutils
351 lfsmake2 flex
352 lfsmake2 gawk
353 lfsmake2 gettext
354 lfsmake2 grep
355 lfsmake2 groff
356 lfsmake2 gperf
357 lfsmake2 gzip
358 lfsmake2 hostname
359 lfsmake2 iproute2
360 lfsmake2 jwhois
361 lfsmake2 kbd
362 lfsmake2 less
363 lfsmake2 make
364 lfsmake2 man
365 lfsmake2 kmod
366 lfsmake2 net-tools
367 lfsmake2 patch
368 lfsmake2 psmisc
369 lfsmake2 shadow
370 lfsmake2 sysklogd
371 lfsmake2 sysvinit
372 lfsmake2 tar
373 lfsmake2 texinfo
374 lfsmake2 util-linux
375 lfsmake2 udev
376 lfsmake2 vim
377 lfsmake2 xz
378 lfsmake2 paxctl
379 lfsmake2 grub
380 }
381
382 buildipfire() {
383 LOGFILE="$BASEDIR/log/_build.ipfire.log"
384 export LOGFILE
385 ipfiremake configroot
386 ipfiremake backup
387 ipfiremake libusb
388 ipfiremake libusbx
389 ipfiremake libpcap
390 ipfiremake ppp
391 ipfiremake pptp
392 ipfiremake unzip
393 ipfiremake which
394 ipfiremake linux-firmware
395 ipfiremake dvb-firmwares
396 ipfiremake zd1211-firmware
397 ipfiremake rpi-firmware
398 ipfiremake bc
399 ipfiremake u-boot
400 ipfiremake cpio
401 ipfiremake mdadm
402 ipfiremake dracut
403
404 case "${TARGET_ARCH}" in
405 i586)
406 # x86-pae (Native and new XEN) kernel build
407 ipfiremake linux KCFG="-pae"
408 # ipfiremake kvm-kmod KCFG="-pae"
409 # ipfiremake v4l-dvb KCFG="-pae"
410 # ipfiremake mISDN KCFG="-pae"
411 ipfiremake cryptodev KCFG="-pae"
412 # ipfiremake compat-drivers KCFG="-pae"
413 # ipfiremake r8169 KCFG="-pae"
414 # ipfiremake r8168 KCFG="-pae"
415 # ipfiremake r8101 KCFG="-pae"
416 ipfiremake e1000e KCFG="-pae"
417 ipfiremake igb KCFG="-pae"
418
419 # x86 kernel build
420 ipfiremake linux KCFG=""
421 # ipfiremake kvm-kmod KCFG=""
422 # ipfiremake v4l-dvb KCFG=""
423 # ipfiremake mISDN KCFG=""
424 ipfiremake cryptodev KCFG=""
425 # ipfiremake compat-drivers KCFG=""
426 # ipfiremake r8169 KCFG=""
427 # ipfiremake r8168 KCFG=""
428 # ipfiremake r8101 KCFG=""
429 ipfiremake e1000e KCFG=""
430 ipfiremake igb KCFG=""
431 ;;
432
433 armv5tel)
434 # arm-rpi (Raspberry Pi) kernel build
435 ipfiremake linux KCFG="-rpi"
436 # ipfiremake v4l-dvb KCFG="-rpi"
437 # ipfiremake mISDN KCFG="-rpi" NOPCI=1
438 ipfiremake cryptodev KCFG="-rpi"
439 # ipfiremake compat-drivers KCFG="-rpi"
440
441 # arm multi platform (Panda, Wandboard ...) kernel build
442 ipfiremake linux KCFG="-multi"
443 ipfiremake cryptodev KCFG="-multi"
444 ipfiremake e1000e KCFG="-multi"
445 ipfiremake igb KCFG="-multi"
446
447 # arm-kirkwood (Dreamplug, ICY-Box ...) kernel build
448 ipfiremake linux KCFG="-kirkwood"
449 # ipfiremake v4l-dvb KCFG="-kirkwood"
450 # ipfiremake mISDN KCFG="-kirkwood"
451 ipfiremake cryptodev KCFG="-kirkwood"
452 # ipfiremake compat-drivers KCFG="-kirkwood"
453 # ipfiremake r8169 KCFG="-kirkwood"
454 # ipfiremake r8168 KCFG="-kirkwood"
455 # ipfiremake r8101 KCFG="-kirkwood"
456 # ipfiremake e1000e KCFG="-kirkwood"
457 ipfiremake igb KCFG="-kirkwood"
458 ;;
459 esac
460 ipfiremake pkg-config
461 ipfiremake openssl
462 ipfiremake openssl-compat
463 ipfiremake libgpg-error
464 ipfiremake libgcrypt
465 ipfiremake libassuan
466 ipfiremake bind
467 ipfiremake dhcp
468 ipfiremake dhcpcd
469 ipfiremake boost
470 ipfiremake linux-atm
471 ipfiremake expat
472 ipfiremake gdbm
473 ipfiremake pam
474 ipfiremake curl
475 ipfiremake tcl
476 ipfiremake sqlite
477 ipfiremake python
478 ipfiremake fireinfo
479 ipfiremake libnet
480 ipfiremake libnl
481 ipfiremake libnl-3
482 ipfiremake libidn
483 ipfiremake nasm
484 ipfiremake libjpeg
485 ipfiremake libexif
486 ipfiremake libpng
487 ipfiremake libtiff
488 ipfiremake libart
489 ipfiremake freetype
490 ipfiremake gd
491 ipfiremake popt
492 ipfiremake pcre
493 ipfiremake slang
494 ipfiremake newt
495 ipfiremake libsmooth
496 ipfiremake attr
497 ipfiremake acl
498 ipfiremake libcap
499 ipfiremake pciutils
500 ipfiremake usbutils
501 ipfiremake libxml2
502 ipfiremake libxslt
503 ipfiremake BerkeleyDB
504 ipfiremake mysql
505 ipfiremake cyrus-sasl
506 ipfiremake openldap
507 ipfiremake apache2
508 ipfiremake php
509 ipfiremake apache2 PASS=C
510 ipfiremake jquery
511 ipfiremake arping
512 ipfiremake beep
513 ipfiremake dvdrtools
514 ipfiremake nettle
515 ipfiremake dnsmasq
516 ipfiremake dosfstools
517 ipfiremake reiserfsprogs
518 ipfiremake xfsprogs
519 ipfiremake sysfsutils
520 ipfiremake fuse
521 ipfiremake ntfs-3g
522 ipfiremake ethtool
523 ipfiremake ez-ipupdate
524 ipfiremake fcron
525 ipfiremake perl-GD
526 ipfiremake GD-Graph
527 ipfiremake GD-TextUtil
528 ipfiremake perl-Device-SerialPort
529 ipfiremake perl-Device-Modem
530 ipfiremake gnupg
531 ipfiremake hdparm
532 ipfiremake sdparm
533 ipfiremake mtools
534 ipfiremake initscripts
535 ipfiremake whatmask
536 ipfiremake libmnl
537 ipfiremake iptables
538 ipfiremake conntrack-tools
539 ipfiremake libupnp
540 ipfiremake ipaddr
541 ipfiremake iputils
542 ipfiremake l7-protocols
543 ipfiremake mISDNuser
544 ipfiremake capi4k-utils
545 ipfiremake hwdata
546 ipfiremake logrotate
547 ipfiremake logwatch
548 ipfiremake misc-progs
549 ipfiremake nano
550 ipfiremake URI
551 ipfiremake HTML-Tagset
552 ipfiremake HTML-Parser
553 ipfiremake HTML-Template
554 ipfiremake Compress-Zlib
555 ipfiremake Digest
556 ipfiremake Digest-SHA1
557 ipfiremake Digest-HMAC
558 ipfiremake libwww-perl
559 ipfiremake Net-DNS
560 ipfiremake Net-IPv4Addr
561 ipfiremake Net_SSLeay
562 ipfiremake IO-Stringy
563 ipfiremake IO-Socket-SSL
564 ipfiremake Unix-Syslog
565 ipfiremake Mail-Tools
566 ipfiremake MIME-Tools
567 ipfiremake Net-Server
568 ipfiremake Convert-TNEF
569 ipfiremake Convert-UUlib
570 ipfiremake Archive-Tar
571 ipfiremake Archive-Zip
572 ipfiremake Text-Tabs+Wrap
573 ipfiremake Locale-Country
574 ipfiremake XML-Parser
575 ipfiremake Crypt-PasswdMD5
576 ipfiremake Net-Telnet
577 ipfiremake python-setuptools
578 ipfiremake python-clientform
579 ipfiremake python-mechanize
580 ipfiremake python-feedparser
581 ipfiremake python-rssdler
582 ipfiremake libffi
583 ipfiremake glib
584 ipfiremake GeoIP
585 ipfiremake fwhits
586 ipfiremake noip_updater
587 ipfiremake ntp
588 ipfiremake openssh
589 ipfiremake fontconfig
590 ipfiremake dejavu-fonts-ttf
591 ipfiremake freefont
592 ipfiremake pixman
593 ipfiremake cairo
594 ipfiremake pango
595 ipfiremake rrdtool
596 ipfiremake setserial
597 ipfiremake setup
598 ipfiremake libdnet
599 ipfiremake daq
600 ipfiremake snort
601 ipfiremake oinkmaster
602 ipfiremake squid
603 ipfiremake squidguard
604 ipfiremake calamaris
605 ipfiremake tcpdump
606 ipfiremake traceroute
607 ipfiremake vlan
608 ipfiremake wireless
609 ipfiremake pakfire
610 ipfiremake spandsp
611 ipfiremake lzo
612 ipfiremake openvpn
613 ipfiremake pammysql
614 ipfiremake mpage
615 ipfiremake dbus
616 ipfiremake cups
617 ipfiremake ghostscript
618 ipfiremake foomatic
619 ipfiremake hplip
620 ipfiremake cifs-utils
621 ipfiremake krb5
622 ipfiremake samba
623 ipfiremake sudo
624 ipfiremake mc
625 ipfiremake wget
626 ipfiremake bridge-utils
627 ipfiremake screen
628 ipfiremake smartmontools
629 ipfiremake htop
630 ipfiremake postfix
631 ipfiremake fetchmail
632 ipfiremake cyrus-imapd
633 ipfiremake openmailadmin
634 ipfiremake clamav
635 ipfiremake spamassassin
636 ipfiremake amavisd
637 ipfiremake alsa
638 ipfiremake mpfire
639 ipfiremake guardian
640 ipfiremake libid3tag
641 ipfiremake libmad
642 ipfiremake libogg
643 ipfiremake libvorbis
644 ipfiremake libdvbpsi
645 ipfiremake flac
646 ipfiremake lame
647 ipfiremake sox
648 ipfiremake libshout
649 ipfiremake xvid
650 ipfiremake libmpeg2
651 ipfiremake cmake
652 ipfiremake gnump3d
653 ipfiremake rsync
654 ipfiremake tcpwrapper
655 ipfiremake libevent
656 ipfiremake libevent2
657 ipfiremake portmap
658 ipfiremake nfs
659 ipfiremake nmap
660 ipfiremake ncftp
661 ipfiremake etherwake
662 ipfiremake bwm-ng
663 ipfiremake tripwire
664 ipfiremake sysstat
665 ipfiremake vsftpd
666 ipfiremake strongswan
667 ipfiremake rng-tools
668 ipfiremake lsof
669 ipfiremake br2684ctl
670 ipfiremake pcmciautils
671 ipfiremake lm_sensors
672 ipfiremake liboping
673 ipfiremake collectd
674 ipfiremake teamspeak
675 ipfiremake elinks
676 ipfiremake igmpproxy
677 ipfiremake fbset
678 ipfiremake sdl
679 ipfiremake qemu
680 ipfiremake sane
681 ipfiremake netpbm
682 ipfiremake phpSANE
683 ipfiremake tunctl
684 ipfiremake netsnmpd
685 ipfiremake nagios
686 ipfiremake nagios_nrpe
687 ipfiremake icinga
688 ipfiremake ebtables
689 ipfiremake directfb
690 ipfiremake dfb++
691 ipfiremake faad2
692 ipfiremake ffmpeg
693 ipfiremake vdr
694 ipfiremake vdr_streamdev
695 ipfiremake vdr_vnsiserver5
696 ipfiremake vdr_vnsiserver3
697 ipfiremake vdr_epgsearch
698 ipfiremake vdr_dvbapi
699 ipfiremake vdr_eepg
700 ipfiremake w_scan
701 ipfiremake icecast
702 ipfiremake icegenerator
703 ipfiremake mpd
704 ipfiremake libmpdclient
705 ipfiremake mpc
706 ipfiremake git
707 ipfiremake squidclamav
708 ipfiremake vnstat
709 ipfiremake iw
710 ipfiremake wpa_supplicant
711 ipfiremake hostapd
712 ipfiremake pycurl
713 ipfiremake urlgrabber
714 ipfiremake syslinux
715 ipfiremake tftpd
716 ipfiremake cpufrequtils
717 ipfiremake bluetooth
718 ipfiremake gutenprint
719 ipfiremake apcupsd
720 ipfiremake iperf
721 ipfiremake netcat
722 ipfiremake 7zip
723 ipfiremake lynis
724 ipfiremake streamripper
725 ipfiremake sshfs
726 ipfiremake taglib
727 ipfiremake mediatomb
728 ipfiremake sslh
729 ipfiremake perl-gettext
730 ipfiremake perl-Sort-Naturally
731 ipfiremake vdradmin
732 ipfiremake miau
733 ipfiremake perl-DBI
734 ipfiremake perl-DBD-mysql
735 ipfiremake perl-DBD-SQLite
736 ipfiremake perl-File-ReadBackwards
737 ipfiremake cacti
738 ipfiremake openvmtools
739 ipfiremake nagiosql
740 ipfiremake iftop
741 ipfiremake motion
742 ipfiremake joe
743 ipfiremake nut
744 ipfiremake watchdog
745 ipfiremake libpri
746 ipfiremake asterisk
747 ipfiremake lcr
748 ipfiremake usb_modeswitch
749 ipfiremake usb_modeswitch_data
750 ipfiremake zerofree
751 ipfiremake pound
752 ipfiremake minicom
753 ipfiremake ddrescue
754 ipfiremake imspector
755 ipfiremake miniupnpd
756 ipfiremake client175
757 ipfiremake powertop
758 ipfiremake parted
759 ipfiremake swig
760 ipfiremake python-m2crypto
761 ipfiremake wireless-regdb
762 ipfiremake crda
763 ipfiremake libsolv
764 ipfiremake python-distutils-extra
765 ipfiremake python-lzma
766 ipfiremake python-progressbar
767 ipfiremake python-xattr
768 ipfiremake intltool
769 ipfiremake ddns
770 ipfiremake transmission
771 ipfiremake dpfhack
772 ipfiremake lcd4linux
773 ipfiremake mtr
774 ipfiremake tcpick
775 ipfiremake minidlna
776 ipfiremake acpid
777 ipfiremake fping
778 ipfiremake telnet
779 ipfiremake xinetd
780 ipfiremake gpgme
781 ipfiremake pygpgme
782 ipfiremake pakfire3
783 ipfiremake stress
784 ipfiremake libstatgrab
785 ipfiremake sarg
786 ipfiremake check_mk_agent
787 ipfiremake libdaemon
788 ipfiremake avahi
789 ipfiremake nginx
790 ipfiremake sendEmail
791 ipfiremake sysbench
792 ipfiremake strace
793 ipfiremake ipfire-netboot
794 ipfiremake lcdproc
795 ipfiremake bitstream
796 ipfiremake multicat
797 ipfiremake keepalived
798 ipfiremake ipvsadm
799 ipfiremake perl-Carp-Clan
800 ipfiremake perl-Date-Calc
801 ipfiremake perl-Date-Manip
802 ipfiremake perl-File-Tail
803 ipfiremake perl-TimeDate
804 ipfiremake swatch
805 ipfiremake tor
806 ipfiremake arm
807 ipfiremake wavemon
808 ipfiremake iptraf-ng
809 ipfiremake iotop
810 ipfiremake stunnel
811 ipfiremake sslscan
812 ipfiremake owncloud
813 ipfiremake bacula
814 ipfiremake batctl
815 ipfiremake perl-PDF-API2
816 ipfiremake squid-accounting
817 ipfiremake pigz
818 }
819
820 buildinstaller() {
821 # Run installer scripts one by one
822 LOGFILE="$BASEDIR/log/_build.installer.log"
823 export LOGFILE
824 ipfiremake memtest
825 ipfiremake installer
826 installmake strip
827 }
828
829 buildpackages() {
830 LOGFILE="$BASEDIR/log/_build.packages.log"
831 export LOGFILE
832 echo "... see detailed log in _build.*.log files" >> $LOGFILE
833
834
835 # Generating list of packages used
836 echo -n "Generating packages list from logs" | tee -a $LOGFILE
837 rm -f $BASEDIR/doc/packages-list
838 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
839 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
840 echo "* `basename $i`" >>$BASEDIR/doc/packages-list
841 fi
842 done
843 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc/packages-list.txt
844 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$\|install1$\|install2$\|pass1$\|pass2$\|pass3$' \
845 $BASEDIR/doc/packages-list | sort >> $BASEDIR/doc/packages-list.txt
846 rm -f $BASEDIR/doc/packages-list
847 # packages-list.txt is ready to be displayed for wiki page
848 beautify message DONE
849
850 # Update changelog
851 cd $BASEDIR
852 [ -z $GIT_TAG ] || LAST_TAG=$GIT_TAG
853 [ -z $LAST_TAG ] || EXT="$LAST_TAG..HEAD"
854 git log -n 500 --no-merges --pretty=medium --shortstat $EXT > $BASEDIR/doc/ChangeLog
855
856 # Create images for install
857 ipfiremake cdrom
858
859 # Check if there is a loop device for building in virtual environments
860 modprobe loop 2>/dev/null
861 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev/loop/0 ] || [ -e /dev/loop0 ] || [ -e "/dev/loop-control" ]); then
862 ipfiremake flash-images
863 fi
864
865 mv $LFS/install/images/{*.iso,*.tgz,*.img.gz,*.bz2} $BASEDIR >> $LOGFILE 2>&1
866
867 ipfirepackages
868
869 ipfiremake xen-image
870 mv $LFS/install/images/*.bz2 $BASEDIR >> $LOGFILE 2>&1
871
872 cd $BASEDIR
873 for i in `ls *.bz2 *.img.gz *.iso`; do
874 md5sum $i > $i.md5
875 done
876 cd $PWD
877
878 # Cleanup
879 stdumount
880 rm -rf $BASEDIR/build/tmp/*
881
882 # Generating total list of files
883 echo -n "Generating files list from logs" | tee -a $LOGFILE
884 rm -f $BASEDIR/log/FILES
885 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
886 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
887 echo "##" >>$BASEDIR/log/FILES
888 echo "## `basename $i`" >>$BASEDIR/log/FILES
889 echo "##" >>$BASEDIR/log/FILES
890 cat $i | sed "s%^\./%#%" | sort >> $BASEDIR/log/FILES
891 fi
892 done
893 beautify message DONE
894
895 cd $PWD
896 }
897
898 ipfirepackages() {
899 ipfiremake core-updates
900
901 local i
902 for i in $(find $BASEDIR/config/rootfiles/packages{/${MACHINE},} -maxdepth 1 -type f); do
903 i=$(basename ${i})
904 if [ -e $BASEDIR/lfs/$i ]; then
905 ipfiredist $i
906 else
907 echo -n $i
908 beautify message SKIP
909 fi
910 done
911 test -d $BASEDIR/packages || mkdir $BASEDIR/packages
912 mv -f $LFS/install/packages/* $BASEDIR/packages >> $LOGFILE 2>&1
913 rm -rf $BASEDIR/build/install/packages/*
914 }
915
916 while [ $# -gt 0 ]; do
917 case "${1}" in
918 --target=*)
919 configure_target "${1#--target=}"
920 ;;
921 -*)
922 exiterror "Unknown configuration option: ${1}"
923 ;;
924 *)
925 # Found a command, so exit options parsing.
926 break
927 ;;
928 esac
929 shift
930 done
931
932 # See what we're supposed to do
933 case "$1" in
934 build)
935 clear
936 PACKAGE=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.tar.gz 2> /dev/null | head -n 1`
937 #only restore on a clean disk
938 if [ ! -f log/cleanup-toolchain-2-tools ]; then
939 if [ ! -n "$PACKAGE" ]; then
940 beautify build_stage "Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
941 prepareenv
942 buildtoolchain
943 else
944 PACKAGENAME=${PACKAGE%.tar.gz}
945 beautify build_stage "Packaged toolchain compilation"
946 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
947 tar zxf $PACKAGE
948 prepareenv
949 else
950 exiterror "$PACKAGENAME md5 did not match, check downloaded package"
951 fi
952 fi
953 else
954 echo -n "Using installed toolchain" | tee -a $LOGFILE
955 beautify message SKIP
956 prepareenv
957 fi
958
959 beautify build_start
960 beautify build_stage "Building LFS"
961 buildbase
962
963 beautify build_stage "Building IPFire"
964 buildipfire
965
966 beautify build_stage "Building installer"
967 buildinstaller
968
969 beautify build_stage "Building packages"
970 buildpackages
971
972 beautify build_stage "Checking Logfiles for new Files"
973
974 cd $BASEDIR
975 tools/checknewlog.pl
976 tools/checkwronginitlinks
977 cd $PWD
978
979 beautify build_end
980 ;;
981 shell)
982 # enter a shell inside LFS chroot
983 # may be used to changed kernel settings
984 prepareenv
985 entershell
986 ;;
987 clean)
988 echo -en "${BOLD}Cleaning build directory...${NORMAL}"
989 for i in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
990 $LOSETUP -d $i 2>/dev/null
991 done
992 for i in `mount | grep $BASEDIR | cut -d " " -f 1`; do
993 umount $i
994 done
995 stdumount
996 for i in `seq 0 7`; do
997 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
998 umount /dev/loop${i} 2>/dev/null;
999 losetup -d /dev/loop${i} 2>/dev/null;
1000 fi;
1001 done
1002 rm -rf $BASEDIR/build
1003 rm -rf $BASEDIR/cdrom
1004 rm -rf $BASEDIR/packages
1005 rm -rf $BASEDIR/log
1006 if [ -h /tools ]; then
1007 rm -f /tools
1008 fi
1009 rm -f $BASEDIR/ipfire-*
1010 beautify message DONE
1011 ;;
1012 downloadsrc)
1013 if [ ! -d $BASEDIR/cache ]; then
1014 mkdir $BASEDIR/cache
1015 fi
1016 mkdir -p $BASEDIR/log
1017 echo -e "${BOLD}Preload all source files${NORMAL}" | tee -a $LOGFILE
1018 FINISHED=0
1019 cd $BASEDIR/lfs
1020 for c in `seq $MAX_RETRIES`; do
1021 if (( FINISHED==1 )); then
1022 break
1023 fi
1024 FINISHED=1
1025 cd $BASEDIR/lfs
1026 for i in *; do
1027 if [ -f "$i" -a "$i" != "Config" ]; then
1028 lfsmakecommoncheck ${i} || continue
1029
1030 make -s -f $i LFS_BASEDIR=$BASEDIR MACHINE=$MACHINE \
1031 MESSAGE="$i\t ($c/$MAX_RETRIES)" download >> $LOGFILE 2>&1
1032 if [ $? -ne 0 ]; then
1033 beautify message FAIL
1034 FINISHED=0
1035 else
1036 if [ $c -eq 1 ]; then
1037 beautify message DONE
1038 fi
1039 fi
1040 fi
1041 done
1042 done
1043 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
1044 ERROR=0
1045 for i in *; do
1046 if [ -f "$i" -a "$i" != "Config" ]; then
1047 lfsmakecommoncheck ${i} > /dev/null || continue
1048 make -s -f $i LFS_BASEDIR=$BASEDIR MACHINE=$MACHINE \
1049 MESSAGE="$i\t " md5 >> $LOGFILE 2>&1
1050 if [ $? -ne 0 ]; then
1051 echo -ne "MD5 difference in lfs/$i"
1052 beautify message FAIL
1053 ERROR=1
1054 fi
1055 fi
1056 done
1057 if [ $ERROR -eq 0 ]; then
1058 echo -ne "${BOLD}all files md5sum match${NORMAL}"
1059 beautify message DONE
1060 else
1061 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
1062 beautify message FAIL
1063 fi
1064 cd - >/dev/null 2>&1
1065 ;;
1066 toolchain)
1067 clear
1068 prepareenv
1069 beautify build_stage "Toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
1070 buildtoolchain
1071 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $MACHINE" | tee -a $LOGFILE
1072 test -d $BASEDIR/cache/toolchains || mkdir -p $BASEDIR/cache/toolchains
1073 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.tar.gz \
1074 build/tools build/bin/sh log >> $LOGFILE
1075 md5sum cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.tar.gz \
1076 > cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.md5
1077 stdumount
1078 ;;
1079 gettoolchain)
1080 # arbitrary name to be updated in case of new toolchain package upload
1081 PACKAGE=$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE
1082 if [ ! -f $BASEDIR/cache/toolchains/$PACKAGE.tar.gz ]; then
1083 URL_TOOLCHAIN=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
1084 test -d $BASEDIR/cache/toolchains || mkdir -p $BASEDIR/cache/toolchains
1085 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $MACHINE" | tee -a $LOGFILE
1086 cd $BASEDIR/cache/toolchains
1087 wget -U "IPFireSourceGrabber/2.x" $URL_TOOLCHAIN/$PACKAGE.tar.gz $URL_TOOLCHAIN/$PACKAGE.md5 >& /dev/null
1088 if [ $? -ne 0 ]; then
1089 echo "`date -u '+%b %e %T'`: error downloading $PACKAGE toolchain for $MACHINE machine" | tee -a $LOGFILE
1090 else
1091 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
1092 echo "`date -u '+%b %e %T'`: toolchain md5 ok" | tee -a $LOGFILE
1093 else
1094 exiterror "$PACKAGE.md5 did not match, check downloaded package"
1095 fi
1096 fi
1097 else
1098 echo "Toolchain is already downloaded. Exiting..."
1099 fi
1100 ;;
1101 othersrc)
1102 prepareenv
1103 echo -ne "`date -u '+%b %e %T'`: Build sources iso for $MACHINE" | tee -a $LOGFILE
1104 chroot $LFS /tools/bin/env -i HOME=/root \
1105 TERM=$TERM PS1='\u:\w\$ ' \
1106 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
1107 VERSION=$VERSION NAME="$NAME" SNAME="$SNAME" MACHINE=$MACHINE \
1108 /bin/bash -x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
1109 mv $LFS/install/images/ipfire-* $BASEDIR >> $LOGFILE 2>&1
1110 if [ $? -eq "0" ]; then
1111 beautify message DONE
1112 else
1113 beautify message FAIL
1114 fi
1115 stdumount
1116 ;;
1117 uploadsrc)
1118 PWD=`pwd`
1119 if [ -z $IPFIRE_USER ]; then
1120 echo -n "You have to setup IPFIRE_USER first. See .config for details."
1121 beautify message FAIL
1122 exit 1
1123 fi
1124
1125 URL_SOURCE=$(grep URL_SOURCE lfs/Config | awk '{ print $3 }')
1126 REMOTE_FILES=$(echo "ls -1" | sftp -C ${IPFIRE_USER}@${URL_SOURCE})
1127
1128 for file in ${BASEDIR}/cache/*; do
1129 [ -d "${file}" ] && continue
1130 grep -q "$(basename ${file})" <<<$REMOTE_FILES && continue
1131 NEW_FILES="$NEW_FILES $file"
1132 done
1133 [ -n "$NEW_FILES" ] && scp -2 $NEW_FILES ${IPFIRE_USER}@${URL_SOURCE}
1134 cd $BASEDIR
1135 cd $PWD
1136 exit 0
1137 ;;
1138 lang)
1139 update_langs
1140 ;;
1141 *)
1142 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1143 cat doc/make.sh-usage
1144 ;;
1145 esac