]> git.ipfire.org Git - ipfire-2.x.git/blob - make.sh
Hinzugefuegt:
[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 if [ ! `ls -w1 $BASEDIR/packages/*.tar.gz | grep $1` ]; then
339 echo "`date -u '+%b %e %T'`: Packaging $1" | tee -a $LOGFILE
340 cp -f $BASEDIR/src/scripts/make-packages.sh $BASEDIR/build/usr/local/bin
341 chroot $LFS /tools/bin/env -i HOME=/root \
342 TERM=$TERM PS1='\u:\w\$ ' \
343 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
344 VERSION=$VERSION \
345 CONFIG_ROOT=$CONFIG_ROOT \
346 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
347 CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" \
348 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
349 KVER=$KVER \
350 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
351 /bin/bash -x -c "cd /usr/src/lfs && \
352 make -f $1 LFS_BASEDIR=/usr/src dist" >>$LOGFILE 2>&1
353 if [ $? -ne 0 ]; then
354 exiterror "Packaging $1"
355 fi
356 else
357 echo "`date -u '+%b %e %T'`: Packaging: The package $1 already exists"
358 fi
359 else
360 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
361 fi
362 return 0
363 }
364
365
366 installmake() {
367 if [ -f $BASEDIR/build/usr/src/lfs/$1 ]; then
368 echo "`date -u '+%b %e %T'`: Building $*" | tee -a $LOGFILE
369 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t " download >> $LOGFILE 2>&1
370 if [ $? -ne 0 ]; then
371 exiterror "Download error in $1"
372 fi
373 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t md5sum" md5 >> $LOGFILE 2>&1
374 if [ $? -ne 0 ]; then
375 exiterror "md5sum error in $1, check file in cache or signature"
376 fi
377 chroot $LFS /tools/bin/env -i HOME=/root \
378 TERM=$TERM PS1='\u:\w\$ ' \
379 PATH=/usr/local/bin:/opt/$MACHINE-uClibc/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin \
380 VERSION=$VERSION \
381 CONFIG_ROOT=$CONFIG_ROOT \
382 LFS_PASS="install" \
383 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
384 CFLAGS="-Os" CXXFLAGS="-Os" \
385 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
386 KVER=$KVER \
387 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
388 /bin/bash -x -c "cd /usr/src/lfs && \
389 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
390 if [ $? -ne 0 ]; then
391 exiterror "Building $*"
392 fi
393 else
394 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
395 fi
396 return 0
397 }
398
399 buildtoolchain() {
400 LOGFILE="$BASEDIR/log/_build.toolchain.log"
401 export LOGFILE
402 echo -ne "`date -u '+%b %e %T'`: Stage1 toolchain build \n" | tee -a $LOGFILE
403 # Build sed now, as we use some extensions
404 ORG_PATH=$PATH
405 NATIVEGCC=`gcc --version | grep GCC | awk {'print $3'}`
406 export NATIVEGCC GCCmajor=${NATIVEGCC:0:1} GCCminor=${NATIVEGCC:2:1} GCCrelease=${NATIVEGCC:4:1}
407 lfsmake1 ccache
408 lfsmake1 sed LFS_PASS=1
409 lfsmake1 m4 LFS_PASS=1
410 lfsmake1 bison LFS_PASS=1
411 lfsmake1 flex LFS_PASS=1
412 lfsmake1 binutils LFS_PASS=1
413 lfsmake1 gcc LFS_PASS=1
414 export PATH=$BASEDIR/build/usr/local/bin:$BASEDIR/build/tools/bin:$PATH
415
416 lfsmake1 linux
417 lfsmake1 tcl
418 lfsmake1 expect
419 lfsmake1 glibc
420 lfsmake1 dejagnu
421 lfsmake1 gcc LFS_PASS=2
422 lfsmake1 binutils LFS_PASS=2
423 lfsmake1 gawk
424 lfsmake1 coreutils
425 lfsmake1 bzip2
426 lfsmake1 gzip
427 lfsmake1 diffutils
428 lfsmake1 findutils
429 lfsmake1 make
430 lfsmake1 grep
431 lfsmake1 sed LFS_PASS=2
432 lfsmake1 m4 LFS_PASS=2
433 lfsmake1 bison LFS_PASS=2
434 lfsmake1 flex LFS_PASS=2
435 lfsmake1 gettext
436 lfsmake1 ncurses
437 lfsmake1 patch
438 lfsmake1 tar
439 lfsmake1 texinfo
440 lfsmake1 bash
441 lfsmake1 util-linux
442 lfsmake1 perl
443 export PATH=$ORG_PATH
444 }
445
446 buildbase() {
447 LOGFILE="$BASEDIR/log/_build.base.log"
448 export LOGFILE
449 echo -ne "`date -u '+%b %e %T'`: Stage2 linux base build \n" | tee -a $LOGFILE
450 # Run LFS dynamic binary creation scripts one by one
451 lfsmake2 stage2
452 lfsmake2 makedev
453 lfsmake2 linux
454 lfsmake2 man-pages
455 lfsmake2 glibc
456 lfsmake2 binutils
457 lfsmake2 gcc
458 lfsmake2 coreutils
459 lfsmake2 zlib
460 lfsmake2 mktemp
461 lfsmake2 iana-etc
462 lfsmake2 findutils
463 lfsmake2 gawk
464 lfsmake2 ncurses
465 lfsmake2 vim
466 lfsmake2 m4
467 lfsmake2 bison
468 lfsmake2 less
469 lfsmake2 groff
470 lfsmake2 sed
471 lfsmake2 flex
472 lfsmake2 gettext
473 lfsmake2 net-tools
474 lfsmake2 inetutils
475 lfsmake2 perl
476 lfsmake2 texinfo
477 lfsmake2 autoconf
478 lfsmake2 automake
479 lfsmake2 bash
480 lfsmake2 file
481 lfsmake2 libtool
482 lfsmake2 bzip2
483 lfsmake2 diffutils
484 lfsmake2 ed
485 lfsmake2 kbd
486 lfsmake2 e2fsprogs
487 lfsmake2 grep
488 if [ 'i386' = $MACHINE ]; then
489 lfsmake2 grub
490 elif [ 'alpha' = $MACHINE ]; then
491 lfsmake2 aboot
492 fi
493 lfsmake2 gzip
494 lfsmake2 man
495 lfsmake2 make
496 lfsmake2 modutils
497 lfsmake2 patch
498 lfsmake2 procinfo
499 lfsmake2 procps
500 lfsmake2 psmisc
501 lfsmake2 shadow
502 lfsmake2 sysklogd
503 lfsmake2 sysvinit
504 lfsmake2 tar
505 lfsmake2 util-linux
506 }
507
508 buildipcop() {
509 # Run IPFire make scripts one by one
510 LOGFILE="$BASEDIR/log/_build.ipfire.log"
511 export LOGFILE
512 echo -ne "`date -u '+%b %e %T'`: Stage3 $NAME build \n" | tee -a $LOGFILE
513
514 # Build these first as some of the kernel packages below rely on
515 # these for some of their client program functionality
516 ipcopmake configroot
517 ipcopmake dhcp
518 ipcopmake dhcpcd
519 ipcopmake libusb
520 ipcopmake libpcap
521 ipcopmake linux-atm
522 ipcopmake ppp
523 ipcopmake rp-pppoe
524 ipcopmake unzip
525 # Do SMP now
526 if [ 'i386' = $MACHINE ]; then
527 # abuse the SMP flag, and make an minimal installer kernel first
528 # so that the boot floppy always works.....
529 ipcopmake linux LFS_PASS=ipfire SMP=installer
530 ipcopmake linux LFS_PASS=ipfire SMP=1
531 ipcopmake 3cp4218 SMP=1
532 ipcopmake amedyn SMP=1
533 ipcopmake cxacru SMP=1
534 ipcopmake eagle SMP=1
535
536 # These are here because they have i386 only binary libraries
537 # included in the package.
538 ipcopmake cnx_pci SMP=1
539 ipcopmake fcdsl SMP=1
540 ipcopmake fcdsl2 SMP=1
541 ipcopmake fcdslsl SMP=1
542 ipcopmake fcdslusb SMP=1
543 ipcopmake fcdslslusb SMP=1
544 ipcopmake fcpci SMP=1
545 ipcopmake fcclassic SMP=1
546 ipcopmake pulsar SMP=1
547 ipcopmake unicorn SMP=1
548 fi
549
550 ipcopmake linux LFS_PASS=ipfire
551 ipcopmake 3cp4218
552 ipcopmake amedyn
553 ipcopmake cxacru
554 ipcopmake eciadsl
555 ipcopmake eagle
556 ipcopmake speedtouch
557 if [ 'i386' = $MACHINE ]; then
558 # These are here because they have i386 only binary libraries
559 # included in the package.
560 ipcopmake cnx_pci
561 ipcopmake fcdsl
562 ipcopmake fcdsl2
563 ipcopmake fcdslsl
564 ipcopmake fcdslusb
565 ipcopmake fcdslslusb
566 ipcopmake fcpci
567 ipcopmake fcclassic
568 ipcopmake pulsar
569 ipcopmake unicorn
570 fi
571
572 ipcopmake pcmcia-cs
573 ipcopmake expat
574 ipcopmake gdbm
575 ipcopmake gmp
576 ipcopmake openssl
577 ipcopmake python
578 ipcopmake libnet
579 ipcopmake libpng
580 ipcopmake gd
581 ipcopmake popt
582 ipcopmake slang
583 ipcopmake newt
584 ipcopmake libcap
585 ipcopmake pciutils
586 ipcopmake pcre
587 ipcopmake apache
588 ipcopmake arping
589 ipcopmake beep
590 ipcopmake bind
591 ipcopmake capi4k-utils
592 ipcopmake cdrtools
593 ipcopmake dnsmasq
594 ipcopmake dosfstools
595 ipcopmake ethtool
596 ipcopmake ez-ipupdate
597 ipcopmake fcron
598 ipcopmake perl-GD
599 ipcopmake gnupg
600 ipcopmake hdparm
601 ipcopmake ibod
602 ipcopmake initscripts
603 ipcopmake iptables
604 ipcopmake ipac-ng
605 ipcopmake ipaddr
606 ipcopmake iproute2
607 ipcopmake iptstate
608 ipcopmake iputils
609 ipcopmake l7-protocols
610 ipcopmake isapnptools
611 ipcopmake isdn4k-utils
612 ipcopmake kudzu
613 ipcopmake logrotate
614 ipcopmake logwatch
615 ipcopmake mingetty
616 ipcopmake misc-progs
617 ipcopmake mtools
618 ipcopmake nano
619 ipcopmake nash
620 ipcopmake nasm
621 ipcopmake URI
622 ipcopmake HTML-Tagset
623 ipcopmake HTML-Parser
624 ipcopmake Compress-Zlib
625 ipcopmake Digest
626 ipcopmake Digest-SHA1
627 ipcopmake Digest-HMAC
628 ipcopmake libwww-perl
629 ipcopmake Net-DNS
630 ipcopmake Net-IPv4Addr
631 ipcopmake Net_SSLeay
632 ipcopmake IO-Stringy
633 ipcopmake Unix-Syslog
634 ipcopmake Mail-Tools
635 ipcopmake MIME-Tools
636 ipcopmake Net-Server
637 ipcopmake Convert-TNEF
638 ipcopmake Convert-UUlib
639 ipcopmake Archive-Tar
640 ipcopmake Archive-Zip
641 ipcopmake Locale-Country
642 ipcopmake GeoIP
643 ipcopmake fwhits
644 ipcopmake berkeley
645 ipcopmake BerkeleyDB ## The Perl module
646 ipcopmake noip_updater
647 ipcopmake ntp
648 ipcopmake oinkmaster
649 ipcopmake openssh
650 ipcopmake openswan
651 ipcopmake pptpclient
652 ipcopmake rrdtool
653 ipcopmake setserial
654 ipcopmake setup
655 ipcopmake snort
656 #ipcopmake speedycgi
657 ipcopmake saslauthd PASS=1
658 ipcopmake openldap
659 ipcopmake saslauthd PASS=2
660 ipcopmake squid
661 ipcopmake squid-graph
662 ipcopmake squidguard
663 ipcopmake tcpdump
664 ipcopmake traceroute
665 ipcopmake vlan
666 #ipcopmake wireless
667 ipcopmake libsafe
668 ipcopmake 3c5x9setup
669 echo -ne "`date -u '+%b %e %T'`: Building ### IPFire modules ### \n" | tee -a $LOGFILE
670 ipcopmake pakfire
671 ipcopmake startscripts
672 ## Zuerst die Libs und dann die Programme. Ordnung muss sein!
673 ipcopmake java
674 ipcopmake libtiff
675 ipcopmake libjpeg
676 ipcopmake libxml2
677 ipcopmake spandsp
678 ipcopmake lzo
679 ipcopmake openvpn
680 ipcopmake pkg-config
681 ipcopmake glib
682 ipcopmake xampp
683 ipcopmake pam
684 ipcopmake pammysql
685 ipcopmake xinetd
686 ipcopmake ghostscript
687 ipcopmake cups
688 # ipcopmake lpd ## Im Moment aus, da CUPS vorhanden ist.
689 ipcopmake samba
690 ipcopmake sudo
691 ipcopmake mc
692 ipcopmake pwlib
693 ipcopmake openh323
694 ipcopmake wget
695 ipcopmake wput
696 ipcopmake bridge-utils
697 ipcopmake screen
698 ipcopmake hddtemp
699 ipcopmake htop
700 ipcopmake lynx
701 echo -ne "`date -u '+%b %e %T'`: Building ### Mailserver ### \n" | tee -a $LOGFILE
702 ipcopmake postfix
703 ipcopmake procmail
704 ipcopmake fetchmail
705 ipcopmake cyrusimap
706 ipcopmake mailx
707 ipcopmake clamav
708 ipcopmake razor
709 ipcopmake spamassassin
710 ipcopmake amavisd
711 echo -ne "`date -u '+%b %e %T'`: Building ### VoIP-Server ### \n" | tee -a $LOGFILE
712 ipcopmake stund
713 ipcopmake asterisk
714 echo -ne "`date -u '+%b %e %T'`: Building ### MP3-Server ### \n" | tee -a $LOGFILE
715 ipcopmake lame
716 ipcopmake gnump3d
717 echo -ne "`date -u '+%b %e %T'`: Building ### P2P-Clients ### \n" | tee -a $LOGFILE
718 ipcopmake applejuice
719 ipcopmake edonkeyclc
720 ipcopmake sane
721 echo -ne "`date -u '+%b %e %T'`: Building ### Net-Tools ### \n" | tee -a $LOGFILE
722 ipcopmake ntop
723 ipcopmake rsync
724 ipcopmake tcpwrapper
725 ipcopmake portmap
726 ipcopmake nmap
727 ipcopmake iftop
728 ipcopmake nfs
729 ipcopmake ncftp
730 ipcopmake cftp
731 ipcopmake etherwake
732 ipcopmake ethereal
733 # ipcopmake stunnel # Ausgeschaltet, weil wir es doch nicht nutzen
734 }
735
736 buildinstaller() {
737 # Run installer scripts one by one
738 LOGFILE="$BASEDIR/log/_build.installer.log"
739 export LOGFILE
740 echo -ne "`date -u '+%b %e %T'`: Stage4 installer build \n" | tee -a $LOGFILE
741 if [ 'i386' = $MACHINE ]; then
742 ipcopmake syslinux
743 ipcopmake as86
744 ipcopmake mbr
745 ipcopmake uClibc
746 fi
747 installmake busybox
748 installmake sysvinit
749 installmake e2fsprogs
750 installmake misc-progs
751 installmake slang
752 installmake util-linux
753 installmake newt
754 installmake pciutils
755 installmake pcmcia-cs
756 installmake kbd
757 installmake installer
758 installmake scsi.img
759 installmake driver.img
760 installmake initrd
761 installmake boot.img
762 }
763
764 buildpackages() {
765 LOGFILE="$BASEDIR/log/_build.packages.log"
766 export LOGFILE
767 echo "... see detailed log in _build.*.log files" >> $LOGFILE
768 echo -ne "`date -u '+%b %e %T'`: Stage5 packages build \n" | tee -a $LOGFILE
769 # Strip files
770 echo "`date -u '+%b %e %T'`: Stripping files" | tee -a $LOGFILE
771 find $LFS/lib $LFS/usr/lib $LFS/usr/share/rrdtool-* $LFS/install ! -type l \( -name '*.so' -o -name '*.so[\.0-9]*' \) \
772 ! -name 'libc.so' ! -name 'libpthread.so' ! -name 'libcrypto.so.0.9.7.sha1' \
773 -exec $LFS/tools/bin/strip --strip-all {} \; >> $LOGFILE 2>&1
774 # add -ls before -exec if you want to verify what files are stripped
775
776 find $LFS/{,s}bin $LFS/usr/{,s}bin $LFS/usr/local/{,s}bin ! -type l \
777 -exec file {} \; | grep " ELF " | cut -f1 -d ':' | xargs $LFS/tools/bin/strip --strip-all >> $LOGFILE 2>&1
778 # there add -v to strip to verify
779
780 if [ 'i386' = $MACHINE ]; then
781 # Create fcdsl packages
782 echo "`date -u '+%b %e %T'`: Building fcdsl tgz" | tee -a $LOGFILE
783 cp $LFS/install/images/fcdsl/license.txt $LFS >> $LOGFILE 2>&1
784 touch $LFS/var/run/{need-depmod-$KVER,need-depmod-$KVER-smp}
785 cd $LFS && tar cvfz $LFS/install/images/$SNAME-fcdsl-$VERSION.$MACHINE.tgz \
786 lib/modules/$KVER/misc/fcdsl*.o.gz \
787 lib/modules/$KVER-smp/misc/fcdsl*.o.gz \
788 usr/lib/isdn/{fds?base.bin,fd?ubase.frm} \
789 etc/fcdsl/fcdsl*.conf \
790 etc/drdsl/{drdsl,drdsl.ini} \
791 license.txt \
792 var/run/{need-depmod-$KVER,need-depmod-$KVER-smp} >> $LOGFILE 2>&1
793 rm -f $LFS/license.txt >> $LOGFILE 2>&1
794 cd $BASEDIR
795 fi
796
797 # Generating list of packages used
798 echo "`date -u '+%b %e %T'`: Generating packages list from logs" | tee -a $LOGFILE
799 rm -f $BASEDIR/doc/packages-list
800 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
801 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
802 echo " * `basename $i`" >>$BASEDIR/doc/packages-list
803 fi
804 done
805 echo "====== List of softwares used to build $NAME Version: $VERSION ======" > $BASEDIR/doc/packages-list.txt
806 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|ipcop$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$' \
807 $BASEDIR/doc/packages-list | sort >> $BASEDIR/doc/packages-list.txt
808 rm -f $BASEDIR/doc/packages-list
809 # packages-list.txt is ready to be displayed for wiki page
810
811 # Create ISO for CDRom and USB-superfloppy
812 ipcopmake cdrom
813 rm -f $LFS/install/images/*usb*
814 cp $LFS/install/images/{*.iso,*.tgz} $BASEDIR >> $LOGFILE 2>&1
815
816 ipfirepackages
817
818 # Cleanup
819 stdumount
820 rm -rf $BASEDIR/build/tmp/*
821
822 # Generating total list of files
823 echo "`date -u '+%b %e %T'`: Generating files list from logs" | tee -a $LOGFILE
824 rm -f $BASEDIR/log/FILES
825 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
826 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
827 echo "##" >>$BASEDIR/log/FILES
828 echo "## `basename $i`" >>$BASEDIR/log/FILES
829 echo "##" >>$BASEDIR/log/FILES
830 cat $i | sed "s%^\./%#%" | sort >> $BASEDIR/log/FILES
831 fi
832 done
833
834 cd $PWD
835
836 }
837
838 ipfirepackages() {
839 ipfiredist applejuice
840 ipfiredist asterisk
841 ipfiredist cyrusimap
842 ipfiredist fetchmail
843 ipfiredist gnump3d
844 ipfiredist java
845 ipfiredist lame
846 ipfiredist libtiff
847 ipfiredist libxml2
848 ipfiredist mc
849 ipfiredist ntop
850 ipfiredist postfix
851 ipfiredist pwlib
852 ipfiredist samba
853 ipfiredist sane
854 ipfiredist spandsp
855 ipfiredist sudo
856 ipfiredist xampp
857 ipfiredist xinetd
858 test -d $BASEDIR/packages || mkdir $BASEDIR/packages
859 mv -f $LFS/paks/*.tar.gz $LFS/paks/*.md5 $BASEDIR/packages >> $LOGFILE 2>&1
860 rm -rf $LFS/paks
861 rm -rf $BASEDIR/build/tmp/*
862 }
863
864 # See what we're supposed to do
865 case "$1" in
866 build)
867 BUILDMACHINE=`uname -m`
868 PACKAGE=`ls -v -r $BASEDIR/cache/$SNAME-1.4-toolchain-$BUILDMACHINE.tar.gz 2> /dev/null | head -n 1`
869 #only restore on a clean disk
870 if [ ! -f log/perl-*-tools ]; then
871 if [ ! -n "$PACKAGE" ]; then
872 echo "`date -u '+%b %e %T'`: Full toolchain compilation" | tee -a $LOGFILE
873 prepareenv
874 buildtoolchain
875 else
876 PACKAGENAME=${PACKAGE%.tar.gz}
877 echo "`date -u '+%b %e %T'`: Restore from $PACKAGE" | tee -a $LOGFILE
878 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
879 tar zxf $PACKAGE
880 prepareenv
881 else
882 exiterror "$PACKAGENAME md5 did not match, check downloaded package"
883 fi
884 fi
885 else
886 echo "`date -u '+%b %e %T'`: Using installed toolchain" | tee -a $LOGFILE
887 prepareenv
888 fi
889 buildbase
890 buildipcop
891 buildinstaller
892 buildpackages
893 ;;
894 shell)
895 # enter a shell inside LFS chroot
896 # may be used to changed kernel settings
897 prepareenv
898 entershell
899 ;;
900 changelog)
901 echo -n "Loading new Changelog from SVN: "
902 svn log http://svn.ipfire.eu/svn/ipfire > doc/ChangeLog
903 echo "Finished!"
904 ;;
905 check)
906 echo "Checking sources files availability on the web"
907 if [ ! -d $DIR_CHK ]; then
908 mkdir -p $DIR_CHK
909 fi
910 FINISHED=0
911 cd $BASEDIR/lfs
912 for c in `seq $MAX_RETRIES`; do
913 if (( FINISHED==1 )); then
914 break
915 fi
916 FINISHED=1
917 cd $BASEDIR/lfs
918 for i in *; do
919 if [ -f "$i" -a "$i" != "Config" ]; then
920 make -s -f $i MACHINE=$MACHINE LFS_BASEDIR=$BASEDIR ROOT=$BASEDIR/build \
921 MESSAGE="$i\t ($c/$MAX_RETRIES)" check
922 if [ $? -ne 0 ]; then
923 echo "Check : wget error in lfs/$i"
924 FINISHED=0
925 fi
926 fi
927 done
928 done
929 cd -
930 ;;
931 checkclean)
932 echo "Erasing sources files availability tags"
933 rm -rf $DIR_CHK/*
934 ;;
935 clean)
936 for i in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
937 $LOSETUP -d $i 2>/dev/null
938 done
939 for i in `mount | grep $BASEDIR | cut -d " " -f 1`; do
940 umount $i
941 done
942 stdumount
943 for i in `seq 0 7`; do
944 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
945 umount /dev/loop${i} 2>/dev/null;
946 losetup -d /dev/loop${i} 2>/dev/null;
947 fi;
948 done
949 rm -rf $BASEDIR/build
950 rm -rf $BASEDIR/cdrom
951 rm -rf $BASEDIR/packages
952 rm -rf $BASEDIR/log
953 if [ -h /tools ]; then
954 rm -f /tools
955 fi
956 ;;
957 dist)
958 echo -ne "Updating & building source package from SVN: "
959 svn up > /dev/null
960 svn export http://svn.ipfire.eu/svn/ipfire ipfire-source/ --force > /dev/null
961 tar cfz ipfire-source-`date +'%Y-%m-%d'`-r`svn info | grep Revision | cut -c 11-`.tar.gz ipfire-source
962 rm ipfire-source/ -r
963 echo "Finished!"
964 ;;
965 newpak)
966 # create structure for a new package
967 echo -e "Name of the new package: $2"
968 if [ ! -f "lfs/$2" ]; then
969 echo "`date -u '+%b %e %T'`: Creating directory src/paks/$2"
970 mkdir -p src/paks/$2
971 cd src/paks/$2
972 echo "`date -u '+%b %e %T'`: Creating files"
973 cp $BASEDIR/lfs/postfix $BASEDIR/lfs/$2
974
975 touch ROOTFILES
976 touch CONFFILES
977 touch {,un}install.sh
978 ## install.sh
979 echo '#!/bin/bash' > install.sh
980 echo '#' >> install.sh
981 echo '#################################################################' >> install.sh
982 echo '# #' >> install.sh
983 echo '# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #' >> install.sh
984 echo '# #' >> install.sh
985 echo '#################################################################' >> install.sh
986 echo '#' >> install.sh
987 echo '# Extract the files' >> install.sh
988 echo 'tar xfz files.tgz -C /' >> install.sh
989 echo 'cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2' >> install.sh
990 ## uninstall.sh
991 echo '#!/bin/bash' > uninstall.sh
992 echo '#################################################################' >> uninstall.sh
993 echo '# #' >> uninstall.sh
994 echo '# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #' >> uninstall.sh
995 echo '# #' >> uninstall.sh
996 echo '#################################################################' >> uninstall.sh
997 echo '#' >> uninstall.sh
998 echo '# Delete the files' >> uninstall.sh
999 echo '## Befehl fehlt noch' >> uninstall.sh
1000 echo 'rm -f /opt/pakfire/installed/ROOTFILES.$2' >> uninstall.sh
1001 echo "`date -u '+%b %e %T'`: Adding files to SVN"
1002 cd - && svn add lfs/$2 && svn add src/paks/$2
1003
1004 echo -n "Do you want to remove the folders? [y/n]"
1005 read REM
1006 if [ "$REM" == "y" ]; then
1007 echo "Removing the folders..."
1008 svn del src/paks/$2 --force
1009 else
1010 echo "Folders are kept."
1011 fi
1012 else
1013 echo "$2 already exists"
1014 fi
1015 exit 0
1016 ;;
1017 prefetch)
1018 if [ ! -d $BASEDIR/cache ]; then
1019 mkdir $BASEDIR/cache
1020 fi
1021 mkdir -p $BASEDIR/log
1022 echo "`date -u '+%b %e %T'`:Preload all source files" | tee -a $LOGFILE
1023 FINISHED=0
1024 cd $BASEDIR/lfs
1025 for c in `seq $MAX_RETRIES`; do
1026 if (( FINISHED==1 )); then
1027 break
1028 fi
1029 FINISHED=1
1030 cd $BASEDIR/lfs
1031 for i in *; do
1032 if [ -f "$i" -a "$i" != "Config" ]; then
1033 make -s -f $i LFS_BASEDIR=$BASEDIR MESSAGE="$i\t ($c/$MAX_RETRIES)" download >> $LOGFILE 2>&1
1034 if [ $? -ne 0 ]; then
1035 echo "Prefetch : wget error in lfs/$i"
1036 FINISHED=0
1037 else
1038 if [ $c -eq 1 ]; then
1039 echo "Prefetch : lfs/$i files loaded"
1040 fi
1041 fi
1042 fi
1043 done
1044 done
1045 echo "Prefetch : verifying md5sum"
1046 ERROR=0
1047 for i in *; do
1048 if [ -f "$i" -a "$i" != "Config" ]; then
1049 make -s -f $i LFS_BASEDIR=$BASEDIR MESSAGE="$i\t " md5 >> $LOGFILE 2>&1
1050 if [ $? -ne 0 ]; then
1051 echo "md5 difference in lfs/$i"
1052 ERROR=1
1053 fi
1054 fi
1055 done
1056 if [ $ERROR -eq 0 ]; then
1057 echo "Prefetch : all files md5sum match"
1058 fi
1059 cd -
1060 ;;
1061 toolchain)
1062 prepareenv
1063 buildtoolchain
1064 BUILDMACHINE=`uname -m`
1065 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $BUILDMACHINE" | tee -a $LOGFILE
1066 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache/$SNAME-$VERSION-toolchain-$BUILDMACHINE.tar.gz \
1067 build/{bin,etc,usr/bin,usr/local} \
1068 build/tools/{bin,etc,*-linux-gnu,include,lib,libexec,sbin,share,var} \
1069 log >> $LOGFILE
1070 md5sum cache/$SNAME-$VERSION-toolchain-$BUILDMACHINE.tar.gz \
1071 > cache/$SNAME-$VERSION-toolchain-$BUILDMACHINE.md5
1072 stdumount
1073 ;;
1074 gettoolchain)
1075 BUILDMACHINE=`uname -m`
1076 # arbitrary name to be updated in case of new toolchain package upload
1077 PACKAGE=$SNAME-1.4-toolchain-$BUILDMACHINE
1078 URL_IPFIRE=`grep URL_IPFIRE lfs/Config | awk '{ print $3 }'`
1079 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $BUILDMACHINE" | tee -a $LOGFILE
1080 cd $BASEDIR/cache
1081 wget $URL_IPFIRE/toolchains/$PACKAGE.tar.gz $URL_IPFIRE/toolchains/$PACKAGE.md5 >& /dev/null
1082 if [ $? -ne 0 ]; then
1083 echo "`date -u '+%b %e %T'`: error downloading toolchain for $BUILDMACHINE machine" | tee -a $LOGFILE
1084 # else
1085 # if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
1086 # echo "`date -u '+%b %e %T'`: toolchain md5 ok" | tee -a $LOGFILE
1087 # echo "`date -u '+%b %e %T'`: Uncompressing toolchain" | tee -a $LOGFILE
1088 # cd $BASEDIR && tar xfz cache/$PACKAGE.tar.gz -C .
1089 # rm -f $BASEDIR/cache/$PACKAGE.{tar.gz,md5}
1090 # else
1091 # exiterror "$PACKAGE.md5 did not match, check downloaded package"
1092 # fi
1093 fi
1094 ;;
1095 paks)
1096 prepareenv
1097 buildpackages
1098 # ipfirepackages
1099 ;;
1100 update)
1101 echo "Load the latest source-files:"
1102 svn update
1103 ;;
1104 commit)
1105 echo "Upload the changed files:"
1106 svn commit
1107 ./make.sh sync
1108 svn up > /dev/null
1109 ;;
1110 make)
1111 echo "Do a complete compile:"
1112 ./make.sh prefetch && ./make.sh gettoolchain && ./make.sh build
1113 ;;
1114 diff)
1115 echo -ne "Make a local diff to last SVN revision: "
1116 svn diff > ipfire-diff-`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.diff
1117 echo "Finished!"
1118 echo "Diff was successfully saved to ipfire-diff-`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.diff"
1119 ;;
1120 sync)
1121 echo -e "Syncing Cache to FTP:"
1122 echo -ne "Password for mirror.ipfire.org: "; read PASS
1123 rm -f doc/packages-to-remove-from-ftp
1124 ncftpls -u web3 -p $PASS ftp://mirror.ipfire.org/html/source-packages/source/ > ftplist
1125 for i in `ls -w1 cache/`; do
1126 grep $i ftplist
1127 if [ "$?" -ne "0" ]; then
1128 ncftpput -u web3 -p $PASS mirror.ipfire.org /html/source-packages/source cache/$i
1129 if [ "$?" -eq "0" ]; then
1130 echo -e "$i was successfully uploaded to the ftp server."
1131 else
1132 echo -e "There was an error while uploading $i to the ftp server."
1133 fi
1134 fi
1135 done
1136 for i in `cat ftplist`; do
1137 ls -w1 cache/ | grep $i
1138 if [ "$?" -eq "1" ]; then
1139 echo $i | grep -v toolchain >> doc/packages-to-remove-from-ftp
1140 fi
1141 done
1142 rm -f ftplist
1143 ;;
1144 pub-iso)
1145 echo -e "Upload the ISO to the beta-mirror!"
1146 echo -ne "Password for mirror.ipfire.org: "; read PASS
1147 ncftpls -u web3 -p $PASS ftp://mirror.ipfire.org/html/source-packages/beta/ | grep `svn info | grep Revision | cut -c 11-`
1148 if [ "$?" -eq "1" ]; then
1149 cp $BASEDIR/ipfire-install-1.4.i386.iso $BASEDIR/ipfire-install-1.4.i386-r`svn info | grep Revision | cut -c 11-`.iso
1150 md5sum ipfire-install-1.4.i386-r`svn info | grep Revision | cut -c 11-`.iso > ipfire-install-1.4.i386-r`svn info | grep Revision | cut -c 11-`.iso.md5
1151 ncftpput -u web3 -p $PASS mirror.ipfire.org /html/source-packages/beta/ ipfire-install-1.4.i386-r`svn info | grep Revision | cut -c 11-`.iso
1152 ncftpput -u web3 -p $PASS mirror.ipfire.org /html/source-packages/beta/ ipfire-install-1.4.i386-r`svn info | grep Revision | cut -c 11-`.iso.md5
1153 if [ "$?" -eq "0" ]; then
1154 echo -e "The ISO of Revision `svn info | grep Revision | cut -c 11-` was successfully uploaded to the ftp server."
1155 else
1156 echo -e "There was an error while uploading the ISO to the ftp server."
1157 fi
1158 else
1159 echo -e "File with name ipfire-install-1.4.i386-r`svn info | grep Revision | cut -c 11-`.iso already exists on the ftp server!"
1160 fi
1161 rm -f ipfire-install-1.4.i386-r`svn info | grep Revision | cut -c 11-`.iso{,.md5}
1162 ;;
1163 pub-paks)
1164 echo -e "Upload the packages to the beta-mirror!"
1165 echo -ne "Password for mirror.ipfire.org: "; read PASS
1166 ncftpput -z -u web3 -p $PASS mirror.ipfire.org /html/source-packages/packages/ packages/*
1167 if [ "$?" -eq "0" ]; then
1168 echo -e "The packages were successfully uploaded to the ftp server."
1169 else
1170 echo -e "There was an error while uploading the packages to the ftp server."
1171 fi
1172 ;;
1173 *)
1174 echo "Usage: $0 {build|changelog|check|checkclean|clean|commit|diff|dist|gettoolchain|make|newpak|prefetch|pub-iso|pub-paks|shell|sync|toolchain|update}"
1175 cat doc/make.sh-usage
1176 exit 1
1177 ;;
1178 esac