]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - tools/make-functions
Installer fuer ein read-only-Dateisystem angepasst.
[people/pmueller/ipfire-2.x.git] / tools / make-functions
1 #!/bin/bash
2 ############################################################################
3 #
4 # Beautifying variables & presentation & input output interface
5 #
6 ############################################################################
7
8 ## Screen Dimentions
9 # Find current screen size
10 if [ -z "${COLUMNS}" ]; then
11 COLUMNS=$(stty size)
12 COLUMNS=${COLUMNS##* }
13 fi
14
15 # When using remote connections, such as a serial port, stty size returns 0
16 if [ "${COLUMNS}" = "0" ]; then
17 COLUMNS=80
18 fi
19
20 ## Measurements for positioning result messages
21 RESULT_WIDTH=4
22 TIME_WIDTH=8
23 OPT_WIDTH=6
24 VER_WIDTH=10
25 RESULT_COL=$((${COLUMNS} - $RESULT_WIDTH - 4))
26 TIME_COL=$((${RESULT_COL} - $TIME_WIDTH - 5))
27 OPT_COL=$((${TIME_COL} - $OPT_WIDTH - 5))
28 VER_COL=$((${OPT_COL} - $VER_WIDTH - 5))
29
30 ## Set Cursur Position Commands, used via echo -e
31 SET_RESULT_COL="\\033[${RESULT_COL}G"
32 SET_TIME_COL="\\033[${TIME_COL}G"
33 SET_OPT_COL="\\033[${OPT_COL}G"
34 SET_VER_COL="\\033[${VER_COL}G"
35
36 # Define color for messages
37 BOLD="\\033[1;39m"
38 DONE="\\033[1;32m"
39 SKIP="\\033[1;34m"
40 WARN="\\033[1;35m"
41 FAIL="\\033[1;31m"
42 NORMAL="\\033[0;39m"
43
44 evaluate() {
45 if [ "$?" -eq "0" ]; then
46 beautify message DONE
47 else
48 EXITCODE=$1
49 shift 1
50 beautify message FAIL
51 $*
52 if [ $EXITCODE -ne "0" ]; then
53 exit $EXITCODE
54 fi
55 fi
56 }
57
58 position_cursor()
59 {
60 # ARG1=starting position on screen
61 # ARG2=string to be printed
62 # ARG3=offset, negative for left movement, positive for right movement, relative to ARG1
63 # For example if your starting position is column 50 and you want to print Hello three columns to the right
64 # of your starting position, your call will look like this:
65 # position_cursor 50 "Hello" 3 (you'll get the string Hello at position 53 (= 50 + 3)
66 # If on the other hand you want your string "Hello" to end three columns to the left of position 50,
67 # your call will look like this:
68 # position_cursor 50 "Hello" -3 (you'll get the string Hello at position 42 (= 50 - 5 -3)
69 # If you want to start printing at the exact starting location, use offset 0
70
71 START=$1
72 STRING=$2
73 OFFSET=$3
74
75 STRING_LENGTH=${#STRING}
76
77 if [ ${OFFSET} -lt 0 ]; then
78 COL=$((${START} + ${OFFSET} - ${STRING_LENGTH}))
79 else
80 COL=$((${START} + ${OFFSET}))
81 fi
82
83 SET_COL="\\033[${COL}G"
84
85 echo $SET_COL
86 } # End of position_cursor()
87
88
89 beautify()
90 {
91 # Commands: build_stage, make_pkg, message, result
92 case "$1" in
93 message)
94 case "$2" in
95 DONE)
96 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
97 ;;
98 WARN)
99 echo -ne "${WARN}${3}${NORMAL}${SET_RESULT_COL}[${WARN} WARN ${NORMAL}]\n"
100 ;;
101 FAIL)
102 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
103 ;;
104 SKIP)
105 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
106 ;;
107 esac
108 ;;
109 build_stage)
110 MESSAGE=$2
111 if [ "$STAGE_TIME_START" ]; then
112 LAST_STAGE_TIME=$[ `date +%s` - $STAGE_TIME_START ]
113 fi
114 STAGE_TIME_START=`date +%s`
115 echo -ne "${BOLD}*** ${MESSAGE}${NORMAL}"
116 if [ "$LAST_STAGE_TIME" ]; then
117 echo -ne "${DONE} (Last stage took $LAST_STAGE_TIME secs)${NORMAL}"
118 fi
119 echo -ne "${BOLD}${SET_VER_COL} version${SET_OPT_COL} options${SET_TIME_COL} time (sec)${SET_RESULT_COL} status${NORMAL}\n"
120 ;;
121 build_start)
122 BUILD_TIME_START=`date +%s`
123 ;;
124 build_end)
125 BUILD_TIME_END=`date +%s`
126 echo -ne "${BOLD}***Build is finished now!\nThis took:\t\t\t $[ $BUILD_TIME_END - $BUILD_TIME_START ] (secs)${NORMAL}\n"
127 ;;
128 make_pkg)
129 echo "$2" | while read PKG_VER PROGRAM OPTIONS
130 do
131 SET_VER_COL_REAL=`position_cursor $OPT_COL $PKG_VER -3`
132
133 if [ "$OPTIONS" == "" ]; then
134 echo -ne "${PROGRAM}${SET_VER_COL}[ ${BOLD}${SET_VER_COL_REAL}${PKG_VER}"
135 echo -ne "${NORMAL} ]${SET_RESULT_COL}"
136 else
137 echo -ne "${PROGRAM}${SET_VER_COL}[ ${BOLD}${SET_VER_COL_REAL}${PKG_VER}"
138 echo -ne "${NORMAL} ]${SET_OPT_COL}[ ${BOLD}${OPTIONS}"
139 echo -ne "${NORMAL} ]${SET_RESULT_COL}"
140 fi
141 done
142 ;;
143 result)
144 RESULT=$2
145
146 if [ ! $3 ]; then
147 PKG_TIME=0
148 else
149 PKG_TIME=$3
150 fi
151
152 SET_TIME_COL_REAL=`position_cursor $RESULT_COL $PKG_TIME -3`
153 case "$RESULT" in
154 DONE)
155 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
156 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
157 ;;
158 FAIL)
159 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
160 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
161 ;;
162 SKIP)
163 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
164 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
165 ;;
166 esac
167 ;;
168 esac
169 } # End of beautify()
170
171
172 get_pkg_ver()
173 {
174 PKG_VER=`grep ^VER $1 | awk '{print $3}'`
175
176 if [ -z $PKG_VER ]; then
177 PKG_VER=`grep "Exp " $1 | awk '{print $4}'`
178 fi
179
180 if [ ${#PKG_VER} -gt $VER_WIDTH ]; then
181 # If a package version number is greater than $VER_WIDTH, we keep the first 4 characters
182 # and replace enough characters to fit the resulting string on the screen. We'll replace
183 # the extra character with .. (two dots). That's why the "+ 2" in the formula below.
184 # Example: if we have a 21-long version number that we want to fit into a 10-long space,
185 # we have to remove 11 characters. But if we replace 11 characters with 2 characters, we'll
186 # end up with a 12-character long string. That's why we replace 12 characters with ..
187 REMOVE=`expr substr "$PKG_VER" 4 $[ ${#PKG_VER} - $VER_WIDTH + 2 ]`
188 PKG_VER=`echo ${PKG_VER/$REMOVE/..}`
189 fi
190
191 echo "$PKG_VER"
192 } # End of get_pkg_ver()
193
194 if [ 'x86_64' = $MACHINE -o 'i686' = $MACHINE -o 'i586' = $MACHINE ]; then
195 echo "`date -u '+%b %e %T'`: Machine is iX86 (or equivalent)" >> $LOGFILE
196 MACHINE=i586
197 BUILDTARGET=i586-pc-linux-gnu
198 CFLAGS="-O2 -march=i586 -pipe -fomit-frame-pointer"
199 CXXFLAGS="-O2 -march=i586 -pipe -fomit-frame-pointer"
200 C2FLAGS="-O2 -march=i586 -mtune=i586 -pipe -fomit-frame-pointer"
201 CXX2FLAGS="-O2 -march=i586 -mtune=i586 -pipe -fomit-frame-pointer"
202 else
203 echo "`date -u '+%b %e %T'`: Can't determine your architecture - $MACHINE" >> $LOGFILE
204 exit 1
205 fi
206
207 # Define immediately
208 stdumount() {
209 umount $BASEDIR/build/sys 2>/dev/null;
210 umount $BASEDIR/build/dev/shm 2>/dev/null;
211 umount $BASEDIR/build/dev/pts 2>/dev/null;
212 umount $BASEDIR/build/dev 2>/dev/null;
213 umount $BASEDIR/build/proc 2>/dev/null;
214 umount $BASEDIR/build/install/mnt 2>/dev/null;
215 umount $BASEDIR/build/usr/src/cache 2>/dev/null;
216 umount $BASEDIR/build/usr/src/ccache 2>/dev/null;
217 umount $BASEDIR/build/usr/src/config 2>/dev/null;
218 umount $BASEDIR/build/usr/src/doc 2>/dev/null;
219 umount $BASEDIR/build/usr/src/html 2>/dev/null;
220 umount $BASEDIR/build/usr/src/langs 2>/dev/null;
221 umount $BASEDIR/build/usr/src/lfs 2>/dev/null;
222 umount $BASEDIR/build/usr/src/log 2>/dev/null;
223 umount $BASEDIR/build/usr/src/src 2>/dev/null;
224 }
225
226 exiterror() {
227 stdumount
228 for i in `seq 0 7`; do
229 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
230 losetup -d /dev/loop${i} 2>/dev/null
231 fi;
232 done
233 echo -e "\nERROR: $*"
234 echo " Check $LOGFILE for errors if applicable"
235 exit 1
236 }
237
238 entershell() {
239 if [ ! -e $BASEDIR/build/usr/src/lfs/ ]; then
240 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/"
241 fi
242 echo "Entering to a shell inside LFS chroot, go out with exit"
243 chroot $LFS /tools/bin/env -i HOME=/root TERM=$TERM PS1='\u:\w\$ ' \
244 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
245 VERSION=$VERSION CONFIG_ROOT=$CONFIG_ROOT \
246 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
247 CFLAGS="$CF2LAGS" CXXFLAGS="$CXX2FLAGS" \
248 CCACHE_DIR=/usr/src/ccache \
249 CCACHE_HASHDIR=1 \
250 KVER=$KVER \
251 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
252 KGCC="ccache /usr/bin/gcc" \
253 /tools/bin/bash
254 if [ $? -ne 0 ]; then
255 beautify message FAIL
256 exiterror "chroot error"
257 else
258 stdumount
259 fi
260 }
261
262 ############################################################################
263 # #
264 # Necessary shell functions #
265 # #
266 ############################################################################
267 #
268 # Common checking before entering the chroot and compilling
269 #
270 # Return:0 caller can continue
271 # :1 skip (nothing to do)
272 # or fail if no script file found
273 #
274 lfsmakecommoncheck()
275 {
276 # Script present?
277 if [ ! -f $BASEDIR/lfs/$1 ]; then
278 exiterror "No such file or directory: $BASEDIR/$1"
279 fi
280
281 local PKG_VER=`get_pkg_ver $BASEDIR/lfs/$1`
282 beautify make_pkg "$PKG_VER $*"
283
284 # Script slipped?
285 local i
286 for i in $SKIP_PACKAGE_LIST
287 do
288 if [ "$i" == "$1" ]; then
289 beautify result SKIP
290 return 1;
291 fi
292 done
293
294 echo -ne "`date -u '+%b %e %T'`: Building $* " >> $LOGFILE
295
296 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t " download >> $LOGFILE 2>&1
297 if [ $? -ne 0 ]; then
298 exiterror "Download error in $1"
299 fi
300
301 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MESSAGE="$1\t md5sum" md5 >> $LOGFILE 2>&1
302 if [ $? -ne 0 ]; then
303 exiterror "md5sum error in $1, check file in cache or signature"
304 fi
305
306 return 0 # pass all!
307 } # End of lfsmakecommoncheck()
308
309 lfsmake1() {
310 lfsmakecommoncheck $*
311 [ $? == 1 ] && return 0
312
313 local PKG_TIME_START=`date +%s`
314
315 cd $BASEDIR/lfs && make -f $* BUILDTARGET=$BUILDTARGET \
316 MACHINE=$MACHINE \
317 LFS_BASEDIR=$BASEDIR \
318 ROOT=$LFS \
319 KVER=$KVER \
320 MAKETUNING=$MAKETUNING \
321 install >> $LOGFILE 2>&1
322 local COMPILE_SUCCESS=$?
323 local PKG_TIME_END=`date +%s`
324
325 if [ $COMPILE_SUCCESS -ne 0 ]; then
326 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
327 exiterror "Building $*";
328 else
329 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
330 fi
331
332 return 0
333 }
334
335 lfsmake2() {
336 lfsmakecommoncheck $*
337 [ $? == 1 ] && return 0
338
339 local PKG_TIME_START=`date +%s`
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:/tools/bin \
343 VERSION=$VERSION \
344 CONFIG_ROOT=$CONFIG_ROOT \
345 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
346 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
347 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
348 KVER=$KVER MAKETUNING=$MAKETUNING \
349 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
350 IPFVER="$IPFVER" \
351 /tools/bin/bash -x -c "cd /usr/src/lfs && \
352 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
353 local COMPILE_SUCCESS=$?
354 local PKG_TIME_END=`date +%s`
355
356 if [ $COMPILE_SUCCESS -ne 0 ]; then
357 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
358 exiterror "Building $*";
359 else
360 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
361 fi
362
363 return 0
364 }
365
366 ipfiremake() {
367 lfsmakecommoncheck $*
368 [ $? == 1 ] && return 0
369
370 local PKG_TIME_START=`date +%s`
371 chroot $LFS /tools/bin/env -i HOME=/root \
372 TERM=$TERM PS1='\u:\w\$ ' \
373 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
374 VERSION=$VERSION \
375 CONFIG_ROOT=$CONFIG_ROOT \
376 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
377 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
378 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
379 KVER=$KVER MAKETUNING=$MAKETUNING \
380 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
381 IPFVER="$IPFVER" \
382 /bin/bash -x -c "cd /usr/src/lfs && \
383 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
384
385 local COMPILE_SUCCESS=$?
386 local PKG_TIME_END=`date +%s`
387
388 if [ $COMPILE_SUCCESS -ne 0 ]; then
389 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
390 exiterror "Building $*";
391 else
392 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
393 fi
394 return 0
395 }
396
397 ipfiredist() {
398 if [ -f $BASEDIR/build/usr/src/lfs/$1 ]; then
399 echo "`date -u '+%b %e %T'`: Packaging $1" | tee -a $LOGFILE
400 chroot $LFS /tools/bin/env -i HOME=/root \
401 TERM=$TERM PS1='\u:\w\$ ' \
402 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
403 VERSION=$VERSION \
404 CONFIG_ROOT=$CONFIG_ROOT \
405 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
406 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
407 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
408 KVER=$KVER IPFVER="$IPFVER" \
409 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
410 /bin/bash -x -c "cd /usr/src/lfs && \
411 make -f $1 LFS_BASEDIR=/usr/src dist" >>$LOGFILE 2>&1
412 if [ $? -ne 0 ]; then
413 exiterror "Packaging $1"
414 fi
415 else
416 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
417 fi
418 return 0
419 }
420
421 installmake() {
422 lfsmakecommoncheck $*
423 [ $? == 1 ] && return 0
424
425 local PKG_TIME_START=`date +%s`
426 chroot $LFS /tools/bin/env -i HOME=/root \
427 TERM=$TERM PS1='\u:\w\$ ' \
428 PATH=/opt/i586-uClibc/i586-linux-uclibc/bin:/opt/i586-uClibc/bin:/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
429 VERSION=$VERSION \
430 CONFIG_ROOT=$CONFIG_ROOT \
431 LFS_PASS="install" \
432 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
433 CFLAGS="-Os" CXXFLAGS="-Os" \
434 CCACHE_DIR=/usr/src/ccache CCACHE_HASHDIR=1 \
435 KVER=$KVER IPFVER="$IPFVER" \
436 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
437 /bin/bash -x -c "cd /usr/src/lfs && \
438 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
439
440 local COMPILE_SUCCESS=$?
441 local PKG_TIME_END=`date +%s`
442
443 if [ $COMPILE_SUCCESS -ne 0 ]; then
444 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
445 exiterror "Building $*";
446 else
447 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
448 fi
449 return 0
450 }
451
452 update_logs() {
453 tar cfz log/ipfire-logs-`date +'%Y-%m-%d-%H:%M'`.tgz log/_build.*
454 rm -f log/_build.*
455 }
456
457 batch_script() {
458 echo -ne "${BOLD}***This is our auto buildscript! Have fun...${NORMAL}\n"
459 update_logs
460 evaluate 1
461
462 if [ "$IPFIRE_REBUILD" -eq "0" ]; then
463 export IPFIRE_START_TIME=`date`
464 evaluate 1
465
466 echo -ne "### RUNNING SVN-UPDATE"
467 $0 svn update
468 evaluate 1 mail_me SVNUPDATE
469
470 echo "### EXPORT SOURCES"
471 $0 svn dist
472 evaluate 1 mail_me SVNDIST
473
474 echo "### RUNNING PREFETCH"
475 $0 downloadsrc | grep -q "md5 difference"
476 evaluate 1 mail_me PREFETCH
477 fi
478
479 echo "### RUNNING BUILD"
480 $0 build
481 evaluate 1 mail_me ERROR
482
483 echo "### UPLOADING ISO"
484 $0 upload iso
485 evaluate 1 mail_me ISO
486
487 echo -ne "### UPLOADING PAKS"
488 $0 upload paks
489 evaluate 1 mail_me PAKS
490
491 echo -n "${BOLD}***SUCCESS!${NORMAL}"
492 evaluate 0 mail_me SUCCESS
493 exit 0
494 }
495
496 watch_screen() {
497 echo -e "${BOLD}Exit with Ctrl+A, Ctrl+D.${NORMAL}"
498 sleep 0.5
499 screen -x ipfire
500 }
501
502 mail_me() {
503 chmod 755 tools/sendEmail
504 ATTACHMENT=/tmp/ipfire-build-logs-R$SVN_REVISION.tar.gz
505 case "$1" in
506 success)
507 SUBJECT="SUCCESS: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
508 cat <<END > /tmp/ipfire_mail_body
509 Building IPFire on `hostname` in Revision $SVN_REVISION was successfull!
510 You can find the ISO on your ftp server.
511
512 Statistics:
513 -----------
514 Started: $IPFIRE_START_TIME
515 Finished: `date`
516
517 Best Regards
518 Your IPFire-Build-Script
519
520 END
521 echo -ne "${BOLD}***Sending success message${NORMAL}"
522 ;;
523 *)
524 SUBJECT="ERROR $1: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
525 cat <<END > /tmp/ipfire_mail_body
526 When I was building IPFire on `hostname`, I have found an ERROR with name $1!
527 Here you can see the logs and detect the reason for this error.
528
529 Best Regards
530 Your IPFire-Build-Script
531
532
533 Here is a summary... The full logs are in the attachment.
534 ---------------------------------------------------------
535
536 `tail log/_*`
537 END
538 echo -ne "${BOLD}***Sending error message${NORMAL}"
539 ;;
540 esac
541 tar cfz $ATTACHMENT log/_build*
542 cat /tmp/ipfire_mail_body | tools/sendEmail -q \
543 -f $IPFIRE_MAIL_FROM \
544 -t $IPFIRE_MAIL_REPORT \
545 -u $SUBJECT \
546 -s $IPFIRE_MAIL_SERVER:25 \
547 -xu $IPFIRE_MAIL_USER \
548 -xp $IPFIRE_MAIL_PASS \
549 -l log/_build.mail.log \
550 -a $ATTACHMENT # -v
551 if [ "$?" -eq "0" ]; then
552 beautify message DONE
553 else
554 beautify message FAIL
555 fi
556 rm -f /tmp/ipfire_mail_body $ATTACHMENT
557 }
558
559 make_config() {
560 clear
561 echo -e "${BOLD}***This will create your configuration...${NORMAL}"
562 echo -ne "***If your are ready press <ENTER>!"
563 read
564 clear
565 echo -ne "***The buildscript will create a full iso image.\n"
566 echo -ne "***If you want to skip any package please enter its name here seperated with space.\n"
567 echo -ne "Actually in the list are: $SKIP_PACKAGE_LIST\n"
568 echo -ne "Do you want to change this? (y/N) "
569 read YESNO
570 if [ "$YESNO" == "y" ]; then
571 echo -ne "Please type: "
572 read SKIP_PACKAGE_LIST
573 echo -ne "You entered: $SKIP_PACKAGE_LIST\n"
574 fi
575
576 clear
577 echo -ne "***When you have compiled successfully, there is the possibility\n"
578 echo -ne "***to upload the iso image to a ftp server.\n"
579 echo -ne "***If the url is empty there will be no upload.\n"
580 echo -ne "Actually there is: $FTP_ISO_URL\n"
581 echo -ne "Do you want to change this? (y/N) "
582 read YESNO
583 if [ "$YESNO" == "y" ]; then
584 echo -ne "Please type the url: "
585 read FTP_ISO_URL
586 echo -ne "Please type the path: "
587 read FTP_ISO_PATH
588 echo -ne "Please type the username: "
589 read FTP_ISO_USER
590 echo -ne "Please type the password (hidden): "
591 read -s FTP_ISO_PASS
592
593 fi
594
595 clear
596 echo -ne "***When you add some new software you can easyly\n"
597 echo -ne "***upload the source code to our repository server.\n"
598 echo -ne "***If the url is empty there will be no upload.\n"
599 echo -ne "Actually there is: $FTP_CACHE_URL\n"
600 echo -ne "Do you want to change this? (y/N) "
601 read YESNO
602 if [ "$YESNO" == "y" ]; then
603 echo -ne "Please type the url: "
604 read FTP_CACHE_URL
605 echo -ne "Please type the path: "
606 read FTP_CACHE_PATH
607 echo -ne "Please type the username: "
608 read FTP_CACHE_USER
609 echo -ne "Please type the password (hidden): "
610 read -s FTP_CACHE_PASS
611
612 fi
613
614 clear
615 echo -ne "***If there are some important messages you\n"
616 echo -ne "***can get a notification mail.\n"
617 echo -ne "***Please type one ore more email adresses (seperated by comma).\n"
618 echo -ne "Actually there is: $MAIL_TO\n"
619 echo -ne "Do you want to change this? (y/N) "
620 read YESNO
621 if [ "$YESNO" == "y" ]; then
622 echo -ne "Please type: "
623 read MAIL_TO
624 echo -ne "You should enter a mail server to login...\n"
625 echo -ne "Please type the url: "
626 read MAIL_SERVER
627 echo -ne "Please type the username: "
628 read MAIL_USER
629 echo -ne "Please type the password (hidden): "
630 read -s MAIL_PASS
631
632 fi
633 echo -ne "${BOLD}***Saving...${NORMAL}"
634 cat <<END > $BASEDIR/.config
635 ### iso server
636 FTP_ISO_URL=$FTP_ISO_URL
637 FTP_ISO_PATH=$FTP_ISO_PATH
638 FTP_ISO_USER=$FTP_ISO_USER
639 FTP_ISO_PASS=$FTP_ISO_PASS
640 ### cache server
641 FTP_CACHE_URL=$FTP_CACHE_URL
642 FTP_CACHE_PATH=$FTP_CACHE_PATH
643 FTP_CACHE_USER=$FTP_CACHE_USER
644 FTP_CACHE_PASS=$FTP_CACHE_PASS
645 ### mail reports
646 MAIL_TO="$MAIL_TO"
647 MAIL_SERVER=$MAIL_SERVER
648 MAIL_USER=$MAIL_USER
649 MAIL_PASS=$MAIL_PASS
650 ### misc
651 SKIP_PACKAGE_LIST="$SKIP_PACKAGE_LIST"
652 END
653 beautify message DONE
654 }
655
656 compile_tftpd() {
657 mkdir $BASEDIR/tmp
658 tar xvfz $BASEDIR/cache/tftp-hpa-0.42.tar.gz -C $BASEDIR/tmp
659 cd $BASEDIR/tmp/tftp-hpa-*
660 ./configure --prefix=/ipfire/trunk/tools/ \
661 --sbindir=/ipfire/trunk/tools/ --disable-nls
662 make
663 install -c tftpd/tftpd $BASEDIR/tools/in.tftpd
664 cd -
665 rm -rf $BASEDIR/tmp/tftp-hpa-*
666 }
667
668 start_tftpd() {
669 if [ ! -e $BASEDIR/tools/in.tftpd ]; then
670 compile_tftpd
671 fi
672 reload_tftpd
673 if [ "$?" == "0" ]; then
674 $BASEDIR/tools/in.tftpd -l -s $BASEDIR/tftpboot
675 beautify message DONE
676 else
677 echo -en "You don not have a pxe boot image in your base directory.\nPlease compile first."
678 beautify message FAIL
679 exit 1
680 fi
681 }
682
683 stop_tftpd() {
684 echo -n "Stopping TFTPD..."
685 killall in.tftpd >/dev/null 2>&1
686 sleep 3
687 killall -9 in.tftp >/dev/null 2>&1
688 beautify message DONE
689 }
690
691 reload_tftpd() {
692 if [ -e $BASEDIR/ipfire-$VERSION.$MACHINE-pxe.tgz ]; then
693 mkdir -p $BASEDIR/tftpboot
694 tar xfz $BASEDIR/ipfire-$VERSION.$MACHINE-pxe.tgz -C $BASEDIR/tftpboot
695 return 0
696 fi
697 return 1
698 }