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