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