]> git.ipfire.org Git - ipfire-2.x.git/blob - make.sh
HinzugefĆ¼gt:
[ipfire-2.x.git] / make.sh
1 #!/bin/bash
2 #
3 ############################################################################
4 # #
5 # This file is part of the IPFire Firewall. #
6 # #
7 # IPFire is free software; you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation; either version 2 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # IPFire is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with IPFire; if not, write to the Free Software #
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
20 # #
21 # Copyright (C) 2006 IPFire-Team <entwickler@ipfire.org>. #
22 # #
23 ############################################################################
24 #
25
26 NAME="IPFire" # Software name
27 SNAME="ipfire" # Short name
28 VERSION="1.4" # Version number
29 SLOGAN="We secure your network" # Software slogan
30 CONFIG_ROOT=/var/ipfire # Configuration rootdir
31 NICE=10
32 MAX_RETRIES=3 # prefetch/check loop
33 KVER=`grep --max-count=1 VER lfs/linux | awk '{ print $3 }'`
34 MACHINE=`uname -m`
35
36 # Debian specific settings
37 if [ ! -e /etc/debian_version ]; then
38 FULLPATH=`which $0`
39 else
40 if [ -x /usr/bin/realpath ]; then
41 FULLPATH=`/usr/bin/realpath $0`
42 else
43 echo "ERROR: Need to do apt-get install realpath"
44 exit 1
45 fi
46 fi
47
48
49 PWD=`pwd`
50 BASENAME=`basename $0`
51 BASEDIR=`echo $FULLPATH | sed "s/\/$BASENAME//g"`
52 LOGFILE=$BASEDIR/log/_build.preparation.log
53 export BASEDIR LOGFILE
54 DIR_CHK=$BASEDIR/cache/check
55 mkdir $BASEDIR/log/ 2>/dev/null
56
57 if [ 'x86_64' = $MACHINE -o 'i686' = $MACHINE -o 'i586' = $MACHINE -o 'i486' = $MACHINE -o 'i386' = $MACHINE ]; then
58 echo "`date -u '+%b %e %T'`: Machine is ix86 (or equivalent)" | tee -a $LOGFILE
59 MACHINE=i386
60 BUILDTARGET=i386-pc-linux-gnu
61 CFLAGS="-O2 -mcpu=i386 -march=i386 -pipe -fomit-frame-pointer"
62 CXXFLAGS="-O2 -mcpu=i386 -march=i386 -pipe -fomit-frame-pointer"
63 elif [ 'alpha' = $MACHINE ]; then
64 echo "`date -u '+%b %e %T'`: Machine is Alpha AXP" | tee -a $LOGFILE
65 BUILDTARGET=alpha-unknown-linux-gnu
66 CFLAGS="-O2 -mcpu=ev4 -mieee -pipe"
67 CXXFLAGS="-O2 -mcpu=ev4 -mieee -pipe"
68 else
69 echo "`date -u '+%b %e %T'`: Can't determine your architecture - $MACHINE" | tee -a $LOGFILE
70 exit 1
71 fi
72
73 # Define immediately
74 stdumount() {
75 umount $BASEDIR/build/dev/pts 2>/dev/null;
76 umount $BASEDIR/build/proc 2>/dev/null;
77 umount $BASEDIR/build/install/mnt 2>/dev/null;
78 umount $BASEDIR/build/usr/src/cache 2>/dev/null;
79 umount $BASEDIR/build/usr/src/ccache 2>/dev/null;
80 umount $BASEDIR/build/usr/src/config 2>/dev/null;
81 umount $BASEDIR/build/usr/src/doc 2>/dev/null;
82 umount $BASEDIR/build/usr/src/html 2>/dev/null;
83 umount $BASEDIR/build/usr/src/langs 2>/dev/null;
84 umount $BASEDIR/build/usr/src/lfs 2>/dev/null;
85 umount $BASEDIR/build/usr/src/log 2>/dev/null;
86 umount $BASEDIR/build/usr/src/src 2>/dev/null;
87 }
88
89 exiterror() {
90 stdumount
91 for i in `seq 0 7`; do
92 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
93 losetup -d /dev/loop${i} 2>/dev/null
94 fi;
95 done
96 echo "ERROR: $*"
97 echo " Check $LOGFILE for errors if applicable"
98 exit 1
99 }
100
101 entershell() {
102 if [ ! -e $BASEDIR/build/usr/src/lfs/ ]; then
103 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/"
104 fi
105 echo "Entering to a shell inside LFS chroot, go out with exit"
106 chroot $LFS /tools/bin/env -i HOME=/root TERM=$TERM PS1='\u:\w\$ ' \
107 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
108 VERSION=$VERSION CONFIG_ROOT=$CONFIG_ROOT \
109 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
110 CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" \
111 CCACHE_DIR=/usr/src/ccache \
112 CCACHE_HASHDIR=1 \
113 KVER=$KVER \
114 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
115 KGCC="ccache /usr/bin/gcc" \
116 /tools/bin/bash
117 if [ $? -ne 0 ]; then
118 exiterror "chroot error"
119 else
120 stdumount
121 fi
122 }
123
124 prepareenv() {
125 ############################################################################
126 # #
127 # Are we running the right shell? #
128 # #
129 ############################################################################
130 if [ ! "$BASH" ]; then
131 exiterror "BASH environment variable is not set. You're probably running the wrong shell."
132 fi
133
134 if [ -z "${BASH_VERSION}" ]; then
135 exiterror "Not running BASH shell."
136 fi
137
138
139 ############################################################################
140 # #
141 # Trap on emergency exit #
142 # #
143 ############################################################################
144 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP SIGQUIT
145
146
147 ############################################################################
148 # #
149 # Resetting our nice level #
150 # #
151 ############################################################################
152 echo "`date -u '+%b %e %T'`: Resetting our nice level to $NICE" | tee -a $LOGFILE
153 renice $NICE $$ > /dev/null
154 if [ `nice` != "$NICE" ]; then
155 exiterror "Failed to set correct nice level"
156 fi
157
158 ############################################################################
159 # #
160 # Checking if running as root user #
161 # #
162 ############################################################################
163 echo "`date -u '+%b %e %T'`: Checking if we're running as root user" | tee -a $LOGFILE
164 if [ `id -u` != 0 ]; then
165 exiterror "Not building as root"
166 fi
167
168
169 ############################################################################
170 # #
171 # Checking for necessary temporary space #
172 # #
173 ############################################################################
174 echo "`date -u '+%b %e %T'`: Checking for necessary space on disk $BASE_DEV" | tee -a $LOGFILE
175 BASE_DEV=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
176 BASE_ASPACE=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
177 if (( 2202000 > $BASE_ASPACE )); then
178 BASE_USPACE=`du -skx $BASEDIR | awk '{print $1}'`
179 if (( 2202000 - $BASE_USPACE > $BASE_ASPACE )); then
180 exiterror "Not enough temporary space available, need at least 2.1GB on $BASE_DEV"
181 fi
182 fi
183
184 ############################################################################
185 # #
186 # Building Linux From Scratch system #
187 # #
188 ############################################################################
189 echo "`date -u '+%b %e %T'`: Building Linux From Scratch system" | tee -a $LOGFILE
190
191 # Set umask
192 umask 022
193
194 # Set LFS Directory
195 LFS=$BASEDIR/build
196
197 # Check /tools symlink
198 if [ -h /tools ]; then
199 rm -f /tools
200 fi
201 if [ ! -a /tools ]; then
202 ln -s $BASEDIR/build/tools /
203 fi
204 if [ ! -h /tools ]; then
205 exiterror "Could not create /tools symbolic link."
206 fi
207
208 # Setup environment
209 set +h
210 LC_ALL=POSIX
211 export LFS LC_ALL CFLAGS CXXFLAGS
212 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
213
214 # Make some extra directories
215 mkdir -p $BASEDIR/build/{tools,etc,usr/src} 2>/dev/null
216 mkdir -p $BASEDIR/{cache,ccache} 2>/dev/null
217 mkdir -p $BASEDIR/build/dev/pts $BASEDIR/build/proc $BASEDIR/build/usr/src/{cache,config,doc,html,langs,lfs,log,src,ccache}
218
219 # Make all sources and proc available under lfs build
220 mount --bind /dev/pts $BASEDIR/build/dev/pts
221 mount --bind /proc $BASEDIR/build/proc
222 mount --bind $BASEDIR/cache $BASEDIR/build/usr/src/cache
223 mount --bind $BASEDIR/ccache $BASEDIR/build/usr/src/ccache
224 mount --bind $BASEDIR/config $BASEDIR/build/usr/src/config
225 mount --bind $BASEDIR/doc $BASEDIR/build/usr/src/doc
226 mount --bind $BASEDIR/html $BASEDIR/build/usr/src/html
227 mount --bind $BASEDIR/langs $BASEDIR/build/usr/src/langs
228 mount --bind $BASEDIR/lfs $BASEDIR/build/usr/src/lfs
229 mount --bind $BASEDIR/log $BASEDIR/build/usr/src/log
230 mount --bind $BASEDIR/src $BASEDIR/build/usr/src/src
231
232 # Run LFS static binary creation scripts one by one
233 export CCACHE_DIR=$BASEDIR/ccache
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
241 ############################################################################
242 # #
243 # Necessary shell functions #
244 # #
245 ############################################################################
246 lfsmake1() {
247 if [ -f $BASEDIR/lfs/$1 ]; then
248 echo "`date -u '+%b %e %T'`: Building $*" | tee -a $LOGFILE
249 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t " download >> $LOGFILE 2>&1
250 if [ $? -ne 0 ]; then
251 exiterror "Download error in $1"
252 fi
253 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t md5sum" md5 >> $LOGFILE 2>&1
254 if [ $? -ne 0 ]; then
255 exiterror "md5sum error in $1, check file in cache or signature"
256 fi
257 cd $BASEDIR/lfs && make -f $* BUILDTARGET=$BUILDTARGET \
258 MACHINE=$MACHINE \
259 LFS_BASEDIR=$BASEDIR \
260 ROOT=$LFS \
261 KVER=$KVER \
262 install >> $LOGFILE 2>&1
263 if [ $? -ne 0 ]; then
264 exiterror "Building $*";
265 fi
266 else
267 exiterror "No such file or directory: $BASEDIR/$1"
268 fi
269 return 0
270 }
271
272 lfsmake2() {
273 if [ -f $BASEDIR/build/usr/src/lfs/$1 ]; then
274 echo "`date -u '+%b %e %T'`: Building $*" | tee -a $LOGFILE
275 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t " download >> $LOGFILE 2>&1
276 if [ $? -ne 0 ]; then
277 exiterror "Download error in $1"
278 fi
279 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t md5sum" md5 >> $LOGFILE 2>&1
280 if [ $? -ne 0 ]; then
281 exiterror "md5sum error in $1, check file in cache or signature"
282 fi
283 chroot $LFS /tools/bin/env -i HOME=/root \
284 TERM=$TERM PS1='\u:\w\$ ' \
285 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
286 VERSION=$VERSION \
287 CONFIG_ROOT=$CONFIG_ROOT \
288 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
289 CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" \
290 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
291 KVER=$KVER \
292 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
293 /tools/bin/bash -x -c "cd /usr/src/lfs && \
294 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
295 if [ $? -ne 0 ]; then
296 exiterror "Building $*"
297 fi
298 else
299 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
300 fi
301 return 0
302 }
303
304 ipcopmake() {
305 if [ -f $BASEDIR/build/usr/src/lfs/$1 ]; then
306 echo "`date -u '+%b %e %T'`: Building $*" | tee -a $LOGFILE
307 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t " download >> $LOGFILE 2>&1
308 if [ $? -ne 0 ]; then
309 exiterror "Download error in $1"
310 fi
311 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t md5sum" md5 >> $LOGFILE 2>&1
312 if [ $? -ne 0 ]; then
313 exiterror "md5sum error in $1, check file in cache or signature"
314 fi
315 chroot $LFS /tools/bin/env -i HOME=/root \
316 TERM=$TERM PS1='\u:\w\$ ' \
317 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
318 VERSION=$VERSION \
319 CONFIG_ROOT=$CONFIG_ROOT \
320 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
321 CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" \
322 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
323 KVER=$KVER \
324 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
325 /bin/bash -x -c "cd /usr/src/lfs && \
326 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
327 if [ $? -ne 0 ]; then
328 exiterror "Building $*"
329 fi
330 else
331 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
332 fi
333 return 0
334 }
335
336 ipfiredist() {
337 if [ -f $BASEDIR/build/usr/src/lfs/$1 ]; then
338 echo "`date -u '+%b %e %T'`: Packaging $1" | tee -a $LOGFILE
339 cp -f $BASEDIR/src/scripts/make-packages.sh $BASEDIR/build/usr/local/bin
340 chroot $LFS /tools/bin/env -i HOME=/root \
341 TERM=$TERM PS1='\u:\w\$ ' \
342 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
343 VERSION=$VERSION \
344 CONFIG_ROOT=$CONFIG_ROOT \
345 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
346 CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" \
347 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
348 KVER=$KVER \
349 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
350 /bin/bash -x -c "cd /usr/src/lfs && \
351 make -f $1 LFS_BASEDIR=/usr/src dist" >>$LOGFILE 2>&1
352 if [ $? -ne 0 ]; then
353 exiterror "Packaging $1"
354 fi
355 else
356 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
357 fi
358 # test -d $BASEDIR/packages || mkdir $BASEDIR/packages
359 # mv -f $BASEDIR/build/paks/* $BASEDIR/packages/
360 return 0
361 }
362
363
364 installmake() {
365 if [ -f $BASEDIR/build/usr/src/lfs/$1 ]; then
366 echo "`date -u '+%b %e %T'`: Building $*" | tee -a $LOGFILE
367 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t " download >> $LOGFILE 2>&1
368 if [ $? -ne 0 ]; then
369 exiterror "Download error in $1"
370 fi
371 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t md5sum" md5 >> $LOGFILE 2>&1
372 if [ $? -ne 0 ]; then
373 exiterror "md5sum error in $1, check file in cache or signature"
374 fi
375 chroot $LFS /tools/bin/env -i HOME=/root \
376 TERM=$TERM PS1='\u:\w\$ ' \
377 PATH=/usr/local/bin:/opt/$MACHINE-uClibc/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin \
378 VERSION=$VERSION \
379 CONFIG_ROOT=$CONFIG_ROOT \
380 LFS_PASS="install" \
381 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
382 CFLAGS="-Os" CXXFLAGS="-Os" \
383 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
384 KVER=$KVER \
385 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
386 /bin/bash -x -c "cd /usr/src/lfs && \
387 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
388 if [ $? -ne 0 ]; then
389 exiterror "Building $*"
390 fi
391 else
392 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
393 fi
394 return 0
395 }
396
397 buildtoolchain() {
398 LOGFILE="$BASEDIR/log/_build.toolchain.log"
399 export LOGFILE
400 echo -ne "`date -u '+%b %e %T'`: Stage1 toolchain build \n" | tee -a $LOGFILE
401 # Build sed now, as we use some extensions
402 ORG_PATH=$PATH
403 NATIVEGCC=`gcc --version | grep GCC | awk {'print $3'}`
404 export NATIVEGCC GCCmajor=${NATIVEGCC:0:1} GCCminor=${NATIVEGCC:2:1} GCCrelease=${NATIVEGCC:4:1}
405 lfsmake1 ccache
406 lfsmake1 sed LFS_PASS=1
407 lfsmake1 m4 LFS_PASS=1
408 lfsmake1 bison LFS_PASS=1
409 lfsmake1 flex LFS_PASS=1
410 lfsmake1 binutils LFS_PASS=1
411 lfsmake1 gcc LFS_PASS=1
412 export PATH=$BASEDIR/build/usr/local/bin:$BASEDIR/build/tools/bin:$PATH
413
414 lfsmake1 linux
415 lfsmake1 tcl
416 lfsmake1 expect
417 lfsmake1 glibc
418 lfsmake1 dejagnu
419 lfsmake1 gcc LFS_PASS=2
420 lfsmake1 binutils LFS_PASS=2
421 lfsmake1 gawk
422 lfsmake1 coreutils
423 lfsmake1 bzip2
424 lfsmake1 gzip
425 lfsmake1 diffutils
426 lfsmake1 findutils
427 lfsmake1 make
428 lfsmake1 grep
429 lfsmake1 sed LFS_PASS=2
430 lfsmake1 m4 LFS_PASS=2
431 lfsmake1 bison LFS_PASS=2
432 lfsmake1 flex LFS_PASS=2
433 lfsmake1 gettext
434 lfsmake1 ncurses
435 lfsmake1 patch
436 lfsmake1 tar
437 lfsmake1 texinfo
438 lfsmake1 bash
439 lfsmake1 util-linux
440 lfsmake1 perl
441 export PATH=$ORG_PATH
442 }
443
444 buildbase() {
445 LOGFILE="$BASEDIR/log/_build.base.log"
446 export LOGFILE
447 echo -ne "`date -u '+%b %e %T'`: Stage2 linux base build \n" | tee -a $LOGFILE
448 # Run LFS dynamic binary creation scripts one by one
449 lfsmake2 stage2
450 lfsmake2 makedev
451 lfsmake2 linux
452 lfsmake2 man-pages
453 lfsmake2 glibc
454 lfsmake2 binutils
455 lfsmake2 gcc
456 lfsmake2 coreutils
457 lfsmake2 zlib
458 lfsmake2 mktemp
459 lfsmake2 iana-etc
460 lfsmake2 findutils
461 lfsmake2 gawk
462 lfsmake2 ncurses
463 lfsmake2 vim
464 lfsmake2 m4
465 lfsmake2 bison
466 lfsmake2 less
467 lfsmake2 groff
468 lfsmake2 sed
469 lfsmake2 flex
470 lfsmake2 gettext
471 lfsmake2 net-tools
472 lfsmake2 inetutils
473 lfsmake2 perl
474 lfsmake2 texinfo
475 lfsmake2 autoconf
476 lfsmake2 automake
477 lfsmake2 bash
478 lfsmake2 file
479 lfsmake2 libtool
480 lfsmake2 bzip2
481 lfsmake2 diffutils
482 lfsmake2 ed
483 lfsmake2 kbd
484 lfsmake2 e2fsprogs
485 lfsmake2 grep
486 if [ 'i386' = $MACHINE ]; then
487 lfsmake2 grub
488 elif [ 'alpha' = $MACHINE ]; then
489 lfsmake2 aboot
490 fi
491 lfsmake2 gzip
492 lfsmake2 man
493 lfsmake2 make
494 lfsmake2 modutils
495 lfsmake2 patch
496 lfsmake2 procinfo
497 lfsmake2 procps
498 lfsmake2 psmisc
499 lfsmake2 shadow
500 lfsmake2 sysklogd
501 lfsmake2 sysvinit
502 lfsmake2 tar
503 lfsmake2 util-linux
504 }
505
506 buildipcop() {
507 # Run IPFire make scripts one by one
508 LOGFILE="$BASEDIR/log/_build.ipfire.log"
509 export LOGFILE
510 echo -ne "`date -u '+%b %e %T'`: Stage3 $NAME build \n" | tee -a $LOGFILE
511
512 # Build these first as some of the kernel packages below rely on
513 # these for some of their client program functionality
514 ipcopmake configroot
515 ipcopmake dhcp
516 ipcopmake dhcpcd
517 ipcopmake libusb
518 ipcopmake libpcap
519 ipcopmake linux-atm
520 ipcopmake ppp
521 ipcopmake rp-pppoe
522 ipcopmake unzip
523 # Do SMP now
524 if [ 'i386' = $MACHINE ]; then
525 # abuse the SMP flag, and make an minimal installer kernel first
526 # so that the boot floppy always works.....
527 ipcopmake linux LFS_PASS=ipcop SMP=installer
528 ipcopmake linux LFS_PASS=ipcop SMP=1
529 ipcopmake 3cp4218 SMP=1
530 ipcopmake amedyn SMP=1
531 ipcopmake cxacru SMP=1
532 ipcopmake eagle SMP=1
533
534 # These are here because they have i386 only binary libraries
535 # included in the package.
536 ipcopmake cnx_pci SMP=1
537 ipcopmake fcdsl SMP=1
538 ipcopmake fcdsl2 SMP=1
539 ipcopmake fcdslsl SMP=1
540 ipcopmake fcdslusb SMP=1
541 ipcopmake fcdslslusb SMP=1
542 ipcopmake fcpci SMP=1
543 ipcopmake pulsar SMP=1
544 ipcopmake unicorn SMP=1
545 fi
546
547 ipcopmake linux LFS_PASS=ipcop
548 ipcopmake 3cp4218
549 ipcopmake amedyn
550 ipcopmake cxacru
551 ipcopmake eciadsl
552 ipcopmake eagle
553 ipcopmake speedtouch
554 if [ 'i386' = $MACHINE ]; then
555 # These are here because they have i386 only binary libraries
556 # included in the package.
557 ipcopmake cnx_pci
558 ipcopmake fcdsl
559 ipcopmake fcdsl2
560 ipcopmake fcdslsl
561 ipcopmake fcdslusb
562 ipcopmake fcdslslusb
563 ipcopmake fcpci
564 ipcopmake pulsar
565 ipcopmake unicorn
566 fi
567
568 ipcopmake pcmcia-cs
569 ipcopmake expat
570 ipcopmake gdbm
571 ipcopmake gmp
572 ipcopmake openssl
573 ipcopmake python
574 ipcopmake libnet
575 ipcopmake libpng
576 ipcopmake gd
577 ipcopmake popt
578 ipcopmake slang
579 ipcopmake newt
580 ipcopmake libcap
581 ipcopmake pciutils
582 ipcopmake pcre
583 ipcopmake apache
584 ipcopmake arping
585 ipcopmake beep
586 ipcopmake bind
587 ipcopmake capi4k-utils
588 ipcopmake cdrtools
589 ipcopmake dnsmasq
590 ipcopmake dosfstools
591 ipcopmake ethtool
592 ipcopmake ez-ipupdate
593 ipcopmake fcron
594 ipcopmake perl-GD
595 ipcopmake gnupg
596 ipcopmake hdparm
597 ipcopmake ibod
598 ipcopmake initscripts
599 ipcopmake iptables
600 ipcopmake ipac-ng
601 ipcopmake ipaddr
602 ipcopmake iproute2
603 ipcopmake iptstate
604 ipcopmake iputils
605 ipcopmake isapnptools
606 ipcopmake isdn4k-utils
607 ipcopmake kudzu
608 ipcopmake logrotate
609 ipcopmake logwatch
610 ipcopmake mingetty
611 ipcopmake misc-progs
612 ipcopmake mtools
613 ipcopmake nano
614 ipcopmake nash
615 ipcopmake nasm
616 ipcopmake URI
617 ipcopmake HTML-Tagset
618 ipcopmake HTML-Parser
619 ipcopmake Compress-Zlib
620 ipcopmake Digest
621 ipcopmake Digest-SHA1
622 ipcopmake Digest-HMAC
623 ipcopmake libwww-perl
624 ipcopmake Net-DNS
625 ipcopmake Net-IPv4Addr
626 ipcopmake Net_SSLeay
627 ipcopmake IO-Stringy
628 ipcopmake Unix-Syslog
629 ipcopmake Mail-Tools
630 ipcopmake MIME-Tools
631 ipcopmake Net-Server
632 ipcopmake Convert-TNEF
633 ipcopmake Convert-UUlib
634 ipcopmake Archive-Tar
635 ipcopmake Archive-Zip
636 ipcopmake GeoIP
637 ipcopmake fwhits
638 ipcopmake noip_updater
639 ipcopmake ntp
640 ipcopmake oinkmaster
641 ipcopmake openssh
642 ipcopmake openswan
643 ipcopmake pptpclient
644 ipcopmake rrdtool
645 ipcopmake setserial
646 ipcopmake setup
647 ipcopmake snort
648 #ipcopmake speedycgi
649 ipcopmake squid
650 ipcopmake squid-graph
651 ipcopmake tcpdump
652 ipcopmake traceroute
653 ipcopmake vlan
654 #ipcopmake wireless
655 ipcopmake libsafe
656 ipcopmake 3c5x9setup
657 echo -ne "`date -u '+%b %e %T'`: Building ### IPFire modules ### \n" | tee -a $LOGFILE
658 ipcopmake pakfire
659 ## Zuerst die Libs und dann die Programme. Ordnung muss sein!
660 ipcopmake berkeley
661 ipcopmake BerkeleyDB ## The Perl module
662 ipcopmake libtiff
663 ipcopmake libjpeg
664 ipcopmake libxml2
665 ipcopmake spandsp
666 ipcopmake lzo
667 ipcopmake pkg-config
668 ipcopmake glib
669 ipcopmake xampp
670 ipcopmake pam
671 ipcopmake pammysql
672 ipcopmake saslauthd PASS=1
673 ipcopmake openldap
674 ipcopmake saslauthd PASS=2
675 ipcopmake xinetd
676 ipcopmake ghostscript
677 ipcopmake cups
678 # ipcopmake lpd ## Im Moment aus, da CUPS vorhanden ist.
679 ipcopmake samba
680 ipcopmake sudo
681 ipcopmake mc
682 ipcopmake pwlib
683 ipcopmake openh323
684 ipcopmake wget
685 ipcopmake bridge-utils
686 echo -ne "`date -u '+%b %e %T'`: Building ### Mailserver ### \n" | tee -a $LOGFILE
687 ipcopmake postfix
688 ipcopmake fetchmail
689 ipcopmake cyrusimap
690 ipcopmake procmail
691 ipcopmake mailx
692 ipcopmake clamav
693 ipcopmake razor
694 ipcopmake spamassassin
695 ipcopmake amavisd
696 echo -ne "`date -u '+%b %e %T'`: Building ### VoIP-Server ### \n" | tee -a $LOGFILE
697 ipcopmake stund
698 ipcopmake asterisk
699 echo -ne "`date -u '+%b %e %T'`: Building ### MP3-Server ### \n" | tee -a $LOGFILE
700 ipcopmake lame
701 ipcopmake gnump3d
702 ipcopmake openvpn
703 ipcopmake edonkeyclc
704 ipcopmake sane
705 ipcopmake rsync
706 ipcopmake tcpwrapper
707 ipcopmake portmap
708 ipcopmake nmap
709 ipcopmake htop
710 ipcopmake nfs
711 ipcopmake ncftp
712 ipcopmake ethereal
713 # wget http://www.guzu.net/linux/hddtemp.db && mv hddtemp.db $BASEDIR/build/etc/hddtemp.db
714 # ipcopmake hddtemp
715 # ipcopmake stunnel # Ausgeschaltet, weil wir es doch nicht nutzen
716 }
717
718 buildinstaller() {
719 # Run installer scripts one by one
720 LOGFILE="$BASEDIR/log/_build.installer.log"
721 export LOGFILE
722 echo -ne "`date -u '+%b %e %T'`: Stage4 installer build \n" | tee -a $LOGFILE
723 if [ 'i386' = $MACHINE ]; then
724 ipcopmake syslinux
725 ipcopmake as86
726 ipcopmake mbr
727 ipcopmake uClibc
728 fi
729 installmake busybox
730 installmake sysvinit
731 installmake e2fsprogs
732 installmake misc-progs
733 installmake slang
734 installmake util-linux
735 installmake newt
736 installmake pciutils
737 installmake pcmcia-cs
738 installmake kbd
739 installmake installer
740 installmake scsi.img
741 installmake driver.img
742 installmake initrd
743 installmake boot.img
744 }
745
746 buildpackages() {
747 LOGFILE="$BASEDIR/log/_build.packages.log"
748 export LOGFILE
749 echo "... see detailed log in _build.*.log files" >> $LOGFILE
750 echo -ne "`date -u '+%b %e %T'`: Stage5 packages build \n" | tee -a $LOGFILE
751 # Strip files
752 echo "`date -u '+%b %e %T'`: Stripping files" | tee -a $LOGFILE
753 find $LFS/lib $LFS/usr/lib $LFS/usr/share/rrdtool-* $LFS/install ! -type l \( -name '*.so' -o -name '*.so[\.0-9]*' \) \
754 ! -name 'libc.so' ! -name 'libpthread.so' ! -name 'libcrypto.so.0.9.7.sha1' \
755 -ls -exec $LFS/tools/bin/strip --strip-all {} \; >> $LOGFILE 2>&1
756 # add -ls before -exec if you want to verify what files are stripped
757
758 find $LFS/{,s}bin $LFS/usr/{,s}bin $LFS/usr/local/{,s}bin ! -type l \
759 -exec file {} \; | grep " ELF " | cut -f1 -d ':' | xargs $LFS/tools/bin/strip --strip-all >> $LOGFILE 2>&1
760 # there add -v to strip to verify
761
762 if [ 'i386' = $MACHINE ]; then
763 # Create fcdsl packages
764 echo "`date -u '+%b %e %T'`: Building fcdsl tgz" | tee -a $LOGFILE
765 cp $LFS/install/images/fcdsl/license.txt $LFS >> $LOGFILE 2>&1
766 touch $LFS/var/run/{need-depmod-$KVER,need-depmod-$KVER-smp}
767 cd $LFS && tar cvfz $LFS/install/images/$SNAME-fcdsl-$VERSION.$MACHINE.tgz \
768 lib/modules/$KVER/misc/fcdsl*.o.gz \
769 lib/modules/$KVER-smp/misc/fcdsl*.o.gz \
770 usr/lib/isdn/{fds?base.bin,fd?ubase.frm} \
771 etc/fcdsl/fcdsl*.conf \
772 etc/drdsl/{drdsl,drdsl.ini} \
773 license.txt \
774 var/run/{need-depmod-$KVER,need-depmod-$KVER-smp} >> $LOGFILE 2>&1
775 rm -f $LFS/license.txt >> $LOGFILE 2>&1
776 cd $BASEDIR
777 fi
778
779 # Create update for this version
780 # echo "`date -u '+%b %e %T'`: Building update $VERSION tgz" | tee -a $LOGFILE
781 # tar -cz -C $BASEDIR/build --files-from=$BASEDIR/updates/$VERSION/ROOTFILES.$MACHINE-$VERSION -f $BASEDIR/updates/$VERSION/patch.tar.gz --exclude='#*';
782 # chmod 755 $BASEDIR/updates/$VERSION/setup
783 # tar -cz -C $BASEDIR/updates/$VERSION -f $LFS/install/images/$SNAME-update-$VERSION.$MACHINE.tgz patch.tar.gz setup information
784 # rm -f $LFS/var/run/{need-depmod-$KVER,need-depmod-$KVER-smp}
785
786 # Generating list of packages used
787 echo "`date -u '+%b %e %T'`: Generating packages list from logs" | tee -a $LOGFILE
788 rm -f $BASEDIR/doc/packages-list
789 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
790 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
791 echo " * `basename $i`" >>$BASEDIR/doc/packages-list
792 fi
793 done
794 echo "====== List of softwares used to build $NAME Version: $VERSION ======" > $BASEDIR/doc/packages-list.txt
795 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|ipcop$\|setup$\|stage2$\|smp$\|tools$\|tools1$\|tools2$' \
796 $BASEDIR/doc/packages-list | sort >> $BASEDIR/doc/packages-list.txt
797 rm -f $BASEDIR/doc/packages-list
798 # packages-list.txt is ready to be displayed for wiki page
799
800 # Create ISO for CDRom and USB-superfloppy
801 ipcopmake cdrom
802 cp $LFS/install/images/{*.iso,*.tgz} $BASEDIR >> $LOGFILE 2>&1
803
804 # Build IPFire packages
805 ipfiredist asterisk
806 ipfiredist cyrusimap
807 ipfiredist fetchmail
808 ipfiredist gnump3d
809 ipfiredist libtiff
810 ipfiredist libxml2
811 ipfiredist mc
812 ipfiredist postfix
813 ipfiredist pwlib
814 ipfiredist sane
815 ipfiredist spandsp
816 ipfiredist sudo
817 ipfiredist xampp
818 ipfiredist xinetd
819 test -d $BASEDIR/packages || mkdir $BASEDIR/packages
820 cp -f $LFS/paks/*.tar.gz $LFS/paks/*.md5 $BASEDIR/packages >> $LOGFILE 2>&1
821
822 # Cleanup
823 stdumount
824 rm -rf $BASEDIR/build/tmp/*
825
826 # Generating total list of files
827 echo "`date -u '+%b %e %T'`: Generating files list from logs" | tee -a $LOGFILE
828 rm -f $BASEDIR/log/FILES
829 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
830 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
831 echo "##" >>$BASEDIR/log/FILES
832 echo "## `basename $i`" >>$BASEDIR/log/FILES
833 echo "##" >>$BASEDIR/log/FILES
834 cat $i | sed "s%^\./%#%" | sort >> $BASEDIR/log/FILES
835 fi
836 done
837
838 cd $PWD
839
840 }
841
842 # See what we're supposed to do
843 case "$1" in
844 build)
845 BUILDMACHINE=`uname -m`
846 PACKAGE=`ls -v -r $BASEDIR/cache/$SNAME-1.4.*-toolchain-$BUILDMACHINE.tar.gz 2> /dev/null | head -n 1`
847 #only restore on a clean disk
848 if [ ! -f log/perl-*-tools ]; then
849 if [ ! -n "$PACKAGE" ]; then
850 echo "`date -u '+%b %e %T'`: Full toolchain compilation" | tee -a $LOGFILE
851 prepareenv
852 buildtoolchain
853 else
854 PACKAGENAME=${PACKAGE%.tar.gz}
855 echo "`date -u '+%b %e %T'`: Restore from $PACKAGE" | tee -a $LOGFILE
856 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
857 tar zxf $PACKAGE
858 prepareenv
859 else
860 exiterror "$PACKAGENAME md5 did not match, check downloaded package"
861 fi
862 fi
863 else
864 echo "`date -u '+%b %e %T'`: Using installed toolchain" | tee -a $LOGFILE
865 prepareenv
866 fi
867 buildbase
868 buildipcop
869 buildinstaller
870 buildpackages
871 ;;
872 shell)
873 # enter a shell inside LFS chroot
874 # may be used to changed kernel settings
875 prepareenv
876 entershell
877 ;;
878 changelog)
879 echo -n "Loading new Changelog from SVN: "
880 svn log http://svn.ipfire.eu/svn/ipfire > doc/ChangeLog
881 echo "Finished!"
882 ;;
883 check)
884 echo "Checking sources files availability on the web"
885 if [ ! -d $DIR_CHK ]; then
886 mkdir -p $DIR_CHK
887 fi
888 FINISHED=0
889 cd $BASEDIR/lfs
890 for c in `seq $MAX_RETRIES`; do
891 if (( FINISHED==1 )); then
892 break
893 fi
894 FINISHED=1
895 cd $BASEDIR/lfs
896 for i in *; do
897 if [ -f "$i" -a "$i" != "Config" ]; then
898 make -s -f $i MACHINE=$MACHINE LFS_BASEDIR=$BASEDIR ROOT=$BASEDIR/build \
899 MESSAGE="$i\t ($c/$MAX_RETRIES)" check
900 if [ $? -ne 0 ]; then
901 echo "Check : wget error in lfs/$i"
902 FINISHED=0
903 fi
904 fi
905 done
906 done
907 cd -
908 ;;
909 checkclean)
910 echo "Erasing sources files availability tags"
911 rm -rf $DIR_CHK/*
912 ;;
913 clean)
914 for i in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
915 $LOSETUP -d $i 2>/dev/null
916 done
917 for i in `mount | grep $BASEDIR | cut -d " " -f 1`; do
918 umount $i
919 done
920 stdumount
921 for i in `seq 0 7`; do
922 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
923 umount /dev/loop${i} 2>/dev/null;
924 losetup -d /dev/loop${i} 2>/dev/null;
925 fi;
926 done
927 rm -rf $BASEDIR/build
928 rm -rf $BASEDIR/cdrom
929 rm -rf $BASEDIR/packages
930 rm -rf $BASEDIR/log
931 if [ -h /tools ]; then
932 rm -f /tools
933 fi
934 ;;
935 dist)
936 echo -ne "Updating & building source package from SVN: "
937 svn up > /dev/null
938 svn export http://svn.ipfire.eu/svn/ipfire ipfire-source/ --force > /dev/null
939 tar cfz ipfire-source-`date +'%Y-%m-%d'`-r`svn info | grep Revision | cut -c 11-`.tar.gz ipfire-source
940 rm ipfire-source/ -r
941 echo "Finished!"
942 ;;
943 newpak)
944 # create structure for a new package
945 echo -e "Name of the new package: $2"
946 if [ ! -f "lfs/$2" ]; then
947 echo "`date -u '+%b %e %T'`: Creating directory src/paks/$2"
948 mkdir -p src/paks/$2
949 cd src/paks/$2
950 echo "`date -u '+%b %e %T'`: Creating files"
951 cp $BASEDIR/lfs/postfix $BASEDIR/lfs/$2
952
953 touch ROOTFILES
954 touch CONFFILES
955 touch {,un}install.sh
956 ## install.sh
957 echo '#!/bin/bash' > install.sh
958 echo '#' >> install.sh
959 echo '#################################################################' >> install.sh
960 echo '# #' >> install.sh
961 echo '# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #' >> install.sh
962 echo '# #' >> install.sh
963 echo '#################################################################' >> install.sh
964 echo '#' >> install.sh
965 echo '# Extract the files' >> install.sh
966 echo 'tar xfz files.tgz -C /' >> install.sh
967 echo 'cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2' >> install.sh
968 ## uninstall.sh
969 echo '#!/bin/bash' > uninstall.sh
970 echo '#################################################################' >> uninstall.sh
971 echo '# #' >> uninstall.sh
972 echo '# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #' >> uninstall.sh
973 echo '# #' >> uninstall.sh
974 echo '#################################################################' >> uninstall.sh
975 echo '#' >> uninstall.sh
976 echo '# Delete the files' >> uninstall.sh
977 echo '## Befehl fehlt noch' >> uninstall.sh
978 echo 'rm -f /opt/pakfire/installed/ROOTFILES.$2' >> uninstall.sh
979 echo "`date -u '+%b %e %T'`: Adding files to SVN"
980 cd - && svn add lfs/$2 && svn add src/paks/$2
981
982 echo -n "Do you want to remove the folders? [y/n]"
983 read REM
984 if [ "$REM" == "y" ]; then
985 echo "Removing the folders..."
986 svn del src/paks/$2 --force
987 else
988 echo "Folders are kept."
989 fi
990 else
991 echo "$2 already exists"
992 fi
993 exit 0
994 ;;
995 prefetch)
996 if [ ! -d $BASEDIR/cache ]; then
997 mkdir $BASEDIR/cache
998 fi
999 mkdir -p $BASEDIR/log
1000 echo "`date -u '+%b %e %T'`:Preload all source files" | tee -a $LOGFILE
1001 FINISHED=0
1002 cd $BASEDIR/lfs
1003 for c in `seq $MAX_RETRIES`; do
1004 if (( FINISHED==1 )); then
1005 break
1006 fi
1007 FINISHED=1
1008 cd $BASEDIR/lfs
1009 for i in *; do
1010 if [ -f "$i" -a "$i" != "Config" ]; then
1011 make -s -f $i LFS_BASEDIR=$BASEDIR MESSAGE="$i\t ($c/$MAX_RETRIES)" download >> $LOGFILE 2>&1
1012 if [ $? -ne 0 ]; then
1013 echo "Prefetch : wget error in lfs/$i"
1014 FINISHED=0
1015 else
1016 if [ $c -eq 1 ]; then
1017 echo "Prefetch : lfs/$i files loaded"
1018 fi
1019 fi
1020 fi
1021 done
1022 done
1023 echo "Prefetch : verifying md5sum"
1024 ERROR=0
1025 for i in *; do
1026 if [ -f "$i" -a "$i" != "Config" ]; then
1027 make -s -f $i LFS_BASEDIR=$BASEDIR MESSAGE="$i\t " md5 >> $LOGFILE 2>&1
1028 if [ $? -ne 0 ]; then
1029 echo "md5 difference in lfs/$i"
1030 ERROR=1
1031 fi
1032 fi
1033 done
1034 if [ $ERROR -eq 0 ]; then
1035 echo "Prefetch : all files md5sum match"
1036 fi
1037 cd -
1038 ;;
1039 toolchain)
1040 prepareenv
1041 buildtoolchain
1042 BUILDMACHINE=`uname -m`
1043 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $BUILDMACHINE" | tee -a $LOGFILE
1044 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache/$SNAME-$VERSION-toolchain-$BUILDMACHINE.tar.gz \
1045 build/{bin,etc,usr/bin,usr/local} \
1046 build/tools/{bin,etc,*-linux-gnu,include,lib,libexec,sbin,share,var} \
1047 log >> $LOGFILE
1048 md5sum cache/$SNAME-$VERSION-toolchain-$BUILDMACHINE.tar.gz \
1049 > cache/$SNAME-$VERSION-toolchain-$BUILDMACHINE.md5
1050 stdumount
1051 ;;
1052 gettoolchain)
1053 BUILDMACHINE=`uname -m`
1054 # arbitrary name to be updated in case of new toolchain package upload
1055 PACKAGE=$SNAME-1.4-toolchain-$BUILDMACHINE
1056 URL_IPFIRE=`grep URL_IPFIRE lfs/Config | awk '{ print $3 }'`
1057 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $BUILDMACHINE" | tee -a $LOGFILE
1058 cd $BASEDIR/cache
1059 wget $URL_IPFIRE/toolchains/$PACKAGE.tar.gz $URL_IPFIRE/toolchains/$PACKAGE.md5
1060 if [ $? -ne 0 ]; then
1061 echo "`date -u '+%b %e %T'`: error downloading toolchain for $BUILDMACHINE machine" | tee -a $LOGFILE
1062 else
1063 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
1064 echo "`date -u '+%b %e %T'`: toolchain md5 ok" | tee -a $LOGFILE
1065 echo "`date -u '+%b %e %T'`: Uncompressing toolchain" | tee -a $LOGFILE
1066 cd $BASEDIR && tar xvfz cache/$PACKAGE.tar.gz -C .
1067 rm -vf $BASEDIR/cache/$PACKAGE.{tar.gz,md5}
1068 else
1069 exiterror "$PACKAGE.md5 did not match, check downloaded package"
1070 fi
1071 fi
1072 ;;
1073 update)
1074 echo "Load the latest source-files:"
1075 svn update
1076 ;;
1077 commit)
1078 echo "Upload the changed files:"
1079 svn commit
1080 svn up > /dev/null
1081 ;;
1082 make)
1083 echo "Do a complete compile:"
1084 ./make.sh prefetch && ./make.sh build
1085 ;;
1086 diff)
1087 echo -ne "Make a local diff to last SVN revision: "
1088 svn diff > ipfire-diff-`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.diff
1089 echo "Finished!"
1090 echo "Diff was successfully saved to ipfire-diff-`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.diff"
1091 ;;
1092 sync)
1093 echo -e "Syncing Cache to FTP:"
1094 echo -ne "Password for mirror.ipfire.org: "; read PASS
1095 rm -f doc/packages-to-remove-from-ftp
1096 ncftpls -u web3 -p $PASS ftp://mirror.ipfire.org/html/source-packages/source/ > ftplist
1097 for i in `ls -w1 cache/`; do
1098 grep $i ftplist
1099 if [ "$?" -ne "0" ]; then
1100 ncftpput -u web3 -p $PASS mirror.ipfire.org /html/source-packages/source cache/$i
1101 if [ "$?" -eq "0" ]; then
1102 echo -e "$i was successfully uploaded to the ftp server."
1103 else
1104 echo -e "There was an error while uploading $i to the ftp server."
1105 fi
1106 fi
1107 done
1108 for i in `cat ftplist`; do
1109 ls -w1 cache/ | grep $i
1110 if [ "$?" -eq "1" ]; then
1111 echo $i | grep -v toolchain >> doc/packages-to-remove-from-ftp
1112 fi
1113 done
1114 rm -f ftplist
1115 ;;
1116 *)
1117 echo "Usage: $0 {build|changelog|check|checkclean|clean|commit|diff|dist|gettoolchain|make|newpak|prefetch|shell|sync|toolchain|update}"
1118 cat doc/make.sh-usage
1119 exit 1
1120 ;;
1121 esac