]> git.ipfire.org Git - ipfire-2.x.git/blame - tools/make-functions
Build preload lib to fake output of uname.
[ipfire-2.x.git] / tools / make-functions
CommitLineData
15679d9f 1#!/bin/bash
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
33e7a260 5# Copyright (C) 2007-2011 IPFire Team <info@ipfire.org> #
70df8302
MT
6# #
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. #
11# #
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. #
16# #
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/>. #
19# #
20###############################################################################
21###############################################################################
15679d9f
MT
22#
23# Beautifying variables & presentation & input output interface
24#
70df8302 25###############################################################################
15679d9f
MT
26
27## Screen Dimentions
28# Find current screen size
29if [ -z "${COLUMNS}" ]; then
30 COLUMNS=$(stty size)
31 COLUMNS=${COLUMNS##* }
32fi
33
34# When using remote connections, such as a serial port, stty size returns 0
35if [ "${COLUMNS}" = "0" ]; then
36 COLUMNS=80
37fi
38
39## Measurements for positioning result messages
40RESULT_WIDTH=4
41TIME_WIDTH=8
42OPT_WIDTH=6
43VER_WIDTH=10
44RESULT_COL=$((${COLUMNS} - $RESULT_WIDTH - 4))
45TIME_COL=$((${RESULT_COL} - $TIME_WIDTH - 5))
46OPT_COL=$((${TIME_COL} - $OPT_WIDTH - 5))
47VER_COL=$((${OPT_COL} - $VER_WIDTH - 5))
48
49## Set Cursur Position Commands, used via echo -e
50SET_RESULT_COL="\\033[${RESULT_COL}G"
51SET_TIME_COL="\\033[${TIME_COL}G"
52SET_OPT_COL="\\033[${OPT_COL}G"
53SET_VER_COL="\\033[${VER_COL}G"
54
55# Define color for messages
56BOLD="\\033[1;39m"
57DONE="\\033[1;32m"
58SKIP="\\033[1;34m"
59WARN="\\033[1;35m"
60FAIL="\\033[1;31m"
61NORMAL="\\033[0;39m"
62
63evaluate() {
64 if [ "$?" -eq "0" ]; then
65 beautify message DONE
66 else
67 EXITCODE=$1
68 shift 1
69 beautify message FAIL
70 $*
71 if [ $EXITCODE -ne "0" ]; then
72 exit $EXITCODE
73 fi
74 fi
75}
76
77position_cursor()
78{
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
89
90 START=$1
91 STRING=$2
92 OFFSET=$3
93
94 STRING_LENGTH=${#STRING}
95
96 if [ ${OFFSET} -lt 0 ]; then
97 COL=$((${START} + ${OFFSET} - ${STRING_LENGTH}))
98 else
99 COL=$((${START} + ${OFFSET}))
100 fi
101
102 SET_COL="\\033[${COL}G"
103
104 echo $SET_COL
105} # End of position_cursor()
106
107
108beautify()
109{
110 # Commands: build_stage, make_pkg, message, result
111 case "$1" in
112 message)
113 case "$2" in
114 DONE)
115 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
116 ;;
117 WARN)
118 echo -ne "${WARN}${3}${NORMAL}${SET_RESULT_COL}[${WARN} WARN ${NORMAL}]\n"
119 ;;
120 FAIL)
121 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
122 ;;
123 SKIP)
124 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
125 ;;
126 esac
127 ;;
0b59f25c 128 build_stage)
15679d9f 129 MESSAGE=$2
0b59f25c
MT
130 if [ "$STAGE_TIME_START" ]; then
131 LAST_STAGE_TIME=$[ `date +%s` - $STAGE_TIME_START ]
132 fi
7ab7a9b4 133 STAGE_TIME_START=`date +%s`
0b59f25c
MT
134 echo -ne "${BOLD}*** ${MESSAGE}${NORMAL}"
135 if [ "$LAST_STAGE_TIME" ]; then
136 echo -ne "${DONE} (Last stage took $LAST_STAGE_TIME secs)${NORMAL}"
137 fi
138 echo -ne "${BOLD}${SET_VER_COL} version${SET_OPT_COL} options${SET_TIME_COL} time (sec)${SET_RESULT_COL} status${NORMAL}\n"
7ab7a9b4
MT
139 ;;
140 build_start)
141 BUILD_TIME_START=`date +%s`
142 ;;
143 build_end)
144 BUILD_TIME_END=`date +%s`
070fb401
CS
145 seconds=$[ $BUILD_TIME_END - $BUILD_TIME_START ]
146 hours=$((seconds / 3600))
147 seconds=$((seconds % 3600))
148 minutes=$((seconds / 60))
149 seconds=$((seconds % 60))
150
151 echo -ne "${DONE}***Build is finished now and took $hours hour(s) $minutes minute(s) $seconds second(s)!${NORMAL}\n"
7ab7a9b4 152 ;;
15679d9f
MT
153 make_pkg)
154 echo "$2" | while read PKG_VER PROGRAM OPTIONS
155 do
156 SET_VER_COL_REAL=`position_cursor $OPT_COL $PKG_VER -3`
157
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}"
161 else
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}"
165 fi
166 done
167 ;;
168 result)
169 RESULT=$2
170
171 if [ ! $3 ]; then
172 PKG_TIME=0
173 else
174 PKG_TIME=$3
175 fi
176
177 SET_TIME_COL_REAL=`position_cursor $RESULT_COL $PKG_TIME -3`
178 case "$RESULT" in
179 DONE)
180 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
181 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
182 ;;
183 FAIL)
184 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
185 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
186 ;;
187 SKIP)
15679d9f
MT
188 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
189 ;;
190 esac
191 ;;
192 esac
193} # End of beautify()
194
195
196get_pkg_ver()
197{
33e7a260 198 PKG_VER=`grep -E "^VER |^VER=|^VER " $1 | awk '{print $3}'`
15679d9f
MT
199
200 if [ -z $PKG_VER ]; then
201 PKG_VER=`grep "Exp " $1 | awk '{print $4}'`
202 fi
33e7a260
AF
203 if [ -z $PKG_VER ]; then
204 PKG_VER="?"
205 fi
15679d9f
MT
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/..}`
215 fi
216
217 echo "$PKG_VER"
218} # End of get_pkg_ver()
219
220if [ 'x86_64' = $MACHINE -o 'i686' = $MACHINE -o 'i586' = $MACHINE ]; then
221 echo "`date -u '+%b %e %T'`: Machine is iX86 (or equivalent)" >> $LOGFILE
222 MACHINE=i586
223 BUILDTARGET=i586-pc-linux-gnu
9b0ff0a0 224 CFLAGS="-O2 -march=i586 -pipe -fomit-frame-pointer"
b4b6bcdb 225 CXXFLAGS="-O2 -march=i586 -pipe -fomit-frame-pointer"
15679d9f
MT
226 C2FLAGS="-O2 -march=i586 -mtune=i586 -pipe -fomit-frame-pointer"
227 CXX2FLAGS="-O2 -march=i586 -mtune=i586 -pipe -fomit-frame-pointer"
51f9e7ac
MT
228elif [ 'armv5tejl' = $MACHINE -o 'armv5tel' = $MACHINE ]; then
229 echo "`date -u '+%b %e %T'`: Machine is ARM (or equivalent)" >> $LOGFILE
df94e866
MT
230 MACHINE=armv5tel
231 MACHINE_TYPE=arm
232 BUILDTARGET=${MACHINE}-unknown-linux-gnueabi
51f9e7ac
MT
233 CFLAGS="-O2 -march=armv5te -fomit-frame-pointer -pipe"
234 CXXFLAGS="$CFLAGS"
235 C2FLAGS="$CFLAGS"
236 CXX2FLAGS="$CXXFLAGS"
15679d9f
MT
237else
238 echo "`date -u '+%b %e %T'`: Can't determine your architecture - $MACHINE" >> $LOGFILE
239 exit 1
240fi
241
242# Define immediately
243stdumount() {
b4b6bcdb
MT
244 umount $BASEDIR/build/sys 2>/dev/null;
245 umount $BASEDIR/build/dev/shm 2>/dev/null;
15679d9f 246 umount $BASEDIR/build/dev/pts 2>/dev/null;
b4b6bcdb 247 umount $BASEDIR/build/dev 2>/dev/null;
15679d9f
MT
248 umount $BASEDIR/build/proc 2>/dev/null;
249 umount $BASEDIR/build/install/mnt 2>/dev/null;
250 umount $BASEDIR/build/usr/src/cache 2>/dev/null;
251 umount $BASEDIR/build/usr/src/ccache 2>/dev/null;
252 umount $BASEDIR/build/usr/src/config 2>/dev/null;
253 umount $BASEDIR/build/usr/src/doc 2>/dev/null;
254 umount $BASEDIR/build/usr/src/html 2>/dev/null;
255 umount $BASEDIR/build/usr/src/langs 2>/dev/null;
256 umount $BASEDIR/build/usr/src/lfs 2>/dev/null;
257 umount $BASEDIR/build/usr/src/log 2>/dev/null;
258 umount $BASEDIR/build/usr/src/src 2>/dev/null;
259}
260
261exiterror() {
262 stdumount
263 for i in `seq 0 7`; do
264 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
265 losetup -d /dev/loop${i} 2>/dev/null
266 fi;
267 done
268 echo -e "\nERROR: $*"
269 echo " Check $LOGFILE for errors if applicable"
270 exit 1
271}
272
4c8608f0
MT
273fake_environ() {
274 [ -e "${BASEDIR}/build/tools/lib/libpakfire_preload.so" ] || return
275
276 local env="LD_PRELOAD=/tools/lib/libpakfire_preload.so"
277
278 # Fake kernel version, because some of the packages do not compile
279 # with kernel 3.0 and later.
280 env="${env} UTS_RELEASE=${KVER}"
281
282 # Fake machine version.
283 env="${env} UTS_MACHINE=${MACHINE}"
284
285 echo "${env}"
286}
287
15679d9f
MT
288entershell() {
289 if [ ! -e $BASEDIR/build/usr/src/lfs/ ]; then
290 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/"
291 fi
4c8608f0 292
15679d9f 293 echo "Entering to a shell inside LFS chroot, go out with exit"
0381e7a6 294 $linux32 chroot $LFS /tools/bin/env -i HOME=/root TERM=$TERM PS1='\u:\w\$ ' \
15679d9f
MT
295 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
296 VERSION=$VERSION CONFIG_ROOT=$CONFIG_ROOT \
297 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
298 CFLAGS="$CF2LAGS" CXXFLAGS="$CXX2FLAGS" \
299 CCACHE_DIR=/usr/src/ccache \
36d351ff 300 CCACHE_COMPRESS=1 \
15679d9f
MT
301 CCACHE_HASHDIR=1 \
302 KVER=$KVER \
df94e866
MT
303 BUILDTARGET="$BUILDTARGET" \
304 MACHINE="$MACHINE" \
305 MACHINE_TYPE="$MACHINE_TYPE" \
15679d9f 306 KGCC="ccache /usr/bin/gcc" \
4c8608f0 307 $(fake_environ) \
15679d9f
MT
308 /tools/bin/bash
309 if [ $? -ne 0 ]; then
310 beautify message FAIL
311 exiterror "chroot error"
312 else
313 stdumount
314 fi
315}
316
317############################################################################
318# #
319# Necessary shell functions #
320# #
321############################################################################
322#
323# Common checking before entering the chroot and compilling
324#
325# Return:0 caller can continue
326# :1 skip (nothing to do)
327# or fail if no script file found
328#
329lfsmakecommoncheck()
330{
15679d9f
MT
331 # Script present?
332 if [ ! -f $BASEDIR/lfs/$1 ]; then
333 exiterror "No such file or directory: $BASEDIR/$1"
334 fi
335
336 local PKG_VER=`get_pkg_ver $BASEDIR/lfs/$1`
337 beautify make_pkg "$PKG_VER $*"
338
846e756e
MT
339 # Check if this package is supported by our architecture.
340 # If no SUP_ARCH is found, we assume the package can be built for all.
341 if grep "^SUP_ARCH" ${BASEDIR}/lfs/${1} >/dev/null; then
342 # Check if package supports ${MACHINE} or all architectures.
343 if ! grep -E "^SUP_ARCH.*${MACHINE}|^SUP_ARCH.*all" ${BASEDIR}/lfs/${1} >/dev/null; then
344 beautify result SKIP
345 return 1
346 fi
347 fi
348
15679d9f
MT
349 # Script slipped?
350 local i
351 for i in $SKIP_PACKAGE_LIST
352 do
a50d04ab 353 if [ "$i" == "$1" ]; then
15679d9f
MT
354 beautify result SKIP
355 return 1;
356 fi
357 done
358
359 echo -ne "`date -u '+%b %e %T'`: Building $* " >> $LOGFILE
360
51f9e7ac 361 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MACHINE=$MACHINE \
df94e866 362 MACHINE_TYPE="$MACHINE_TYPE" \
51f9e7ac 363 MESSAGE="$1\t " download >> $LOGFILE 2>&1
15679d9f
MT
364 if [ $? -ne 0 ]; then
365 exiterror "Download error in $1"
366 fi
367
51f9e7ac 368 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MACHINE=$MACHINE \
df94e866 369 MACHINE_TYPE="$MACHINE_TYPE" \
51f9e7ac 370 MESSAGE="$1\t md5sum" md5 >> $LOGFILE 2>&1
15679d9f
MT
371 if [ $? -ne 0 ]; then
372 exiterror "md5sum error in $1, check file in cache or signature"
373 fi
374
375 return 0 # pass all!
376} # End of lfsmakecommoncheck()
377
378lfsmake1() {
379 lfsmakecommoncheck $*
380 [ $? == 1 ] && return 0
381
382 local PKG_TIME_START=`date +%s`
383
384 cd $BASEDIR/lfs && make -f $* BUILDTARGET=$BUILDTARGET \
385 MACHINE=$MACHINE \
df94e866 386 MACHINE_TYPE=$MACHINE_TYPE \
15679d9f
MT
387 LFS_BASEDIR=$BASEDIR \
388 ROOT=$LFS \
389 KVER=$KVER \
390 MAKETUNING=$MAKETUNING \
4c8608f0 391 $(fake_environ) \
15679d9f
MT
392 install >> $LOGFILE 2>&1
393 local COMPILE_SUCCESS=$?
394 local PKG_TIME_END=`date +%s`
395
396 if [ $COMPILE_SUCCESS -ne 0 ]; then
397 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
398 exiterror "Building $*";
399 else
400 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
401 fi
402
403 return 0
404}
405
406lfsmake2() {
407 lfsmakecommoncheck $*
408 [ $? == 1 ] && return 0
409
410 local PKG_TIME_START=`date +%s`
94571564 411 $linux32 chroot $LFS /tools/bin/env -i HOME=/root \
15679d9f
MT
412 TERM=$TERM PS1='\u:\w\$ ' \
413 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
414 VERSION=$VERSION \
415 CONFIG_ROOT=$CONFIG_ROOT \
416 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
417 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
36d351ff 418 CCACHE_DIR=/usr/src/ccache CCACHE_COMPRESS=1 CCACHE_HASHDIR=1 \
15679d9f
MT
419 KVER=$KVER MAKETUNING=$MAKETUNING \
420 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
df94e866 421 MACHINE_TYPE="$MACHINE_TYPE" \
4c8608f0 422 $(fake_environ) \
15679d9f
MT
423 /tools/bin/bash -x -c "cd /usr/src/lfs && \
424 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
425 local COMPILE_SUCCESS=$?
426 local PKG_TIME_END=`date +%s`
427
428 if [ $COMPILE_SUCCESS -ne 0 ]; then
429 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
430 exiterror "Building $*";
431 else
432 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
433 fi
434
435 return 0
436}
437
438ipfiremake() {
439 lfsmakecommoncheck $*
440 [ $? == 1 ] && return 0
441
442 local PKG_TIME_START=`date +%s`
94571564 443 $linux32 chroot $LFS /tools/bin/env -i HOME=/root \
15679d9f
MT
444 TERM=$TERM PS1='\u:\w\$ ' \
445 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
446 VERSION=$VERSION \
a01fc474 447 CORE=$CORE \
15679d9f
MT
448 CONFIG_ROOT=$CONFIG_ROOT \
449 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
450 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
36d351ff 451 CCACHE_DIR=/usr/src/ccache CCACHE_COMPRESS=1 CCACHE_HASHDIR=1 \
15679d9f
MT
452 KVER=$KVER MAKETUNING=$MAKETUNING \
453 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
df94e866 454 MACHINE_TYPE="$MACHINE_TYPE" \
4c8608f0 455 $(fake_environ) \
15679d9f
MT
456 /bin/bash -x -c "cd /usr/src/lfs && \
457 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
458
459 local COMPILE_SUCCESS=$?
460 local PKG_TIME_END=`date +%s`
461
462 if [ $COMPILE_SUCCESS -ne 0 ]; then
463 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
464 exiterror "Building $*";
465 else
466 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
467 fi
468 return 0
469}
470
471ipfiredist() {
0d909a4a
MT
472 lfsmakecommoncheck $*
473 [ $? == 1 ] && return 0
474
475 local PKG_TIME_START=`date +%s`
476 chroot $LFS /tools/bin/env -i HOME=/root \
477 TERM=$TERM PS1='\u:\w\$ ' \
478 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
479 VERSION=$VERSION \
480 CONFIG_ROOT=$CONFIG_ROOT \
481 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
482 CFLAGS="$C2FLAGS" CXXFLAGS="$CXX2FLAGS" \
36d351ff 483 CCACHE_DIR=/usr/src/ccache CCACHE_COMPRESS=1 CCACHE_HASHDIR=1 \
3c937429 484 KVER=$KVER \
0d909a4a 485 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
df94e866 486 MACHINE_TYPE="$MACHINE_TYPE" \
4c8608f0 487 $(fake_environ) \
0d909a4a
MT
488 /bin/bash -x -c "cd /usr/src/lfs && \
489 make -f $1 LFS_BASEDIR=/usr/src dist" >>$LOGFILE 2>&1
490
491 local COMPILE_SUCCESS=$?
492 local PKG_TIME_END=`date +%s`
493
494 if [ $COMPILE_SUCCESS -ne 0 ]; then
495 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
496 exiterror "Packaging $*";
15679d9f 497 else
0d909a4a 498 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
15679d9f
MT
499 fi
500 return 0
501}
502
503installmake() {
41921bd9
MT
504 lfsmakecommoncheck $*
505 [ $? == 1 ] && return 0
506
507 local PKG_TIME_START=`date +%s`
94571564 508 $linux32 chroot $LFS /tools/bin/env -i HOME=/root \
15679d9f 509 TERM=$TERM PS1='\u:\w\$ ' \
4da401bc 510 PATH=/opt/i586-uClibc/i586-linux-uclibc/bin:/opt/i586-uClibc/bin:/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
15679d9f
MT
511 VERSION=$VERSION \
512 CONFIG_ROOT=$CONFIG_ROOT \
513 LFS_PASS="install" \
514 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
515 CFLAGS="-Os" CXXFLAGS="-Os" \
36d351ff 516 CCACHE_DIR=/usr/src/ccache CCACHE_COMPRESS=1 CCACHE_HASHDIR=1 \
3c937429 517 KVER=$KVER \
15679d9f 518 BUILDTARGET="$BUILDTARGET" MACHINE="$MACHINE" \
df94e866 519 MACHINE_TYPE="$MACHINE_TYPE" \
15679d9f
MT
520 /bin/bash -x -c "cd /usr/src/lfs && \
521 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
41921bd9
MT
522
523 local COMPILE_SUCCESS=$?
524 local PKG_TIME_END=`date +%s`
525
526 if [ $COMPILE_SUCCESS -ne 0 ]; then
527 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
528 exiterror "Building $*";
15679d9f 529 else
41921bd9 530 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
15679d9f
MT
531 fi
532 return 0
533}
534
8a5f0f44
MT
535update_langs() {
536 echo -ne "Checking the translations for missing or obsolete strings..."
1065bfea 537 chmod 755 $BASEDIR/tools/{check_strings.pl,sort_strings.pl,check_langs.sh}
8a5f0f44
MT
538 $BASEDIR/tools/sort_strings.pl en
539 $BASEDIR/tools/sort_strings.pl de
e73e134c
AF
540 $BASEDIR/tools/sort_strings.pl fr
541 $BASEDIR/tools/sort_strings.pl es
196e5f8f 542 $BASEDIR/tools/sort_strings.pl pl
2bb7b134 543 $BASEDIR/tools/sort_strings.pl ru
8a5f0f44
MT
544 $BASEDIR/tools/check_strings.pl en > $BASEDIR/doc/language_issues.en
545 $BASEDIR/tools/check_strings.pl de > $BASEDIR/doc/language_issues.de
e73e134c
AF
546 $BASEDIR/tools/check_strings.pl fr > $BASEDIR/doc/language_issues.fr
547 $BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.es
196e5f8f 548 $BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.pl
2bb7b134 549 $BASEDIR/tools/check_strings.pl ru > $BASEDIR/doc/language_issues.ru
8a5f0f44
MT
550 $BASEDIR/tools/check_langs.sh > $BASEDIR/doc/language_missings
551 beautify message DONE
552}