]> git.ipfire.org Git - ipfire-2.x.git/blame - tools/make-functions
Fehlende CGIs in ISO gebaut
[ipfire-2.x.git] / tools / make-functions
CommitLineData
15679d9f
MT
1#!/bin/bash
2############################################################################
3#
4# Beautifying variables & presentation & input output interface
5#
6############################################################################
7
8## Screen Dimentions
9# Find current screen size
10if [ -z "${COLUMNS}" ]; then
11 COLUMNS=$(stty size)
12 COLUMNS=${COLUMNS##* }
13fi
14
15# When using remote connections, such as a serial port, stty size returns 0
16if [ "${COLUMNS}" = "0" ]; then
17 COLUMNS=80
18fi
19
20## Measurements for positioning result messages
21RESULT_WIDTH=4
22TIME_WIDTH=8
23OPT_WIDTH=6
24VER_WIDTH=10
25RESULT_COL=$((${COLUMNS} - $RESULT_WIDTH - 4))
26TIME_COL=$((${RESULT_COL} - $TIME_WIDTH - 5))
27OPT_COL=$((${TIME_COL} - $OPT_WIDTH - 5))
28VER_COL=$((${OPT_COL} - $VER_WIDTH - 5))
29
30## Set Cursur Position Commands, used via echo -e
31SET_RESULT_COL="\\033[${RESULT_COL}G"
32SET_TIME_COL="\\033[${TIME_COL}G"
33SET_OPT_COL="\\033[${OPT_COL}G"
34SET_VER_COL="\\033[${VER_COL}G"
35
36# Define color for messages
37BOLD="\\033[1;39m"
38DONE="\\033[1;32m"
39SKIP="\\033[1;34m"
40WARN="\\033[1;35m"
41FAIL="\\033[1;31m"
42NORMAL="\\033[0;39m"
43
44evaluate() {
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
58position_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
89beautify()
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 ;;
0b59f25c 109 build_stage)
15679d9f 110 MESSAGE=$2
0b59f25c
MT
111 if [ "$STAGE_TIME_START" ]; then
112 LAST_STAGE_TIME=$[ `date +%s` - $STAGE_TIME_START ]
113 fi
7ab7a9b4 114 STAGE_TIME_START=`date +%s`
0b59f25c
MT
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"
7ab7a9b4
MT
120 ;;
121 build_start)
122 BUILD_TIME_START=`date +%s`
123 ;;
124 build_end)
125 BUILD_TIME_END=`date +%s`
71e32384 126 echo -ne "${DONE}***Build is finished now and took $[ $BUILD_TIME_END - $BUILD_TIME_START ] secs!${NORMAL}\n"
7ab7a9b4 127 ;;
15679d9f
MT
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
172get_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
194if [ '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
9b0ff0a0 198 CFLAGS="-O2 -march=i586 -pipe -fomit-frame-pointer"
b4b6bcdb 199 CXXFLAGS="-O2 -march=i586 -pipe -fomit-frame-pointer"
15679d9f
MT
200 C2FLAGS="-O2 -march=i586 -mtune=i586 -pipe -fomit-frame-pointer"
201 CXX2FLAGS="-O2 -march=i586 -mtune=i586 -pipe -fomit-frame-pointer"
202else
203 echo "`date -u '+%b %e %T'`: Can't determine your architecture - $MACHINE" >> $LOGFILE
204 exit 1
205fi
206
207# Define immediately
208stdumount() {
b4b6bcdb
MT
209 umount $BASEDIR/build/sys 2>/dev/null;
210 umount $BASEDIR/build/dev/shm 2>/dev/null;
15679d9f 211 umount $BASEDIR/build/dev/pts 2>/dev/null;
b4b6bcdb 212 umount $BASEDIR/build/dev 2>/dev/null;
15679d9f
MT
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
226exiterror() {
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
238entershell() {
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#
274lfsmakecommoncheck()
275{
15679d9f
MT
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
a50d04ab 288 if [ "$i" == "$1" ]; then
15679d9f
MT
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
309lfsmake1() {
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
335lfsmake2() {
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" \
c8ead4a5 350 IPFVER="$IPFVER" \
15679d9f
MT
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
366ipfiremake() {
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" \
c8ead4a5 381 IPFVER="$IPFVER" \
15679d9f
MT
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
397ipfiredist() {
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 \
c8ead4a5 408 KVER=$KVER IPFVER="$IPFVER" \
15679d9f
MT
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
421installmake() {
41921bd9
MT
422 lfsmakecommoncheck $*
423 [ $? == 1 ] && return 0
424
425 local PKG_TIME_START=`date +%s`
15679d9f
MT
426 chroot $LFS /tools/bin/env -i HOME=/root \
427 TERM=$TERM PS1='\u:\w\$ ' \
4da401bc 428 PATH=/opt/i586-uClibc/i586-linux-uclibc/bin:/opt/i586-uClibc/bin:/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
15679d9f
MT
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 \
c8ead4a5 435 KVER=$KVER IPFVER="$IPFVER" \
15679d9f
MT
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
41921bd9
MT
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 $*";
15679d9f 446 else
41921bd9 447 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
15679d9f
MT
448 fi
449 return 0
450}
451
452update_logs() {
453 tar cfz log/ipfire-logs-`date +'%Y-%m-%d-%H:%M'`.tgz log/_build.*
454 rm -f log/_build.*
455}
456
457batch_script() {
a50d04ab 458 echo -ne "${BOLD}***This is our auto buildscript! Have fun...${NORMAL}\n"
15679d9f
MT
459 update_logs
460 evaluate 1
461
462 if [ "$IPFIRE_REBUILD" -eq "0" ]; then
15679d9f
MT
463 export IPFIRE_START_TIME=`date`
464 evaluate 1
465
c8582074 466 echo "### RUNNING SVN-UPDATE"
15679d9f 467 $0 svn update
a50d04ab 468 evaluate 1 mail_me SVNUPDATE
15679d9f
MT
469
470 echo "### EXPORT SOURCES"
471 $0 svn dist
a50d04ab 472 evaluate 1 mail_me SVNDIST
15679d9f
MT
473 fi
474
475 echo "### RUNNING BUILD"
476 $0 build
a50d04ab 477 evaluate 1 mail_me ERROR
15679d9f
MT
478
479 echo "### UPLOADING ISO"
480 $0 upload iso
a50d04ab 481 evaluate 1 mail_me ISO
15679d9f
MT
482
483 echo -ne "### UPLOADING PAKS"
484 $0 upload paks
a50d04ab 485 evaluate 1 mail_me PAKS
15679d9f 486
c8582074 487 echo -ne "${BOLD}***SUCCESS!${NORMAL}"
a50d04ab 488 evaluate 0 mail_me SUCCESS
15679d9f
MT
489 exit 0
490}
491
492watch_screen() {
493 echo -e "${BOLD}Exit with Ctrl+A, Ctrl+D.${NORMAL}"
494 sleep 0.5
495 screen -x ipfire
496}
497
a50d04ab 498mail_me() {
15679d9f
MT
499 chmod 755 tools/sendEmail
500 ATTACHMENT=/tmp/ipfire-build-logs-R$SVN_REVISION.tar.gz
501 case "$1" in
502 success)
503 SUBJECT="SUCCESS: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
504 cat <<END > /tmp/ipfire_mail_body
505Building IPFire on `hostname` in Revision $SVN_REVISION was successfull!
506You can find the ISO on your ftp server.
507
508Statistics:
509-----------
510Started: $IPFIRE_START_TIME
511Finished: `date`
512
513Best Regards
514Your IPFire-Build-Script
515
516END
517 echo -ne "${BOLD}***Sending success message${NORMAL}"
518 ;;
519 *)
520 SUBJECT="ERROR $1: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
521 cat <<END > /tmp/ipfire_mail_body
522When I was building IPFire on `hostname`, I have found an ERROR with name $1!
523Here you can see the logs and detect the reason for this error.
524
525Best Regards
526Your IPFire-Build-Script
527
528
529Here is a summary... The full logs are in the attachment.
530---------------------------------------------------------
531
532`tail log/_*`
533END
534 echo -ne "${BOLD}***Sending error message${NORMAL}"
535 ;;
536 esac
537 tar cfz $ATTACHMENT log/_build*
538 cat /tmp/ipfire_mail_body | tools/sendEmail -q \
c8582074
MT
539 -f $MAIL_USER \
540 -t $MAIL_TO \
15679d9f 541 -u $SUBJECT \
c8582074
MT
542 -s $MAIL_SERVER:25 \
543 -xu $MAIL_USER \
544 -xp $MAIL_PASS \
15679d9f
MT
545 -l log/_build.mail.log \
546 -a $ATTACHMENT # -v
547 if [ "$?" -eq "0" ]; then
548 beautify message DONE
549 else
550 beautify message FAIL
551 fi
552 rm -f /tmp/ipfire_mail_body $ATTACHMENT
553}
554
555make_config() {
a50d04ab
MT
556 clear
557 echo -e "${BOLD}***This will create your configuration...${NORMAL}"
558 echo -ne "***If your are ready press <ENTER>!"
559 read
560 clear
561 echo -ne "***The buildscript will create a full iso image.\n"
562 echo -ne "***If you want to skip any package please enter its name here seperated with space.\n"
563 echo -ne "Actually in the list are: $SKIP_PACKAGE_LIST\n"
564 echo -ne "Do you want to change this? (y/N) "
565 read YESNO
566 if [ "$YESNO" == "y" ]; then
567 echo -ne "Please type: "
568 read SKIP_PACKAGE_LIST
569 echo -ne "You entered: $SKIP_PACKAGE_LIST\n"
15679d9f 570 fi
a50d04ab
MT
571
572 clear
573 echo -ne "***When you have compiled successfully, there is the possibility\n"
574 echo -ne "***to upload the iso image to a ftp server.\n"
575 echo -ne "***If the url is empty there will be no upload.\n"
576 echo -ne "Actually there is: $FTP_ISO_URL\n"
577 echo -ne "Do you want to change this? (y/N) "
578 read YESNO
579 if [ "$YESNO" == "y" ]; then
580 echo -ne "Please type the url: "
581 read FTP_ISO_URL
582 echo -ne "Please type the path: "
583 read FTP_ISO_PATH
584 echo -ne "Please type the username: "
585 read FTP_ISO_USER
586 echo -ne "Please type the password (hidden): "
587 read -s FTP_ISO_PASS
588
589 fi
590
591 clear
592 echo -ne "***When you add some new software you can easyly\n"
593 echo -ne "***upload the source code to our repository server.\n"
594 echo -ne "***If the url is empty there will be no upload.\n"
595 echo -ne "Actually there is: $FTP_CACHE_URL\n"
596 echo -ne "Do you want to change this? (y/N) "
597 read YESNO
598 if [ "$YESNO" == "y" ]; then
599 echo -ne "Please type the url: "
600 read FTP_CACHE_URL
601 echo -ne "Please type the path: "
602 read FTP_CACHE_PATH
603 echo -ne "Please type the username: "
604 read FTP_CACHE_USER
605 echo -ne "Please type the password (hidden): "
606 read -s FTP_CACHE_PASS
607
608 fi
609
610 clear
611 echo -ne "***If there are some important messages you\n"
612 echo -ne "***can get a notification mail.\n"
613 echo -ne "***Please type one ore more email adresses (seperated by comma).\n"
614 echo -ne "Actually there is: $MAIL_TO\n"
615 echo -ne "Do you want to change this? (y/N) "
616 read YESNO
617 if [ "$YESNO" == "y" ]; then
618 echo -ne "Please type: "
619 read MAIL_TO
620 echo -ne "You should enter a mail server to login...\n"
621 echo -ne "Please type the url: "
622 read MAIL_SERVER
623 echo -ne "Please type the username: "
624 read MAIL_USER
625 echo -ne "Please type the password (hidden): "
626 read -s MAIL_PASS
627
15679d9f 628 fi
1be59789 629 echo -ne "\n${BOLD}***Saving...${NORMAL}"
a50d04ab
MT
630 cat <<END > $BASEDIR/.config
631### iso server
632FTP_ISO_URL=$FTP_ISO_URL
633FTP_ISO_PATH=$FTP_ISO_PATH
634FTP_ISO_USER=$FTP_ISO_USER
635FTP_ISO_PASS=$FTP_ISO_PASS
15679d9f 636### cache server
a50d04ab
MT
637FTP_CACHE_URL=$FTP_CACHE_URL
638FTP_CACHE_PATH=$FTP_CACHE_PATH
639FTP_CACHE_USER=$FTP_CACHE_USER
640FTP_CACHE_PASS=$FTP_CACHE_PASS
15679d9f 641### mail reports
a50d04ab
MT
642MAIL_TO="$MAIL_TO"
643MAIL_SERVER=$MAIL_SERVER
644MAIL_USER=$MAIL_USER
645MAIL_PASS=$MAIL_PASS
646### misc
647SKIP_PACKAGE_LIST="$SKIP_PACKAGE_LIST"
15679d9f
MT
648END
649 beautify message DONE
33634aa8
MT
650}
651
652compile_tftpd() {
653 mkdir $BASEDIR/tmp
654 tar xvfz $BASEDIR/cache/tftp-hpa-0.42.tar.gz -C $BASEDIR/tmp
a50d04ab 655 cd $BASEDIR/tmp/tftp-hpa-*
33634aa8
MT
656 ./configure --prefix=/ipfire/trunk/tools/ \
657 --sbindir=/ipfire/trunk/tools/ --disable-nls
658 make
659 install -c tftpd/tftpd $BASEDIR/tools/in.tftpd
660 cd -
a50d04ab 661 rm -rf $BASEDIR/tmp/tftp-hpa-*
33634aa8
MT
662}
663
664start_tftpd() {
665 if [ ! -e $BASEDIR/tools/in.tftpd ]; then
666 compile_tftpd
667 fi
668 reload_tftpd
669 if [ "$?" == "0" ]; then
670 $BASEDIR/tools/in.tftpd -l -s $BASEDIR/tftpboot
671 beautify message DONE
672 else
673 echo -en "You don not have a pxe boot image in your base directory.\nPlease compile first."
674 beautify message FAIL
675 exit 1
676 fi
677}
678
679stop_tftpd() {
680 echo -n "Stopping TFTPD..."
681 killall in.tftpd >/dev/null 2>&1
682 sleep 3
683 killall -9 in.tftp >/dev/null 2>&1
684 beautify message DONE
685}
686
687reload_tftpd() {
15854f82 688 if [ -e $BASEDIR/ipfire-$VERSION.$MACHINE-pxe.tgz ]; then
33634aa8 689 mkdir -p $BASEDIR/tftpboot
15854f82 690 tar xfz $BASEDIR/ipfire-$VERSION.$MACHINE-pxe.tgz -C $BASEDIR/tftpboot
33634aa8
MT
691 return 0
692 fi
693 return 1
694}