2 ###############################################################################
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007-2011 IPFire Team <info@ipfire.org> #
7 # This program 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 3 of the License, or #
10 # (at your option) any later version. #
12 # This program 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. #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
20 ###############################################################################
21 ###############################################################################
23 # Beautifying variables & presentation & input output interface
25 ###############################################################################
28 # Find current screen size
29 if [ -z "${COLUMNS}" ]; then
31 COLUMNS
=${COLUMNS##* }
34 # When using remote connections, such as a serial port, stty size returns 0
35 if [ "${COLUMNS}" = "0" ]; then
39 ## Measurements for positioning result messages
44 RESULT_COL
=$
((${COLUMNS} - $RESULT_WIDTH - 4))
45 TIME_COL
=$
((${RESULT_COL} - $TIME_WIDTH - 5))
46 OPT_COL
=$
((${TIME_COL} - $OPT_WIDTH - 5))
47 VER_COL
=$
((${OPT_COL} - $VER_WIDTH - 5))
49 ## Set Cursur Position Commands, used via echo -e
50 SET_RESULT_COL
="\\033[${RESULT_COL}G"
51 SET_TIME_COL
="\\033[${TIME_COL}G"
52 SET_OPT_COL
="\\033[${OPT_COL}G"
53 SET_VER_COL
="\\033[${VER_COL}G"
55 # Define color for messages
64 if [ "$?" -eq "0" ]; then
71 if [ $EXITCODE -ne "0" ]; then
79 # ARG1=starting position on screen
80 # ARG2=string to be printed
81 # ARG3=offset, negative for left movement, positive for right movement, relative to ARG1
82 # For example if your starting position is column 50 and you want to print Hello three columns to the right
83 # of your starting position, your call will look like this:
84 # position_cursor 50 "Hello" 3 (you'll get the string Hello at position 53 (= 50 + 3)
85 # If on the other hand you want your string "Hello" to end three columns to the left of position 50,
86 # your call will look like this:
87 # position_cursor 50 "Hello" -3 (you'll get the string Hello at position 42 (= 50 - 5 -3)
88 # If you want to start printing at the exact starting location, use offset 0
94 STRING_LENGTH
=${#STRING}
96 if [ ${OFFSET} -lt 0 ]; then
97 COL
=$
((${START} + ${OFFSET} - ${STRING_LENGTH}))
99 COL
=$
((${START} + ${OFFSET}))
102 SET_COL
="\\033[${COL}G"
105 } # End of position_cursor()
110 # Commands: build_stage, make_pkg, message, result
115 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
118 echo -ne "${WARN}${3}${NORMAL}${SET_RESULT_COL}[${WARN} WARN ${NORMAL}]\n"
121 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
124 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
130 if [ "$STAGE_TIME_START" ]; then
131 LAST_STAGE_TIME
=$
[ `date +%s` - $STAGE_TIME_START ]
133 STAGE_TIME_START
=`date +%s`
134 echo -ne "${BOLD}*** ${MESSAGE}${NORMAL}"
135 if [ "$LAST_STAGE_TIME" ]; then
136 echo -ne "${DONE} (Last stage took $LAST_STAGE_TIME secs)${NORMAL}"
138 echo -ne "${BOLD}${SET_VER_COL} version${SET_OPT_COL} options${SET_TIME_COL} time (sec)${SET_RESULT_COL} status${NORMAL}\n"
141 BUILD_TIME_START
=`date +%s`
144 BUILD_TIME_END
=`date +%s`
145 seconds
=$
[ $BUILD_TIME_END - $BUILD_TIME_START ]
146 hours
=$
((seconds
/ 3600))
147 seconds
=$
((seconds
% 3600))
148 minutes
=$
((seconds
/ 60))
149 seconds
=$
((seconds
% 60))
151 echo -ne "${DONE}***Build is finished now and took $hours hour(s) $minutes minute(s) $seconds second(s)!${NORMAL}\n"
154 echo "$2" |
while read PKG_VER PROGRAM OPTIONS
156 SET_VER_COL_REAL
=`position_cursor $OPT_COL $PKG_VER -3`
158 if [ "$OPTIONS" == "" ]; then
159 echo -ne "${PROGRAM}${SET_VER_COL}[ ${BOLD}${SET_VER_COL_REAL}${PKG_VER}"
160 echo -ne "${NORMAL} ]${SET_RESULT_COL}"
162 echo -ne "${PROGRAM}${SET_VER_COL}[ ${BOLD}${SET_VER_COL_REAL}${PKG_VER}"
163 echo -ne "${NORMAL} ]${SET_OPT_COL}[ ${BOLD}${OPTIONS}"
164 echo -ne "${NORMAL} ]${SET_RESULT_COL}"
177 SET_TIME_COL_REAL
=`position_cursor $RESULT_COL $PKG_TIME -3`
180 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
181 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
184 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
185 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
188 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
193 } # End of beautify()
198 PKG_VER
=`grep -E "^VER |^VER=|^VER " $1 | awk '{print $3}'`
200 if [ -z $PKG_VER ]; then
201 PKG_VER
=`grep "Exp " $1 | awk '{print $4}'`
203 if [ -z $PKG_VER ]; then
206 if [ ${#PKG_VER} -gt $VER_WIDTH ]; then
207 # If a package version number is greater than $VER_WIDTH, we keep the first 4 characters
208 # and replace enough characters to fit the resulting string on the screen. We'll replace
209 # the extra character with .. (two dots). That's why the "+ 2" in the formula below.
210 # Example: if we have a 21-long version number that we want to fit into a 10-long space,
211 # we have to remove 11 characters. But if we replace 11 characters with 2 characters, we'll
212 # end up with a 12-character long string. That's why we replace 12 characters with ..
213 REMOVE
=`expr substr "$PKG_VER" 4 $[ ${#PKG_VER} - $VER_WIDTH + 2 ]`
214 PKG_VER
=`echo ${PKG_VER/$REMOVE/..}`
218 } # End of get_pkg_ver()
220 if [ 'x86_64' = $MACHINE -o 'i686' = $MACHINE -o 'i586' = $MACHINE ]; then
221 echo "`date -u '+%b %e %T'`: Machine is iX86 (or equivalent)" >> $LOGFILE
223 CROSSTARGET
=${MACHINE}-cross-linux-gnu
224 BUILDTARGET
=i586-pc-linux-gnu
225 CFLAGS_ARCH
="${GLOBAL_CFLAGS} -march=i586 -fomit-frame-pointer"
226 elif [ 'armv5tejl' = $MACHINE -o 'armv5tel' = $MACHINE -o 'armv6l' = $MACHINE -o 'armv7l' = $MACHINE ]; then
227 echo "`date -u '+%b %e %T'`: Machine is ARM (or equivalent)" >> $LOGFILE
230 CROSSTARGET
=${MACHINE}-cross-linux-gnueabi
231 BUILDTARGET
=${MACHINE}-unknown-linux-gnueabi
232 CFLAGS_ARCH
="-march=armv5te -mfloat-abi=soft -fomit-frame-pointer"
234 echo "`date -u '+%b %e %T'`: Can't determine your architecture - $MACHINE"
238 CFLAGS
="-O2 -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fPIC"
239 CFLAGS
="${CFLAGS} -fstack-protector-all --param=ssp-buffer-size=4 ${CFLAGS_ARCH}"
242 CXX2FLAGS
="${CXXFLAGS}"
246 umount
$BASEDIR/build
/sys
2>/dev
/null
;
247 umount
$BASEDIR/build
/dev
/shm
2>/dev
/null
;
248 umount
$BASEDIR/build
/dev
/pts
2>/dev
/null
;
249 umount
$BASEDIR/build
/dev
2>/dev
/null
;
250 umount
$BASEDIR/build
/proc
2>/dev
/null
;
251 umount
$BASEDIR/build
/install
/mnt
2>/dev
/null
;
252 umount
$BASEDIR/build
/usr
/src
/cache
2>/dev
/null
;
253 umount
$BASEDIR/build
/usr
/src
/ccache
2>/dev
/null
;
254 umount
$BASEDIR/build
/usr
/src
/config
2>/dev
/null
;
255 umount
$BASEDIR/build
/usr
/src
/doc
2>/dev
/null
;
256 umount
$BASEDIR/build
/usr
/src
/html
2>/dev
/null
;
257 umount
$BASEDIR/build
/usr
/src
/langs
2>/dev
/null
;
258 umount
$BASEDIR/build
/usr
/src
/lfs
2>/dev
/null
;
259 umount
$BASEDIR/build
/usr
/src
/log
2>/dev
/null
;
260 umount
$BASEDIR/build
/usr
/src
/src
2>/dev
/null
;
265 for i
in `seq 0 7`; do
266 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
267 losetup
-d /dev
/loop
${i} 2>/dev
/null
270 echo -e "\nERROR: $*"
271 echo " Check $LOGFILE for errors if applicable"
276 [ -e "${BASEDIR}/build/tools/lib/libpakfire_preload.so" ] ||
return
278 local env
="LD_PRELOAD=/tools/lib/libpakfire_preload.so"
280 # Fake kernel version, because some of the packages do not compile
281 # with kernel 3.0 and later.
282 env
="${env} UTS_RELEASE=${KVER}"
284 # Fake machine version.
285 env
="${env} UTS_MACHINE=${MACHINE}"
291 if [ ! -e $BASEDIR/build
/usr
/src
/lfs
/ ]; then
292 exiterror
"No such file or directory: $BASEDIR/build/usr/src/lfs/"
295 echo "Entering to a shell inside LFS chroot, go out with exit"
296 chroot
$LFS /tools
/bin
/env
-i HOME
=/root TERM
=$TERM PS1
='\u:\w\$ ' \
297 PATH
=/tools
/ccache
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin
:/tools
/bin \
298 VERSION
=$VERSION CONFIG_ROOT
=$CONFIG_ROOT \
299 NAME
="$NAME" SNAME
="$SNAME" SLOGAN
="$SLOGAN" \
300 CFLAGS
="$CF2LAGS" CXXFLAGS
="$CXX2FLAGS" \
301 CCACHE_DIR
=/usr
/src
/ccache \
303 CCACHE_COMPILERCHECK
="none" \
305 BUILDTARGET
="$BUILDTARGET" \
306 CROSSTARGET
="${CROSSTARGET}" \
308 MACHINE_TYPE
="$MACHINE_TYPE" \
309 KGCC
="ccache /usr/bin/gcc" \
312 if [ $?
-ne 0 ]; then
313 beautify message FAIL
314 exiterror
"chroot error"
320 ############################################################################
322 # Necessary shell functions #
324 ############################################################################
326 # Common checking before entering the chroot and compilling
328 # Return:0 caller can continue
329 # :1 skip (nothing to do)
330 # or fail if no script file found
335 if [ ! -f $BASEDIR/lfs
/$1 ]; then
336 exiterror
"No such file or directory: $BASEDIR/$1"
339 local PKG_VER
=`get_pkg_ver $BASEDIR/lfs/$1`
340 beautify make_pkg
"$PKG_VER $*"
342 # Check if this package is supported by our architecture.
343 # If no SUP_ARCH is found, we assume the package can be built for all.
344 if grep "^SUP_ARCH" ${BASEDIR}/lfs
/${1} >/dev
/null
; then
345 # Check if package supports ${MACHINE} or all architectures.
346 if ! grep -E "^SUP_ARCH.*${MACHINE}|^SUP_ARCH.*all" ${BASEDIR}/lfs/${1} >/dev/null; then
354 for i in $SKIP_PACKAGE_LIST
356 if [ "$i" == "$1" ]; then
362 echo -ne "`date -u '+%b %e %T'`: Building $
* " >> $LOGFILE
364 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MACHINE=$MACHINE \
365 MACHINE_TYPE="$MACHINE_TYPE" \
366 MESSAGE="$1\t " download >> $LOGFILE 2>&1
367 if [ $? -ne 0 ]; then
368 exiterror "Download error
in $1"
371 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MACHINE=$MACHINE \
372 MACHINE_TYPE="$MACHINE_TYPE" \
373 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
"
379 } # End of lfsmakecommoncheck()
382 lfsmakecommoncheck $*
383 [ $? == 1 ] && return 0
385 local PKG_TIME_START=`date +%s`
387 cd $BASEDIR/lfs && make -f $* BUILDTARGET=$BUILDTARGET \
388 CROSSTARGET="${CROSSTARGET}" \
390 MACHINE_TYPE=$MACHINE_TYPE \
391 LFS_BASEDIR=$BASEDIR \
394 MAKETUNING=$MAKETUNING \
395 install >> $LOGFILE 2>&1
396 local COMPILE_SUCCESS=$?
397 local PKG_TIME_END=`date +%s`
399 if [ $COMPILE_SUCCESS -ne 0 ]; then
400 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
401 exiterror "Building $
*";
403 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
410 lfsmakecommoncheck $*
411 [ $? == 1 ] && return 0
413 local PKG_TIME_START=`date +%s`
414 chroot $LFS /tools/bin/env -i HOME=/root \
415 TERM=$TERM PS1='\u:\w\$ ' \
416 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
417 VERSION=$VERSION PAKFIRE_CORE="${PAKFIRE_CORE}" \
418 SYSTEM_RELEASE="${SYSTEM_RELEASE}" \
419 CONFIG_ROOT=$CONFIG_ROOT \
420 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
421 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
422 CCACHE_DIR=/usr/src/ccache CCACHE_COMPRESS=1 \
423 CCACHE_COMPILERCHECK="none
" \
424 KVER=$KVER MAKETUNING=$MAKETUNING \
425 BUILDTARGET="$BUILDTARGET" \
426 CROSSTARGET="${CROSSTARGET}" \
428 MACHINE_TYPE="$MACHINE_TYPE" \
430 /tools/bin/bash -x -c "cd /usr
/src
/lfs
&& \
431 make -f $
* LFS_BASEDIR
=/usr
/src
install" >>$LOGFILE 2>&1
432 local COMPILE_SUCCESS=$?
433 local PKG_TIME_END=`date +%s`
435 if [ $COMPILE_SUCCESS -ne 0 ]; then
436 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
437 exiterror "Building $
*";
439 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
446 lfsmakecommoncheck $*
447 [ $? == 1 ] && return 0
449 local PKG_TIME_START=`date +%s`
450 chroot $LFS /tools/bin/env -i HOME=/root \
451 TERM=$TERM PS1='\u:\w\$ ' \
452 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
455 CONFIG_ROOT=$CONFIG_ROOT \
456 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
457 SYSTEM_RELEASE="$SYSTEM_RELEASE" \
458 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
459 CCACHE_DIR=/usr/src/ccache CCACHE_COMPRESS=1 \
460 CCACHE_COMPILERCHECK="none
" \
461 KVER=$KVER MAKETUNING=$MAKETUNING \
462 BUILDTARGET="$BUILDTARGET" \
463 CROSSTARGET="${CROSSTARGET}" \
465 MACHINE_TYPE="$MACHINE_TYPE" \
467 /bin/bash -x -c "cd /usr
/src
/lfs
&& \
468 make -f $
* LFS_BASEDIR
=/usr
/src
install" >>$LOGFILE 2>&1
470 local COMPILE_SUCCESS=$?
471 local PKG_TIME_END=`date +%s`
473 if [ $COMPILE_SUCCESS -ne 0 ]; then
474 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
475 exiterror "Building $
*";
477 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
483 lfsmakecommoncheck $*
484 [ $? == 1 ] && return 0
486 local PKG_TIME_START=`date +%s`
487 chroot $LFS /tools/bin/env -i HOME=/root \
488 TERM=$TERM PS1='\u:\w\$ ' \
489 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
491 CONFIG_ROOT=$CONFIG_ROOT \
492 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
493 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
494 CCACHE_DIR=/usr/src/ccache CCACHE_COMPRESS=1 \
495 CCACHE_COMPILERCHECK="none
" \
497 BUILDTARGET="$BUILDTARGET" \
498 CROSSTARGET="${CROSSTARGET}" \
500 MACHINE_TYPE="$MACHINE_TYPE" \
502 /bin/bash -x -c "cd /usr
/src
/lfs
&& \
503 make -f $1 LFS_BASEDIR
=/usr
/src dist
" >>$LOGFILE 2>&1
505 local COMPILE_SUCCESS=$?
506 local PKG_TIME_END=`date +%s`
508 if [ $COMPILE_SUCCESS -ne 0 ]; then
509 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
510 exiterror "Packaging $
*";
512 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
518 lfsmakecommoncheck $*
519 [ $? == 1 ] && return 0
521 local PKG_TIME_START=`date +%s`
522 chroot $LFS /tools/bin/env -i HOME=/root \
523 TERM=$TERM PS1='\u:\w\$ ' \
524 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
526 SYSTEM_RELEASE="${SYSTEM_RELEASE}" \
527 CONFIG_ROOT=$CONFIG_ROOT \
528 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
529 CFLAGS="-Os" CXXFLAGS="-Os" \
530 CCACHE_DIR=/usr/src/ccache CCACHE_COMPRESS=1 CCACHE_HASHDIR=1 \
532 BUILDTARGET="$BUILDTARGET" \
533 CROSSTARGET="${CROSSTARGET}" \
535 MACHINE_TYPE="$MACHINE_TYPE" \
536 LD_LIBRARY_PATH=/tools/lib \
537 /tools/bin/bash -x -c "cd /usr
/src
/lfs
&& \
538 /tools
/bin
/make -f $
* LFS_BASEDIR
=/usr
/src
install" >>$LOGFILE 2>&1
540 local COMPILE_SUCCESS=$?
541 local PKG_TIME_END=`date +%s`
543 if [ $COMPILE_SUCCESS -ne 0 ]; then
544 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
545 exiterror "Building $
*";
547 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
553 echo -ne "Checking the translations
for missing or obsolete
strings...
"
554 chmod 755 $BASEDIR/tools/{check_strings.pl,sort_strings.pl,check_langs.sh}
555 $BASEDIR/tools/sort_strings.pl en
556 $BASEDIR/tools/sort_strings.pl de
557 $BASEDIR/tools/sort_strings.pl fr
558 $BASEDIR/tools/sort_strings.pl es
559 $BASEDIR/tools/sort_strings.pl pl
560 $BASEDIR/tools/sort_strings.pl ru
561 $BASEDIR/tools/sort_strings.pl nl
562 $BASEDIR/tools/sort_strings.pl tr
563 $BASEDIR/tools/check_strings.pl en > $BASEDIR/doc/language_issues.en
564 $BASEDIR/tools/check_strings.pl de > $BASEDIR/doc/language_issues.de
565 $BASEDIR/tools/check_strings.pl fr > $BASEDIR/doc/language_issues.fr
566 $BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.es
567 $BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.pl
568 $BASEDIR/tools/check_strings.pl ru > $BASEDIR/doc/language_issues.ru
569 $BASEDIR/tools/check_strings.pl nl > $BASEDIR/doc/language_issues.nl
570 $BASEDIR/tools/check_strings.pl tr > $BASEDIR/doc/language_issues.tr
571 $BASEDIR/tools/check_langs.sh > $BASEDIR/doc/language_missings
572 beautify message DONE