]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - make.sh
pakfire3-builddeps: add libsatsolver and python-satsolver.
[people/pmueller/ipfire-2.x.git] / make.sh
CommitLineData
df5e82b3 1#!/bin/bash
df5e82b3
MT
2############################################################################
3# #
f8e5510c 4# This file is part of the IPFire Firewall. #
df5e82b3 5# #
f8e5510c 6# IPFire is free software; you can redistribute it and/or modify #
df5e82b3
MT
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation; either version 2 of the License, or #
9# (at your option) any later version. #
10# #
f8e5510c 11# IPFire is distributed in the hope that it will be useful, #
df5e82b3
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
f8e5510c 17# along with IPFire; if not, write to the Free Software #
df5e82b3
MT
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19# #
76512325 20# Copyright (C) 2007-2011 IPFire-Team <info@ipfire.org>. #
df5e82b3
MT
21# #
22############################################################################
df5e82b3
MT
23#
24
e8ee3199
AF
25NAME="IPFire" # Software name
26SNAME="ipfire" # Short name
9e9fca31 27VERSION="2.9" # Version number
2d84d37a 28CORE="49" # Core Level (Filename)
76512325 29PAKFIRE_CORE="48" # Core Level (PAKFIRE)
e8ee3199
AF
30GIT_BRANCH=`git status | head -n1 | cut -d" " -f4` # Git Branch
31SLOGAN="www.ipfire.org" # Software slogan
32CONFIG_ROOT=/var/ipfire # Configuration rootdir
33NICE=10 # Nice level
34MAX_RETRIES=1 # prefetch/check loop
d7cd8ad9 35BUILD_IMAGES=1 # Build USB, Flash and Xen Images
15679d9f
MT
36KVER=`grep --max-count=1 VER lfs/linux | awk '{ print $3 }'`
37MACHINE=`uname -m`
e8ee3199
AF
38GIT_TAG=$(git tag | tail -1) # Git Tag
39GIT_LASTCOMMIT=$(git log | head -n1 | cut -d" " -f2 |head -c8) # Last commit
38c982bb 40TOOLCHAINVER=1
8f7b33ea 41IPFVER="full" # Which versions should be compiled? (full|devel)
03ad5f93 42
94571564
AF
43BUILDMACHINE=$MACHINE
44 if [ "$MACHINE" = "x86_64" ]; then
45 BUILDMACHINE="i686";
46 linux32="linux32";
47 fi
48
49
15679d9f
MT
50# Debian specific settings
51if [ ! -e /etc/debian_version ]; then
df5e82b3 52 FULLPATH=`which $0`
15679d9f 53else
df5e82b3
MT
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
15679d9f 60fi
df5e82b3 61
15679d9f
MT
62PWD=`pwd`
63BASENAME=`basename $0`
64BASEDIR=`echo $FULLPATH | sed "s/\/$BASENAME//g"`
65LOGFILE=$BASEDIR/log/_build.preparation.log
66export BASEDIR LOGFILE
67DIR_CHK=$BASEDIR/cache/check
68mkdir $BASEDIR/log/ 2>/dev/null
df5e82b3 69
15679d9f
MT
70# Include funtions
71. tools/make-functions
df5e82b3 72
15679d9f
MT
73if [ -f .config ]; then
74 . .config
75else
6b8cff41
MT
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
15679d9f 83fi
df5e82b3 84
483b7768
MT
85if [ -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."
94fi
95
df5e82b3
MT
96prepareenv() {
97 ############################################################################
98 # #
99 # Are we running the right shell? #
100 # #
101 ############################################################################
102 if [ ! "$BASH" ]; then
1b273e8f 103 exiterror "BASH environment variable is not set. You're probably running the wrong shell."
df5e82b3
MT
104 fi
105
106 if [ -z "${BASH_VERSION}" ]; then
1b273e8f 107 exiterror "Not running BASH shell."
df5e82b3
MT
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 ############################################################################
9b0ff0a0 124 echo -ne "Resetting our nice level to $NICE" | tee -a $LOGFILE
df5e82b3
MT
125 renice $NICE $$ > /dev/null
126 if [ `nice` != "$NICE" ]; then
1b273e8f
MT
127 beautify message FAIL
128 exiterror "Failed to set correct nice level"
15679d9f 129 else
1b273e8f 130 beautify message DONE
df5e82b3
MT
131 fi
132
15679d9f 133
df5e82b3
MT
134 ############################################################################
135 # #
136 # Checking if running as root user #
137 # #
138 ############################################################################
9b0ff0a0 139 echo -ne "Checking if we're running as root user" | tee -a $LOGFILE
df5e82b3 140 if [ `id -u` != 0 ]; then
1b273e8f
MT
141 beautify message FAIL
142 exiterror "Not building as root"
15679d9f 143 else
1b273e8f 144 beautify message DONE
df5e82b3
MT
145 fi
146
147
148 ############################################################################
149 # #
150 # Checking for necessary temporary space #
151 # #
152 ############################################################################
9b0ff0a0 153 echo -ne "Checking for necessary space on disk $BASE_DEV" | tee -a $LOGFILE
df5e82b3
MT
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 }'`
41921bd9 156 if (( 2048000 > $BASE_ASPACE )); then
1b273e8f
MT
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
15679d9f 162 else
1b273e8f 163 beautify message DONE
df5e82b3
MT
164 fi
165
166 ############################################################################
167 # #
168 # Building Linux From Scratch system #
169 # #
170 ############################################################################
df5e82b3
MT
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
1b273e8f 182 ln -s $BASEDIR/build/tools /
df5e82b3
MT
183 fi
184 if [ ! -h /tools ]; then
1b273e8f 185 exiterror "Could not create /tools symbolic link."
df5e82b3
MT
186 fi
187
188 # Setup environment
189 set +h
190 LC_ALL=POSIX
e4e74858
CS
191 if [ -z $MAKETUNING ]; then
192 MAKETUNING="-j6"
193 fi
dd714b8a 194 export LFS LC_ALL CFLAGS CXXFLAGS MAKETUNING
df5e82b3
MT
195 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
196
197 # Make some extra directories
198 mkdir -p $BASEDIR/build/{tools,etc,usr/src} 2>/dev/null
90d372c4 199 mkdir -p $BASEDIR/build/{dev/{shm,pts},proc,sys}
df5e82b3 200 mkdir -p $BASEDIR/{cache,ccache} 2>/dev/null
90d372c4
MT
201 mkdir -p $BASEDIR/build/usr/src/{cache,config,doc,html,langs,lfs,log,src,ccache}
202
203 mknod -m 600 $BASEDIR/build/dev/console c 5 1 2>/dev/null
204 mknod -m 666 $BASEDIR/build/dev/null c 1 3 2>/dev/null
df5e82b3
MT
205
206 # Make all sources and proc available under lfs build
90d372c4 207 mount --bind /dev $BASEDIR/build/dev
857d9bf2
MT
208 mount --bind /dev/pts $BASEDIR/build/dev/pts
209 mount --bind /dev/shm $BASEDIR/build/dev/shm
210 mount --bind /proc $BASEDIR/build/proc
211 mount --bind /sys $BASEDIR/build/sys
df5e82b3
MT
212 mount --bind $BASEDIR/cache $BASEDIR/build/usr/src/cache
213 mount --bind $BASEDIR/ccache $BASEDIR/build/usr/src/ccache
214 mount --bind $BASEDIR/config $BASEDIR/build/usr/src/config
215 mount --bind $BASEDIR/doc $BASEDIR/build/usr/src/doc
216 mount --bind $BASEDIR/html $BASEDIR/build/usr/src/html
217 mount --bind $BASEDIR/langs $BASEDIR/build/usr/src/langs
218 mount --bind $BASEDIR/lfs $BASEDIR/build/usr/src/lfs
219 mount --bind $BASEDIR/log $BASEDIR/build/usr/src/log
220 mount --bind $BASEDIR/src $BASEDIR/build/usr/src/src
221
119ee469 222 # This is a temporary hack!!!
6b8cff41
MT
223 if [ ! -f /tools/bin/hostname ]; then
224 cp -f /bin/hostname /tools/bin/hostname 2>/dev/null
225 fi
119ee469 226
df5e82b3
MT
227 # Run LFS static binary creation scripts one by one
228 export CCACHE_DIR=$BASEDIR/ccache
36d351ff 229 export CCACHE_COMPRESS=1
df5e82b3
MT
230 export CCACHE_HASHDIR=1
231
232 # Remove pre-install list of installed files in case user erase some files before rebuild
233 rm -f $BASEDIR/build/usr/src/lsalr 2>/dev/null
234}
235
df5e82b3 236buildtoolchain() {
2b4cacd2 237 if [ "$(uname -m)" = "x86_64" ]; then
94571564
AF
238 exiterror "Cannot build toolchain on x86_64. Please use the download."
239 fi
2b4cacd2
AF
240 if [ "$(uname -r | grep ipfire)" ]; then
241 exiterror "Cannot build toolchain on ipfire. Please use the download."
242 fi
94571564 243
df5e82b3
MT
244 LOGFILE="$BASEDIR/log/_build.toolchain.log"
245 export LOGFILE
df5e82b3
MT
246 ORG_PATH=$PATH
247 NATIVEGCC=`gcc --version | grep GCC | awk {'print $3'}`
248 export NATIVEGCC GCCmajor=${NATIVEGCC:0:1} GCCminor=${NATIVEGCC:2:1} GCCrelease=${NATIVEGCC:4:1}
cfeeb42f 249 lfsmake1 ccache PASS=1
15679d9f
MT
250 lfsmake1 binutils PASS=1
251 lfsmake1 gcc PASS=1
df5e82b3 252 export PATH=$BASEDIR/build/usr/local/bin:$BASEDIR/build/tools/bin:$PATH
dd714b8a
MT
253 lfsmake1 linux-libc-header
254 lfsmake1 glibc
9b0ff0a0 255 lfsmake1 cleanup-toolchain PASS=1
df5e82b3
MT
256 lfsmake1 tcl
257 lfsmake1 expect
df5e82b3 258 lfsmake1 dejagnu
15679d9f
MT
259 lfsmake1 gcc PASS=2
260 lfsmake1 binutils PASS=2
cfeeb42f 261 lfsmake1 ccache PASS=2
dd714b8a
MT
262 lfsmake1 ncurses
263 lfsmake1 bash
df5e82b3 264 lfsmake1 bzip2
dd714b8a 265 lfsmake1 coreutils
df5e82b3
MT
266 lfsmake1 diffutils
267 lfsmake1 findutils
dd714b8a 268 lfsmake1 gawk
df5e82b3 269 lfsmake1 gettext
dd714b8a
MT
270 lfsmake1 grep
271 lfsmake1 gzip
272 lfsmake1 m4
273 lfsmake1 make
df5e82b3 274 lfsmake1 patch
dd714b8a
MT
275 lfsmake1 perl
276 lfsmake1 sed
df5e82b3
MT
277 lfsmake1 tar
278 lfsmake1 texinfo
df5e82b3 279 lfsmake1 util-linux
9b0ff0a0 280 lfsmake1 cleanup-toolchain PASS=2
df5e82b3
MT
281 export PATH=$ORG_PATH
282}
283
284buildbase() {
285 LOGFILE="$BASEDIR/log/_build.base.log"
286 export LOGFILE
df5e82b3 287 lfsmake2 stage2
9b0ff0a0 288 lfsmake2 linux-libc-header
df5e82b3
MT
289 lfsmake2 man-pages
290 lfsmake2 glibc
9b0ff0a0 291 lfsmake2 cleanup-toolchain PASS=3
df5e82b3
MT
292 lfsmake2 binutils
293 lfsmake2 gcc
9b0ff0a0 294 lfsmake2 berkeley
df5e82b3 295 lfsmake2 coreutils
df5e82b3 296 lfsmake2 iana-etc
df5e82b3
MT
297 lfsmake2 m4
298 lfsmake2 bison
9b0ff0a0
MT
299 lfsmake2 ncurses
300 lfsmake2 procps
df5e82b3 301 lfsmake2 sed
9b0ff0a0 302 lfsmake2 libtool
df5e82b3 303 lfsmake2 perl
9b0ff0a0
MT
304 lfsmake2 readline
305 lfsmake2 zlib
df5e82b3
MT
306 lfsmake2 autoconf
307 lfsmake2 automake
308 lfsmake2 bash
df5e82b3
MT
309 lfsmake2 bzip2
310 lfsmake2 diffutils
df5e82b3 311 lfsmake2 e2fsprogs
65998e0a 312 lfsmake2 ed
9b0ff0a0
MT
313 lfsmake2 file
314 lfsmake2 findutils
315 lfsmake2 flex
9b0ff0a0
MT
316 lfsmake2 gawk
317 lfsmake2 gettext
318 lfsmake2 grep
319 lfsmake2 groff
df5e82b3 320 lfsmake2 gzip
9b0ff0a0
MT
321 lfsmake2 inetutils
322 lfsmake2 iproute2
323 lfsmake2 kbd
324 lfsmake2 less
44254afd 325 lfsmake2 libaal
df5e82b3 326 lfsmake2 make
9b0ff0a0
MT
327 lfsmake2 man
328 lfsmake2 mktemp
fc6ae4c6 329 lfsmake2 module-init-tools
65998e0a 330 lfsmake2 net-tools
df5e82b3 331 lfsmake2 patch
df5e82b3 332 lfsmake2 psmisc
44254afd 333 lfsmake2 reiser4progs
df5e82b3
MT
334 lfsmake2 shadow
335 lfsmake2 sysklogd
336 lfsmake2 sysvinit
337 lfsmake2 tar
90d372c4
MT
338 lfsmake2 texinfo
339 lfsmake2 udev
df5e82b3 340 lfsmake2 util-linux
90d372c4 341 lfsmake2 vim
44254afd 342 lfsmake2 grub
df5e82b3
MT
343}
344
15679d9f 345buildipfire() {
907cd036 346 LOGFILE="$BASEDIR/log/_build.ipfire.log"
df5e82b3 347 export LOGFILE
15679d9f 348 ipfiremake configroot
dc8b9670 349 ipfiremake backup
15679d9f
MT
350 ipfiremake dhcp
351 ipfiremake dhcpcd
352 ipfiremake libusb
353 ipfiremake libpcap
15679d9f 354 ipfiremake ppp
a456f23e 355 ipfiremake pptp
15679d9f 356 ipfiremake unzip
2b2e03ed 357 ipfiremake which
f9f02777 358 ipfiremake xz
443aece5 359 ipfiremake linux-firmware
82094b55 360 ipfiremake linux XEN=1
82094b55 361 ipfiremake kqemu XEN=1
82094b55
AF
362 ipfiremake v4l-dvb XEN=1
363 ipfiremake madwifi XEN=1
b29c22a4 364 ipfiremake mISDN XEN=1
b6541fec 365 ipfiremake dahdi XEN=1 KMOD=1
6803ea59 366 ipfiremake cryptodev XEN=1
006ffcfe 367 ipfiremake compat-wireless XEN=1
fad85501
AF
368 ipfiremake r8169 XEN=1
369 ipfiremake r8168 XEN=1
370 ipfiremake r8101 XEN=1
17963c73
AF
371 ipfiremake e1000 XEN=1
372 ipfiremake e1000e XEN=1
91727233 373 ipfiremake igb XEN=1
26c1cc71
AF
374 ipfiremake linux PAE=1
375 ipfiremake kqemu PAE=1
376 ipfiremake kvm-kmod PAE=1
377 ipfiremake v4l-dvb PAE=1
378 ipfiremake madwifi PAE=1
379 ipfiremake alsa PAE=1 KMOD=1
380 ipfiremake mISDN PAE=1
381 ipfiremake dahdi PAE=1 KMOD=1
382 ipfiremake cryptodev PAE=1
383 ipfiremake compat-wireless PAE=1
fbe259ce
AF
384# ipfiremake r8169 PAE=1
385# ipfiremake r8168 PAE=1
386# ipfiremake r8101 PAE=1
26c1cc71
AF
387 ipfiremake e1000 PAE=1
388 ipfiremake e1000e PAE=1
389 ipfiremake igb PAE=1
c3e36980 390 ipfiremake linux
f08494d7 391 ipfiremake kqemu
c6550525 392 ipfiremake kvm-kmod
2a8c4fcb 393 ipfiremake v4l-dvb
fad7b108 394 ipfiremake madwifi
027306bf 395 ipfiremake alsa KMOD=1
b29c22a4 396 ipfiremake mISDN
b6541fec 397 ipfiremake dahdi KMOD=1
6803ea59 398 ipfiremake cryptodev
9a34a05c 399 ipfiremake compat-wireless
fbe259ce
AF
400# ipfiremake r8169
401# ipfiremake r8168
402# ipfiremake r8101
17963c73
AF
403 ipfiremake e1000
404 ipfiremake e1000e
91727233 405 ipfiremake igb
c545beb1 406 ipfiremake pkg-config
a89770fa 407 ipfiremake linux-atm
ad9d4caf 408 ipfiremake cpio
6cf9e770
AF
409
410 installmake strip
411
41c0d0ca 412 ipfiremake dracut
15679d9f
MT
413 ipfiremake expat
414 ipfiremake gdbm
415 ipfiremake gmp
c8ead4a5 416 ipfiremake pam
e4e74858 417 ipfiremake openssl
eac942d9 418 ipfiremake curl
404094ce 419 ipfiremake tcl
1916a97e 420 ipfiremake sqlite
15679d9f 421 ipfiremake python
01d103a9 422 ipfiremake fireinfo
15679d9f 423 ipfiremake libnet
999d55de 424 ipfiremake libnl
27b8cc24 425 ipfiremake libidn
ddac6087 426 ipfiremake libjpeg
15679d9f
MT
427 ipfiremake libpng
428 ipfiremake libtiff
fd3e7da0 429 ipfiremake libart
9594506f 430 ipfiremake freetype
15679d9f
MT
431 ipfiremake gd
432 ipfiremake popt
411afd1f 433 ipfiremake pcre
15679d9f
MT
434 ipfiremake slang
435 ipfiremake newt
5e8b8362 436 ipfiremake attr
989a31e2 437 ipfiremake acl
fd3e7da0 438 ipfiremake libcap
15679d9f 439 ipfiremake pciutils
51f3b7f5 440 ipfiremake usbutils
15679d9f 441 ipfiremake libxml2
c6c9630e 442 ipfiremake libxslt
6b8cff41 443 ipfiremake BerkeleyDB
15679d9f 444 ipfiremake mysql
411afd1f 445 ipfiremake cyrus-sasl
15679d9f
MT
446 ipfiremake openldap
447 ipfiremake apache2
448 ipfiremake php
a10ae6cc 449 ipfiremake apache2 PASS=C
15679d9f
MT
450 ipfiremake arping
451 ipfiremake beep
452 ipfiremake bind
15679d9f
MT
453 ipfiremake cdrtools
454 ipfiremake dnsmasq
455 ipfiremake dosfstools
72d80898 456 ipfiremake reiserfsprogs
e0c749da 457 ipfiremake xfsprogs
93afd047 458 ipfiremake sysfsutils
8e055e65 459 ipfiremake fuse
d02350a2 460 ipfiremake ntfs-3g
15679d9f
MT
461 ipfiremake ethtool
462 ipfiremake ez-ipupdate
463 ipfiremake fcron
e3670217 464 ipfiremake perl-GD
330345c2 465 ipfiremake GD-Graph
786f2c8a 466 ipfiremake GD-TextUtil
15679d9f
MT
467 ipfiremake gnupg
468 ipfiremake hdparm
f9956330 469 ipfiremake sdparm
7861f575 470 ipfiremake mtools
15679d9f 471 ipfiremake initscripts
406f019f 472 ipfiremake whatmask
15679d9f 473 ipfiremake iptables
490256d5 474 ipfiremake libupnp
15679d9f 475 ipfiremake ipaddr
15679d9f 476 ipfiremake iptstate
fd3e7da0 477 ipfiremake iputils
15679d9f 478 ipfiremake l7-protocols
d644d86f 479 ipfiremake mISDNuser
83bac7f3 480 ipfiremake capi4k-utils
93afd047 481 ipfiremake hwdata
72d80898 482 ipfiremake kudzu
15679d9f
MT
483 ipfiremake logrotate
484 ipfiremake logwatch
15679d9f 485 ipfiremake misc-progs
15679d9f 486 ipfiremake nano
15679d9f
MT
487 ipfiremake nasm
488 ipfiremake URI
489 ipfiremake HTML-Tagset
490 ipfiremake HTML-Parser
491 ipfiremake Compress-Zlib
492 ipfiremake Digest
493 ipfiremake Digest-SHA1
494 ipfiremake Digest-HMAC
495 ipfiremake libwww-perl
496 ipfiremake Net-DNS
497 ipfiremake Net-IPv4Addr
498 ipfiremake Net_SSLeay
499 ipfiremake IO-Stringy
500 ipfiremake Unix-Syslog
501 ipfiremake Mail-Tools
502 ipfiremake MIME-Tools
503 ipfiremake Net-Server
504 ipfiremake Convert-TNEF
505 ipfiremake Convert-UUlib
506 ipfiremake Archive-Tar
507 ipfiremake Archive-Zip
508 ipfiremake Text-Tabs+Wrap
509 ipfiremake Locale-Country
93afd047 510 ipfiremake XML-Parser
87b91593
MT
511 ipfiremake python-setuptools
512 ipfiremake python-clientform
513 ipfiremake python-mechanize
514 ipfiremake python-feedparser
515 ipfiremake python-rssdler
c5568d64 516 ipfiremake glib
15679d9f
MT
517 ipfiremake GeoIP
518 ipfiremake fwhits
519 ipfiremake noip_updater
520 ipfiremake ntp
15679d9f 521 ipfiremake openssh
15679d9f
MT
522 ipfiremake rrdtool
523 ipfiremake setserial
524 ipfiremake setup
853b7559
CS
525 ipfiremake libdnet
526 ipfiremake daq
15679d9f 527 ipfiremake snort
8a5604bf 528 ipfiremake oinkmaster
15679d9f 529 ipfiremake squid
15679d9f 530 ipfiremake squidguard
069ae085 531 ipfiremake calamaris
f4c3f459 532 ipfiremake tcpdump
15679d9f
MT
533 ipfiremake traceroute
534 ipfiremake vlan
535 ipfiremake wireless
536 ipfiremake libsafe
15679d9f 537 ipfiremake pakfire
15679d9f 538 ipfiremake java
15679d9f
MT
539 ipfiremake spandsp
540 ipfiremake lzo
541 ipfiremake openvpn
15679d9f 542 ipfiremake pammysql
15679d9f 543 ipfiremake cups
fccb3371
MT
544 ipfiremake ghostscript
545 ipfiremake foomatic
2231d107 546 ipfiremake hplip
15679d9f
MT
547 ipfiremake samba
548 ipfiremake sudo
549 ipfiremake mc
550 ipfiremake wget
15679d9f
MT
551 ipfiremake bridge-utils
552 ipfiremake screen
553 ipfiremake hddtemp
554 ipfiremake smartmontools
555 ipfiremake htop
15679d9f 556 ipfiremake postfix
15679d9f 557 ipfiremake fetchmail
5ad5a6bc 558 ipfiremake cyrus-imapd
58493e1e 559 ipfiremake openmailadmin
15679d9f 560 ipfiremake clamav
15679d9f 561 ipfiremake spamassassin
fd3e7da0 562 ipfiremake amavisd
0708852c 563 ipfiremake alsa
a28fdc01 564 ipfiremake mpfire
6c98857b 565 ipfiremake guardian
67081922 566 ipfiremake libid3tag
15679d9f
MT
567 ipfiremake libmad
568 ipfiremake libogg
569 ipfiremake libvorbis
3de6d1b9 570 ipfiremake libdvbpsi
15679d9f 571 ipfiremake lame
15679d9f 572 ipfiremake sox
a6931e7e 573 ipfiremake libshout
0dde24fa
MT
574 ipfiremake xvid
575 ipfiremake libmpeg2
3926e90d 576 ipfiremake cmake
15679d9f 577 ipfiremake gnump3d
eac942d9 578 ipfiremake libsigc++
15679d9f 579 ipfiremake applejuice
eac942d9
MT
580 ipfiremake libtorrent
581 ipfiremake rtorrent
06209efc 582 ipfiremake ipfireseeder
15679d9f
MT
583 ipfiremake rsync
584 ipfiremake tcpwrapper
ea5ac96b 585 ipfiremake libevent
15679d9f
MT
586 ipfiremake portmap
587 ipfiremake nfs
588 ipfiremake nmap
15679d9f 589 ipfiremake ncftp
15679d9f 590 ipfiremake etherwake
06da1292 591 ipfiremake bwm-ng
1a8688ba
MT
592 ipfiremake tripwire
593 ipfiremake sysstat
a08c3a2e 594 ipfiremake vsftpd
6652626c 595 ipfiremake strongswan
186e3d2c 596 ipfiremake lsof
3fcb086e 597 ipfiremake centerim
d83f547d 598 ipfiremake br2684ctl
bb565aa4 599 ipfiremake pcmciautils
87846bb3 600 ipfiremake lm_sensors
7c7ea34a 601 ipfiremake liboping
a332b303 602 ipfiremake collectd
3fcb086e 603 ipfiremake lcd4linux
03129a5b 604 ipfiremake teamspeak
3495f7ba 605 ipfiremake elinks
3fcb086e 606 ipfiremake igmpproxy
47d36d8e 607 ipfiremake fbset
bc38ecd0
MT
608 ipfiremake sdl
609 ipfiremake qemu
7b4c664b 610 ipfiremake qemu-kqemu
08fc1a19 611 ipfiremake sane
b332d4ea
AF
612 ipfiremake netpbm
613 ipfiremake phpSANE
f8abcd46 614 ipfiremake tunctl
3fcb086e 615 ipfiremake nagios
eb20e136 616 ipfiremake ebtables
debeaeaa
AF
617 ipfiremake fontconfig
618 ipfiremake freefont
78c655ac
AF
619 ipfiremake directfb
620 ipfiremake dfb++
03df93e9 621 ipfiremake faad2
4dab22a1 622 ipfiremake ffmpeg
9232685b 623 ipfiremake videolan
debeaeaa 624 ipfiremake vdr
9dd15f03 625 ipfiremake w_scan
4276eb31
AF
626 ipfiremake icecast
627 ipfiremake icegenerator
628 ipfiremake mpd
48d52263 629 ipfiremake libmpdclient
4276eb31 630 ipfiremake mpc
77a2f0af 631 ipfiremake git
3900a6c7 632 ipfiremake squidclamav
3926e90d 633 ipfiremake bc
6c33dc5c
AF
634 ipfiremake vnstat
635 ipfiremake vnstati
999d55de 636 ipfiremake iw
fad7b108 637 ipfiremake wpa_supplicant
d0817963 638 ipfiremake hostapd
396eca1a 639 ipfiremake urlgrabber
1596f7ff 640 ipfiremake syslinux
d49c3993 641 ipfiremake tftpd
d2c65e37 642 ipfiremake cpufrequtils
2c1b94f0 643 ipfiremake dbus
44e8a23a 644 ipfiremake bluetooth
95257a66 645 ipfiremake gutenprint
4e464f98 646 ipfiremake apcupsd
034a390e
DG
647 ipfiremake iperf
648 ipfiremake netcat
3799d284 649 ipfiremake 7zip
1aa810ea 650 ipfiremake lynis
050080d6 651 ipfiremake splix
c268aebd 652 ipfiremake streamripper
18163ef2 653 ipfiremake sshfs
52fbfb8c 654 ipfiremake taglib
03ca2036 655 ipfiremake mediatomb
d0515b01 656 ipfiremake sslh
f902119c 657 ipfiremake perl-gettext
c0b229ae 658 ipfiremake vdradmin
791b2270 659 ipfiremake miau
e8a78762 660 ipfiremake netsnmpd
cc3f6e5c 661 ipfiremake perl-DBI
880cb343 662 ipfiremake perl-DBD-mysql
31f3654f 663 ipfiremake cacti
c34f282e 664 ipfiremake icecc
a075b9c5 665 ipfiremake openvmtools
91d539ab 666 ipfiremake nagiosql
653bee2b 667 ipfiremake iftop
f4c3f459 668 ipfiremake motion
245e26c9 669 ipfiremake joe
ffc22d72 670 ipfiremake nut
3f4aa73d 671 ipfiremake watchdog
b6541fec
AF
672 ipfiremake libpri
673 ipfiremake dahdi
674 ipfiremake asterisk
675 ipfiremake lcr
3fc69b3e 676 ipfiremake usb_modeswitch
d1c956e8 677 ipfiremake usb_modeswitch_data
dfc4bc56 678 ipfiremake zerofree
aff78c96 679 ipfiremake mdadm
3c950d61 680 ipfiremake eject
6b406afb 681 ipfiremake pound
7afbf8c4 682 ipfiremake minicom
69e29b22 683 ipfiremake ddrescue
aac0f711 684 ipfiremake imspector
e9581f09 685 ipfiremake miniupnpd
35f90335 686 ipfiremake client175
aafa82e7 687 ipfiremake powertop
5d547072 688 ipfiremake parted
ff305ff7
AF
689 ipfiremake swig
690 ipfiremake python-m2crypto
691 ipfiremake crda
93aa811e 692 ipfiremake libsatsolver
bb1f4afa 693 ipfiremake python-satsolver
ce457e7f 694 ipfiremake python-distutils-extra
32c95e11 695 ipfiremake python-lzma
8ce0db7c
AF
696 ipfiremake python-progressbar
697 ipfiremake python-xattr
410d03d7
AF
698 ipfiremake intltool
699 ipfiremake pakfire3-deps
6796a869
AF
700 echo Build on $HOSTNAME > $BASEDIR/build/var/ipfire/firebuild
701 cat /proc/version >> $BASEDIR/build/var/ipfire/firebuild
702 echo >> $BASEDIR/build/var/ipfire/firebuild
703 git log -1 >> $BASEDIR/build/var/ipfire/firebuild
704 echo >> $BASEDIR/build/var/ipfire/firebuild
705 git status >> $BASEDIR/build/var/ipfire/firebuild
706 echo >> $BASEDIR/build/var/ipfire/firebuild
707 cat /proc/cpuinfo >> $BASEDIR/build/var/ipfire/firebuild
e8ee3199 708 echo $PAKFIRE_CORE > $BASEDIR/build/opt/pakfire/db/core/mine
bfc35ba2 709 if [ "$GIT_BRANCH" = "master" ]; then
e8ee3199
AF
710 echo "$NAME $VERSION - (Development Build: $GIT_LASTCOMMIT)" > $BASEDIR/build/etc/system-release
711 else
712 echo "$NAME $VERSION - $GIT_BRANCH" > $BASEDIR/build/etc/system-release
713 fi
d0817963 714}
df5e82b3
MT
715
716buildinstaller() {
717 # Run installer scripts one by one
718 LOGFILE="$BASEDIR/log/_build.installer.log"
719 export LOGFILE
4dc82852
MT
720 ipfiremake as86
721 ipfiremake mbr
fd0763dc 722 ipfiremake memtest
6cf9e770 723 ipfiremake installer
e0bbaf87 724 cp -f $BASEDIR/doc/COPYING $BASEDIR/build/install/initrd/
6cf9e770
AF
725 installmake strip
726 ipfiremake initrd
df5e82b3
MT
727}
728
729buildpackages() {
730 LOGFILE="$BASEDIR/log/_build.packages.log"
731 export LOGFILE
732 echo "... see detailed log in _build.*.log files" >> $LOGFILE
0fbb45e9 733
df5e82b3
MT
734
735 # Generating list of packages used
0fbb45e9 736 echo -n "Generating packages list from logs" | tee -a $LOGFILE
df5e82b3
MT
737 rm -f $BASEDIR/doc/packages-list
738 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
739 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
7471f6ab 740 echo "* `basename $i`" >>$BASEDIR/doc/packages-list
df5e82b3
MT
741 fi
742 done
7471f6ab 743 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc/packages-list.txt
4fe9acb2 744 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$\|install1$\|install2$\|pass1$\|pass2$\|pass3$' \
df5e82b3
MT
745 $BASEDIR/doc/packages-list | sort >> $BASEDIR/doc/packages-list.txt
746 rm -f $BASEDIR/doc/packages-list
c9673262 747 # packages-list.txt is ready to be displayed for wiki page
0fbb45e9 748 beautify message DONE
4b06f504
MT
749
750 # Update changelog
e49f7f0d 751 cd $BASEDIR
4b06f504 752 $0 git log
df5e82b3 753
9607771a 754 # Create images for install
dc2c6412 755 ipfiremake cdrom ED=$IPFVER
bada0832 756
4dc82852 757 # Check if there is a loop device for building in virtual environments
823c2183 758 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev/loop/0 ] || [ -e /dev/loop0 ]); then
dc2c6412 759 ipfiremake usb-stick ED=$IPFVER
52ca8220 760 ipfiremake flash-images ED=$IPFVER
4dc82852 761 fi
c9673262 762
f0fc8807 763 mv $LFS/install/images/{*.iso,*.tgz,*.img.gz,*.bz2} $BASEDIR >> $LOGFILE 2>&1
c9673262 764
0d909a4a 765 ipfirepackages
e67a57fe 766
82094b55 767 # Check if there is a loop device for building in virtual environments
823c2183 768 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev/loop/0 ] || [ -e /dev/loop0 ]); then
82094b55
AF
769 cp -f $BASEDIR/packages/linux-xen-*.ipfire $LFS/install/packages/
770 cp -f $BASEDIR/packages/meta-linux-xen $LFS/install/packages/
771 ipfiremake xen-image ED=$IPFVER
772 rm -rf $LFS/install/packages/linux-xen-*.ipfire
773 rm -rf $LFS/install/packages/meta-linux-xen
774 fi
939c2a21 775 mv $LFS/install/images/*.bz2 $BASEDIR >> $LOGFILE 2>&1
bada0832 776
b307417f
AF
777 cd $BASEDIR
778 for i in `ls *.bz2 *.img.gz *.iso`; do
779 md5sum $i > $i.md5
780 done
781 cd $PWD
782
e67a57fe
MT
783 # Cleanup
784 stdumount
785 rm -rf $BASEDIR/build/tmp/*
786
787 # Generating total list of files
0d909a4a 788 echo -n "Generating files list from logs" | tee -a $LOGFILE
e67a57fe
MT
789 rm -f $BASEDIR/log/FILES
790 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
791 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
792 echo "##" >>$BASEDIR/log/FILES
793 echo "## `basename $i`" >>$BASEDIR/log/FILES
794 echo "##" >>$BASEDIR/log/FILES
795 cat $i | sed "s%^\./%#%" | sort >> $BASEDIR/log/FILES
796 fi
797 done
0d909a4a 798 beautify message DONE
e67a57fe
MT
799
800 cd $PWD
e67a57fe
MT
801}
802
803ipfirepackages() {
4378d325 804 ipfiremake core-updates
fe7fe395 805 for i in $(ls -1 $BASEDIR/config/rootfiles/packages); do
453b418b
MT
806 if [ -e $BASEDIR/lfs/$i ]; then
807 ipfiredist $i
808 else
809 echo -n $i
810 beautify message SKIP
811 fi
fe7fe395 812 done
78331e30 813 test -d $BASEDIR/packages || mkdir $BASEDIR/packages
5c8cfc99 814 mv -f $LFS/install/packages/* $BASEDIR/packages >> $LOGFILE 2>&1
483f59cd 815 rm -rf $BASEDIR/build/install/packages/*
df5e82b3
MT
816}
817
818# See what we're supposed to do
819case "$1" in
820build)
9729e787 821 clear
c55a58b7 822 PACKAGE=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.tar.gz 2> /dev/null | head -n 1`
df5e82b3 823 #only restore on a clean disk
9b0ff0a0 824 if [ ! -f log/cleanup-toolchain-2-tools ]; then
df5e82b3 825 if [ ! -n "$PACKAGE" ]; then
15679d9f 826 beautify build_stage "Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
df5e82b3
MT
827 prepareenv
828 buildtoolchain
829 else
830 PACKAGENAME=${PACKAGE%.tar.gz}
15679d9f 831 beautify build_stage "Packaged toolchain compilation"
df5e82b3
MT
832 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
833 tar zxf $PACKAGE
834 prepareenv
835 else
836 exiterror "$PACKAGENAME md5 did not match, check downloaded package"
837 fi
838 fi
839 else
9729e787
MT
840 echo -n "Using installed toolchain" | tee -a $LOGFILE
841 beautify message SKIP
df5e82b3
MT
842 prepareenv
843 fi
5cfe86e6 844
7ab7a9b4 845 beautify build_start
0b59f25c 846 beautify build_stage "Building LFS"
df5e82b3 847 buildbase
15679d9f 848
0b59f25c 849 beautify build_stage "Building IPFire"
15679d9f 850 buildipfire
5cfe86e6 851
0b59f25c 852 beautify build_stage "Building installer"
df5e82b3 853 buildinstaller
15679d9f 854
0b59f25c 855 beautify build_stage "Building packages"
df5e82b3 856 buildpackages
7a5ed24e
CS
857
858 beautify build_stage "Checking Logfiles for new Files"
b307417f
AF
859
860 cd $BASEDIR
7a5ed24e 861 tools/checknewlog.pl
b307417f 862 cd $PWD
a23731d1 863
7ab7a9b4 864 beautify build_end
df5e82b3
MT
865 ;;
866shell)
867 # enter a shell inside LFS chroot
868 # may be used to changed kernel settings
869 prepareenv
870 entershell
871 ;;
df5e82b3 872clean)
a50d04ab 873 echo -en "${BOLD}Cleaning build directory...${NORMAL}"
df5e82b3
MT
874 for i in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
875 $LOSETUP -d $i 2>/dev/null
876 done
877 for i in `mount | grep $BASEDIR | cut -d " " -f 1`; do
878 umount $i
879 done
880 stdumount
881 for i in `seq 0 7`; do
882 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
883 umount /dev/loop${i} 2>/dev/null;
884 losetup -d /dev/loop${i} 2>/dev/null;
885 fi;
886 done
887 rm -rf $BASEDIR/build
888 rm -rf $BASEDIR/cdrom
f9315063 889 rm -rf $BASEDIR/packages
df5e82b3 890 rm -rf $BASEDIR/log
df5e82b3
MT
891 if [ -h /tools ]; then
892 rm -f /tools
893 fi
b307417f 894 rm -f $BASEDIR/ipfire-*
a50d04ab 895 beautify message DONE
df5e82b3 896 ;;
c3db995c 897downloadsrc)
df5e82b3
MT
898 if [ ! -d $BASEDIR/cache ]; then
899 mkdir $BASEDIR/cache
900 fi
901 mkdir -p $BASEDIR/log
857d9bf2 902 echo -e "${BOLD}Preload all source files${NORMAL}" | tee -a $LOGFILE
df5e82b3
MT
903 FINISHED=0
904 cd $BASEDIR/lfs
905 for c in `seq $MAX_RETRIES`; do
906 if (( FINISHED==1 )); then
907 break
908 fi
909 FINISHED=1
910 cd $BASEDIR/lfs
911 for i in *; do
912 if [ -f "$i" -a "$i" != "Config" ]; then
e22c7973 913 echo -ne "Loading $i"
df5e82b3
MT
914 make -s -f $i LFS_BASEDIR=$BASEDIR MESSAGE="$i\t ($c/$MAX_RETRIES)" download >> $LOGFILE 2>&1
915 if [ $? -ne 0 ]; then
e22c7973 916 beautify message FAIL
df5e82b3
MT
917 FINISHED=0
918 else
919 if [ $c -eq 1 ]; then
e22c7973 920 beautify message DONE
df5e82b3
MT
921 fi
922 fi
923 fi
924 done
925 done
e22c7973 926 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
df5e82b3
MT
927 ERROR=0
928 for i in *; do
929 if [ -f "$i" -a "$i" != "Config" ]; then
930 make -s -f $i LFS_BASEDIR=$BASEDIR MESSAGE="$i\t " md5 >> $LOGFILE 2>&1
931 if [ $? -ne 0 ]; then
e22c7973
MT
932 echo -ne "MD5 difference in lfs/$i"
933 beautify message FAIL
df5e82b3
MT
934 ERROR=1
935 fi
936 fi
937 done
938 if [ $ERROR -eq 0 ]; then
e22c7973
MT
939 echo -ne "${BOLD}all files md5sum match${NORMAL}"
940 beautify message DONE
941 else
942 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
943 beautify message FAIL
df5e82b3 944 fi
e22c7973 945 cd - >/dev/null 2>&1
df5e82b3 946 ;;
df5e82b3 947toolchain)
9729e787 948 clear
df5e82b3 949 prepareenv
15679d9f 950 beautify build_stage "Toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
df5e82b3 951 buildtoolchain
df5e82b3 952 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $BUILDMACHINE" | tee -a $LOGFILE
11104bfe 953 test -d $BASEDIR/cache/toolchains || mkdir -p $BASEDIR/cache/toolchains
4fafa702 954 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.tar.gz \
df5e82b3
MT
955 build/{bin,etc,usr/bin,usr/local} \
956 build/tools/{bin,etc,*-linux-gnu,include,lib,libexec,sbin,share,var} \
957 log >> $LOGFILE
c55a58b7
AF
958 md5sum cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.tar.gz \
959 > cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.md5
df5e82b3
MT
960 stdumount
961 ;;
962gettoolchain)
df5e82b3 963 # arbitrary name to be updated in case of new toolchain package upload
c55a58b7 964 PACKAGE=$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE
712d859c 965 if [ ! -f $BASEDIR/cache/toolchains/$PACKAGE.tar.gz ]; then
5bd13f01 966 URL_TOOLCHAIN=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
11104bfe 967 test -d $BASEDIR/cache/toolchains || mkdir -p $BASEDIR/cache/toolchains
712d859c
MT
968 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $BUILDMACHINE" | tee -a $LOGFILE
969 cd $BASEDIR/cache/toolchains
74f3678b 970 wget -U "IPFireSourceGrabber/2.x" $URL_TOOLCHAIN/$PACKAGE.tar.gz $URL_TOOLCHAIN/$PACKAGE.md5 >& /dev/null
712d859c 971 if [ $? -ne 0 ]; then
07603508 972 echo "`date -u '+%b %e %T'`: error downloading $PACKAGE toolchain for $BUILDMACHINE machine" | tee -a $LOGFILE
40a4ea4c 973 else
712d859c
MT
974 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
975 echo "`date -u '+%b %e %T'`: toolchain md5 ok" | tee -a $LOGFILE
976 else
977 exiterror "$PACKAGE.md5 did not match, check downloaded package"
978 fi
40a4ea4c 979 fi
712d859c
MT
980 else
981 echo "Toolchain is already downloaded. Exiting..."
df5e82b3
MT
982 fi
983 ;;
15679d9f 984othersrc)
ce56e927 985 prepareenv
15679d9f 986 echo -ne "`date -u '+%b %e %T'`: Build sources iso for $MACHINE" | tee -a $LOGFILE
ce56e927
MT
987 chroot $LFS /tools/bin/env -i HOME=/root \
988 TERM=$TERM PS1='\u:\w\$ ' \
989 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
990 VERSION=$VERSION NAME="$NAME" SNAME="$SNAME" MACHINE=$MACHINE \
991 /bin/bash -x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
992 mv $LFS/install/images/ipfire-* $BASEDIR >> $LOGFILE 2>&1
15679d9f
MT
993 if [ $? -eq "0" ]; then
994 beautify message DONE
995 else
996 beautify message FAIL
997 fi
ce56e927
MT
998 stdumount
999 ;;
483b7768 1000git)
c6cb9d25
MT
1001 case "$2" in
1002 update|up)
533bebcc
MT
1003 ## REMOVES ALL UNCOMMITTED CHANGES!
1004 [ "$3" == "--force" ] && git checkout -f
483b7768
MT
1005 git pull
1006 ;;
c6cb9d25 1007 commit|ci)
483b7768
MT
1008 shift 2
1009 git commit $*
1010
1011 [ "$?" -eq "0" ] || exiterror "git commit $* failed."
1012
1013 echo -e "${BOLD}Do you want to push, too? [y/N]${NORMAL}"
1014 read
1015 [ -z $REPLY ] && exit 0
1016 for i in y Y j J; do
1017 if [ "$i" == "$REPLY" ]; then
1018 $0 git push
1019 exit $?
1020 fi
1021 done
1022 exiterror "\"$REPLY\" is not a valid answer."
1023 ;;
c6cb9d25 1024 dist)
483b7768
MT
1025 git archive HEAD | gzip -9 > ${SNAME}-${VERSION}.tar.gz
1026 ;;
028698e8 1027 diff|di)
483b7768
MT
1028 echo -ne "Make a local diff to last revision"
1029 git diff HEAD > ipfire-diff-$(date +'%Y-%m-%d-%H:%M').diff
1030 evaluate 1
1031 echo "Diff was successfully saved to ipfire-diff-$(date +'%Y-%m-%d-%H:%M').diff"
1032 git diff --stat
1033 ;;
1034 push)
1035 [ -z $GIT_USER ] && exiterror "You have to setup GIT_USER first."
1036 GIT_URL="ssh://${GIT_USER}@git.ipfire.org/pub/git/ipfire-2.x"
1037
e8ee3199 1038 git push ${GIT_URL} $3
483b7768 1039 ;;
4b06f504
MT
1040 log)
1041 [ -z $GIT_TAG ] || LAST_TAG=$GIT_TAG
1042 [ -z $LAST_TAG ] || EXT="$LAST_TAG..HEAD"
1043
1044 git log -n 500 --no-merges --pretty=medium --shortstat $EXT > $BASEDIR/doc/ChangeLog
1045 ;;
c6cb9d25 1046 esac
f9315063 1047 ;;
15679d9f
MT
1048uploadsrc)
1049 PWD=`pwd`
661d9388
CS
1050 if [ -z $IPFIRE_USER ]; then
1051 echo -n "You have to setup IPFIRE_USER first. See .config for details."
1052 beautify message FAIL
1053 exit 1
1054 fi
ae23a606 1055
661d9388 1056 URL_SOURCE=$(grep URL_SOURCE lfs/Config | awk '{ print $3 }')
ae23a606 1057 REMOTE_FILES=$(echo "ls -1 --ignore=toolchains" | sftp -C ${IPFIRE_USER}@${URL_SOURCE})
661d9388 1058
15679d9f 1059 cd $BASEDIR/cache/
ae23a606 1060 for file in $(ls -1 --ignore=toolchains); do
661d9388
CS
1061 grep -q "$file" <<<$REMOTE_FILES && continue
1062 NEW_FILES="$NEW_FILES $file"
0eab8e84 1063 done
661d9388
CS
1064 [ -n "$NEW_FILES" ] && scp -2 $NEW_FILES ${IPFIRE_USER}@${URL_SOURCE}
1065 cd $BASEDIR
15679d9f
MT
1066 cd $PWD
1067 exit 0
0eab8e84 1068 ;;
cc0e56be 1069batch)
c8582074 1070 if [ "$2" = "--background" ]; then
15679d9f
MT
1071 batch_script
1072 exit $?
1073 fi
27ac55bf 1074 if [ `screen -ls | grep -q ipfire` ]; then
712d859c
MT
1075 echo "Build is already running, sorry!"
1076 exit 1
1077 else
27ac55bf
MT
1078 if [ "$2" = "--rebuild" ]; then
1079 export IPFIRE_REBUILD=1
1080 echo "REBUILD!"
1081 else
1082 export IPFIRE_REBUILD=0
1083 fi
15679d9f
MT
1084 echo -en "${BOLD}***IPFire-Batch-Build is starting...${NORMAL}"
1085 screen -dmS ipfire $0 batch --background
1086 evaluate 1
712d859c
MT
1087 exit 0
1088 fi
cc0e56be 1089 ;;
028698e8 1090watch)
15679d9f 1091 watch_screen
028698e8 1092 ;;
33634aa8
MT
1093pxe)
1094 case "$2" in
1095 start)
1096 start_tftpd
1097 ;;
1098 stop)
1099 stop_tftpd
1100 ;;
a50d04ab 1101 reload|restart)
33634aa8
MT
1102 reload_tftpd
1103 ;;
1104 esac
1105 exit 0
1106 ;;
bf7c473f
MT
1107lang)
1108 update_langs
1109 ;;
6b8cff41 1110"")
24a4a744 1111 clear
d6d43509 1112 select name in "Exit" "IPFIRE: Downloadsrc" "IPFIRE: Build (silent)" "IPFIRE: Watch Build" "IPFIRE: Batch" "IPFIRE: Clean" "LOG: Tail" "Help"
24a4a744
MT
1113 do
1114 case $name in
c3db995c
MT
1115 "IPFIRE: Downloadsrc")
1116 $0 downloadsrc
c6cb9d25
MT
1117 ;;
1118 "IPFIRE: Build (silent)")
1119 $0 build-silent
1120 ;;
1121 "IPFIRE: Watch Build")
028698e8 1122 $0 watch
c6cb9d25 1123 ;;
712d859c
MT
1124 "IPFIRE: Batch")
1125 $0 batch
1126 ;;
c6cb9d25
MT
1127 "IPFIRE: Clean")
1128 $0 clean
1129 ;;
c6cb9d25 1130 "Help")
a50d04ab 1131 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
c6cb9d25
MT
1132 cat doc/make.sh-usage
1133 ;;
712d859c
MT
1134 "LOG: Tail")
1135 tail -f log/_*
1136 ;;
c6cb9d25
MT
1137 "Exit")
1138 break
1139 ;;
24a4a744
MT
1140 esac
1141 done
df5e82b3 1142 ;;
a50d04ab
MT
1143config)
1144 make_config
1145 ;;
6b8cff41 1146*)
a50d04ab 1147 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
6b8cff41
MT
1148 cat doc/make.sh-usage
1149 ;;
3ea75603 1150esac