]>
git.ipfire.org Git - ipfire-2.x.git/blob - tools/make-functions
2 ############################################################################
4 # Beautifying variables & presentation & input output interface
6 ############################################################################
9 # Find current screen size
10 if [ -z "${COLUMNS}" ]; then
12 COLUMNS
=${COLUMNS##* }
15 # When using remote connections, such as a serial port, stty size returns 0
16 if [ "${COLUMNS}" = "0" ]; then
20 ## Measurements for positioning result messages
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))
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"
36 # Define color for messages
45 if [ "$?" -eq "0" ]; then
52 if [ $EXITCODE -ne "0" ]; then
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
75 STRING_LENGTH
=${#STRING}
77 if [ ${OFFSET} -lt 0 ]; then
78 COL
=$
((${START} + ${OFFSET} - ${STRING_LENGTH}))
80 COL
=$
((${START} + ${OFFSET}))
83 SET_COL
="\\033[${COL}G"
86 } # End of position_cursor()
91 # Commands: build_stage, make_pkg, message, result
96 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
99 echo -ne "${WARN}${3}${NORMAL}${SET_RESULT_COL}[${WARN} WARN ${NORMAL}]\n"
102 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
105 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
111 if [ "$STAGE_TIME_START" ]; then
112 LAST_STAGE_TIME
=$
[ `date +%s` - $STAGE_TIME_START ]
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}"
119 echo -ne "${BOLD}${SET_VER_COL} version${SET_OPT_COL} options${SET_TIME_COL} time (sec)${SET_RESULT_COL} status${NORMAL}\n"
122 BUILD_TIME_START
=`date +%s`
125 BUILD_TIME_END
=`date +%s`
126 echo -ne "${DONE}***Build is finished now and took $[ $BUILD_TIME_END - $BUILD_TIME_START ] secs!${NORMAL}\n"
129 echo "$2" |
while read PKG_VER PROGRAM OPTIONS
131 SET_VER_COL_REAL
=`position_cursor $OPT_COL $PKG_VER -3`
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}"
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}"
152 SET_TIME_COL_REAL
=`position_cursor $RESULT_COL $PKG_TIME -3`
155 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
156 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
159 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
160 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
163 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
164 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
169 } # End of beautify()
174 PKG_VER
=`grep ^VER $1 | awk '{print $3}'`
176 if [ -z $PKG_VER ]; then
177 PKG_VER
=`grep "Exp " $1 | awk '{print $4}'`
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/..}`
192 } # End of get_pkg_ver()
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
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"
203 echo "`date -u '+%b %e %T'`: Can't determine your architecture - $MACHINE" >> $LOGFILE
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
;
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
233 echo -e "\nERROR: $*"
234 echo " Check $LOGFILE for errors if applicable"
239 if [ ! -e $BASEDIR/build
/usr
/src
/lfs
/ ]; then
240 exiterror
"No such file or directory: $BASEDIR/build/usr/src/lfs/"
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 \
251 BUILDTARGET
="$BUILDTARGET" MACHINE
="$MACHINE" \
252 KGCC
="ccache /usr/bin/gcc" \
254 if [ $?
-ne 0 ]; then
255 beautify message FAIL
256 exiterror
"chroot error"
262 ############################################################################
264 # Necessary shell functions #
266 ############################################################################
268 # Common checking before entering the chroot and compilling
270 # Return:0 caller can continue
271 # :1 skip (nothing to do)
272 # or fail if no script file found
277 if [ ! -f $BASEDIR/lfs
/$1 ]; then
278 exiterror
"No such file or directory: $BASEDIR/$1"
281 local PKG_VER
=`get_pkg_ver $BASEDIR/lfs/$1`
282 beautify make_pkg
"$PKG_VER $*"
286 for i
in $SKIP_PACKAGE_LIST
288 if [ "$i" == "$1" ]; then
294 echo -ne "`date -u '+%b %e %T'`: Building $* " >> $LOGFILE
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"
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"
307 } # End of lfsmakecommoncheck()
310 lfsmakecommoncheck $
*
311 [ $?
== 1 ] && return 0
313 local PKG_TIME_START
=`date +%s`
315 cd $BASEDIR/lfs
&& make -f $
* BUILDTARGET
=$BUILDTARGET \
317 LFS_BASEDIR
=$BASEDIR \
320 MAKETUNING
=$MAKETUNING \
321 install >> $LOGFILE 2>&1
322 local COMPILE_SUCCESS
=$?
323 local PKG_TIME_END
=`date +%s`
325 if [ $COMPILE_SUCCESS -ne 0 ]; then
326 beautify result FAIL $
[ $PKG_TIME_END - $PKG_TIME_START ]
327 exiterror
"Building $*";
329 beautify result DONE $
[ $PKG_TIME_END - $PKG_TIME_START ]
336 lfsmakecommoncheck $
*
337 [ $?
== 1 ] && return 0
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 \
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" \
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`
356 if [ $COMPILE_SUCCESS -ne 0 ]; then
357 beautify result FAIL $
[ $PKG_TIME_END - $PKG_TIME_START ]
358 exiterror
"Building $*";
360 beautify result DONE $
[ $PKG_TIME_END - $PKG_TIME_START ]
367 lfsmakecommoncheck $
*
368 [ $?
== 1 ] && return 0
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 \
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" \
382 /bin
/bash
-x -c "cd /usr/src/lfs && \
383 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
385 local COMPILE_SUCCESS
=$?
386 local PKG_TIME_END
=`date +%s`
388 if [ $COMPILE_SUCCESS -ne 0 ]; then
389 beautify result FAIL $
[ $PKG_TIME_END - $PKG_TIME_START ]
390 exiterror
"Building $*";
392 beautify result DONE $
[ $PKG_TIME_END - $PKG_TIME_START ]
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 \
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"
416 exiterror
"No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
422 lfsmakecommoncheck $
*
423 [ $?
== 1 ] && return 0
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 \
430 CONFIG_ROOT
=$CONFIG_ROOT \
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
440 local COMPILE_SUCCESS
=$?
441 local PKG_TIME_END
=`date +%s`
443 if [ $COMPILE_SUCCESS -ne 0 ]; then
444 beautify result FAIL $
[ $PKG_TIME_END - $PKG_TIME_START ]
445 exiterror
"Building $*";
447 beautify result DONE $
[ $PKG_TIME_END - $PKG_TIME_START ]
453 tar cfz log
/ipfire-logs-
`date +'%Y-%m-%d-%H:%M'`.tgz log
/_build.
*
458 echo -ne "${BOLD}***This is our auto buildscript! Have fun...${NORMAL}\n"
462 if [ "$IPFIRE_REBUILD" -eq "0" ]; then
463 export IPFIRE_START_TIME
=`date`
466 echo -ne "### RUNNING SVN-UPDATE"
468 evaluate
1 mail_me SVNUPDATE
470 echo "### EXPORT SOURCES"
472 evaluate
1 mail_me SVNDIST
474 echo "### RUNNING PREFETCH"
475 $0 downloadsrc |
grep -q "md5 difference"
476 evaluate
1 mail_me PREFETCH
479 echo "### RUNNING BUILD"
481 evaluate
1 mail_me ERROR
483 echo "### UPLOADING ISO"
485 evaluate
1 mail_me ISO
487 echo -ne "### UPLOADING PAKS"
489 evaluate
1 mail_me PAKS
491 echo -n "${BOLD}***SUCCESS!${NORMAL}"
492 evaluate
0 mail_me SUCCESS
497 echo -e "${BOLD}Exit with Ctrl+A, Ctrl+D.${NORMAL}"
503 chmod 755 tools
/sendEmail
504 ATTACHMENT
=/tmp
/ipfire-build-logs-R
$SVN_REVISION.
tar.gz
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.
514 Started: $IPFIRE_START_TIME
518 Your IPFire-Build-Script
521 echo -ne "${BOLD}***Sending success message${NORMAL}"
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.
530 Your IPFire-Build-Script
533 Here is a summary... The full logs are in the attachment.
534 ---------------------------------------------------------
538 echo -ne "${BOLD}***Sending error message${NORMAL}"
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 \
546 -s $IPFIRE_MAIL_SERVER:25 \
547 -xu $IPFIRE_MAIL_USER \
548 -xp $IPFIRE_MAIL_PASS \
549 -l log
/_build.
mail.log \
551 if [ "$?" -eq "0" ]; then
552 beautify message DONE
554 beautify message FAIL
556 rm -f /tmp
/ipfire_mail_body
$ATTACHMENT
561 echo -e "${BOLD}***This will create your configuration...${NORMAL}"
562 echo -ne "***If your are ready press <ENTER>!"
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) "
570 if [ "$YESNO" == "y" ]; then
571 echo -ne "Please type: "
572 read SKIP_PACKAGE_LIST
573 echo -ne "You entered: $SKIP_PACKAGE_LIST\n"
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) "
583 if [ "$YESNO" == "y" ]; then
584 echo -ne "Please type the url: "
586 echo -ne "Please type the path: "
588 echo -ne "Please type the username: "
590 echo -ne "Please type the password (hidden): "
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) "
602 if [ "$YESNO" == "y" ]; then
603 echo -ne "Please type the url: "
605 echo -ne "Please type the path: "
607 echo -ne "Please type the username: "
609 echo -ne "Please type the password (hidden): "
610 read -s FTP_CACHE_PASS
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) "
621 if [ "$YESNO" == "y" ]; then
622 echo -ne "Please type: "
624 echo -ne "You should enter a mail server to login...\n"
625 echo -ne "Please type the url: "
627 echo -ne "Please type the username: "
629 echo -ne "Please type the password (hidden): "
633 echo -ne "${BOLD}***Saving...${NORMAL}"
634 cat <<END > $BASEDIR/.config
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
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
647 MAIL_SERVER=$MAIL_SERVER
651 SKIP_PACKAGE_LIST="$SKIP_PACKAGE_LIST"
653 beautify message DONE
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
663 install -c tftpd
/tftpd
$BASEDIR/tools
/in.tftpd
665 rm -rf $BASEDIR/tmp
/tftp-hpa-
*
669 if [ ! -e $BASEDIR/tools
/in.tftpd
]; then
673 if [ "$?" == "0" ]; then
674 $BASEDIR/tools
/in.tftpd
-l -s $BASEDIR/tftpboot
675 beautify message DONE
677 echo -en "You don not have a pxe boot image in your base directory.\nPlease compile first."
678 beautify message FAIL
684 echo -n "Stopping TFTPD..."
685 killall
in.tftpd
>/dev
/null
2>&1
687 killall
-9 in.tftp
>/dev
/null
2>&1
688 beautify message DONE
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