]> git.ipfire.org Git - ipfire-2.x.git/blob - tools/make-functions
make.sh: Show last lines of log when build aborts
[ipfire-2.x.git] / tools / make-functions
1 #!/bin/bash
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007-2016 IPFire Team <info@ipfire.org> #
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 ###############################################################################
22 #
23 # Beautifying variables & presentation & input output interface
24 #
25 ###############################################################################
26
27 ## Screen Dimentions
28 # Find current screen size
29 if [ -z "${COLUMNS}" ]; then
30 COLUMNS=$(stty size)
31 COLUMNS=${COLUMNS##* }
32 fi
33
34 # When using remote connections, such as a serial port, stty size returns 0
35 if [ "${COLUMNS}" = "0" ]; then
36 COLUMNS=80
37 fi
38
39 ## Measurements for positioning result messages
40 RESULT_WIDTH=4
41 TIME_WIDTH=8
42 OPT_WIDTH=6
43 VER_WIDTH=10
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))
48
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"
54
55 # Define color for messages
56 BOLD="\\033[1;39m"
57 DONE="\\033[1;32m"
58 SKIP="\\033[1;34m"
59 WARN="\\033[1;35m"
60 FAIL="\\033[1;31m"
61 NORMAL="\\033[0;39m"
62
63 configure_target() {
64 local target_arch="${1}"
65
66 if [ "${target_arch}" = "default" ]; then
67 target_arch="$(configure_target_guess)"
68 fi
69
70 case "${target_arch}" in
71 x86_64)
72 BUILDTARGET="${target_arch}-unknown-linux-gnu"
73 CROSSTARGET="${target_arch}-cross-linux-gnu"
74 CFLAGS_ARCH="-m64 -mtune=generic"
75 ;;
76
77 i586)
78 BUILDTARGET="${target_arch}-pc-linux-gnu"
79 CROSSTARGET="${target_arch}-cross-linux-gnu"
80 CFLAGS_ARCH="-march=i586 -mtune=generic -fomit-frame-pointer"
81 ;;
82
83 armv5tel)
84 BUILDTARGET="${target_arch}-unknown-linux-gnueabi"
85 CROSSTARGET="${target_arch}-cross-linux-gnueabi"
86 CFLAGS_ARCH="-march=armv5te -mfloat-abi=soft -fomit-frame-pointer"
87 MACHINE_TYPE="arm"
88 ;;
89
90 *)
91 exiterror "Cannot build for architure ${target_arch}"
92 ;;
93 esac
94
95 # Check if the QEMU helper is available if needed.
96 if qemu_is_required "${target_arch}"; then
97 local qemu_target_helper="$(qemu_find_target_helper_name "${target_arch}")"
98
99 if [ -n "${qemu_target_helper}" ]; then
100 QEMU_TARGET_HELPER="${qemu_target_helper}"
101 else
102 exiterror "Could not find a binfmt_misc helper entry for ${target_arch}"
103 fi
104 fi
105
106 TARGET_ARCH="${target_arch}"
107
108 # Old variable names
109 MACHINE="${TARGET_ARCH}"
110
111 CFLAGS="-O2 -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fPIC"
112 CFLAGS="${CFLAGS} -fstack-protector-strong --param=ssp-buffer-size=4 ${CFLAGS_ARCH}"
113 CXXFLAGS="${CFLAGS}"
114 }
115
116 configure_target_guess() {
117 case "${BUILD_ARCH}" in
118 x86_64|i686|i586)
119 echo "i586"
120 ;;
121 aarch64|armv7*|armv6*|armv5*)
122 echo "armv5tel"
123 ;;
124 *)
125 exiterror "Cannot guess target architecture"
126 ;;
127 esac
128 }
129
130 evaluate() {
131 if [ "$?" -eq "0" ]; then
132 beautify message DONE
133 else
134 EXITCODE=$1
135 shift 1
136 beautify message FAIL
137 $*
138 if [ $EXITCODE -ne "0" ]; then
139 exit $EXITCODE
140 fi
141 fi
142 }
143
144 position_cursor()
145 {
146 # ARG1=starting position on screen
147 # ARG2=string to be printed
148 # ARG3=offset, negative for left movement, positive for right movement, relative to ARG1
149 # For example if your starting position is column 50 and you want to print Hello three columns to the right
150 # of your starting position, your call will look like this:
151 # position_cursor 50 "Hello" 3 (you'll get the string Hello at position 53 (= 50 + 3)
152 # If on the other hand you want your string "Hello" to end three columns to the left of position 50,
153 # your call will look like this:
154 # position_cursor 50 "Hello" -3 (you'll get the string Hello at position 42 (= 50 - 5 -3)
155 # If you want to start printing at the exact starting location, use offset 0
156
157 START=$1
158 STRING=$2
159 OFFSET=$3
160
161 STRING_LENGTH=${#STRING}
162
163 if [ ${OFFSET} -lt 0 ]; then
164 COL=$((${START} + ${OFFSET} - ${STRING_LENGTH}))
165 else
166 COL=$((${START} + ${OFFSET}))
167 fi
168
169 SET_COL="\\033[${COL}G"
170
171 echo $SET_COL
172 } # End of position_cursor()
173
174
175 beautify()
176 {
177 # Commands: build_stage, make_pkg, message, result
178 case "$1" in
179 message)
180 case "$2" in
181 DONE)
182 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
183 ;;
184 WARN)
185 echo -ne "${WARN}${3}${NORMAL}${SET_RESULT_COL}[${WARN} WARN ${NORMAL}]\n"
186 ;;
187 FAIL)
188 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
189 ;;
190 SKIP)
191 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
192 ;;
193 esac
194 ;;
195 build_stage)
196 MESSAGE=$2
197 if [ "$STAGE_TIME_START" ]; then
198 LAST_STAGE_TIME=$[ `date +%s` - $STAGE_TIME_START ]
199 fi
200 STAGE_TIME_START=`date +%s`
201 echo -ne "${BOLD}*** ${MESSAGE}${NORMAL}"
202 if [ "$LAST_STAGE_TIME" ]; then
203 echo -ne "${DONE} (Last stage took $LAST_STAGE_TIME secs)${NORMAL}"
204 fi
205 echo -ne "${BOLD}${SET_VER_COL} version${SET_OPT_COL} options${SET_TIME_COL} time (sec)${SET_RESULT_COL} status${NORMAL}\n"
206 ;;
207 build_start)
208 BUILD_TIME_START=`date +%s`
209 ;;
210 build_end)
211 BUILD_TIME_END=`date +%s`
212 seconds=$[ $BUILD_TIME_END - $BUILD_TIME_START ]
213 hours=$((seconds / 3600))
214 seconds=$((seconds % 3600))
215 minutes=$((seconds / 60))
216 seconds=$((seconds % 60))
217
218 echo -ne "${DONE}***Build is finished now and took $hours hour(s) $minutes minute(s) $seconds second(s)!${NORMAL}\n"
219 ;;
220 make_pkg)
221 echo "$2" | while read PKG_VER PROGRAM OPTIONS
222 do
223 SET_VER_COL_REAL=`position_cursor $OPT_COL $PKG_VER -3`
224
225 if [ "$OPTIONS" == "" ]; then
226 echo -ne "${PROGRAM}${SET_VER_COL}[ ${BOLD}${SET_VER_COL_REAL}${PKG_VER}"
227 echo -ne "${NORMAL} ]${SET_RESULT_COL}"
228 else
229 echo -ne "${PROGRAM}${SET_VER_COL}[ ${BOLD}${SET_VER_COL_REAL}${PKG_VER}"
230 echo -ne "${NORMAL} ]${SET_OPT_COL}[ ${BOLD}${OPTIONS}"
231 echo -ne "${NORMAL} ]${SET_RESULT_COL}"
232 fi
233 done
234 ;;
235 result)
236 RESULT=$2
237
238 if [ ! $3 ]; then
239 PKG_TIME=0
240 else
241 PKG_TIME=$3
242 fi
243
244 SET_TIME_COL_REAL=`position_cursor $RESULT_COL $PKG_TIME -3`
245 case "$RESULT" in
246 DONE)
247 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
248 echo -ne "${SET_RESULT_COL}[${DONE} DONE ${NORMAL}]\n"
249 ;;
250 FAIL)
251 echo -ne "${SET_TIME_COL}[ ${BOLD}${SET_TIME_COL_REAL}$PKG_TIME${NORMAL} ]"
252 echo -ne "${SET_RESULT_COL}[${FAIL} FAIL ${NORMAL}]\n"
253 ;;
254 SKIP)
255 echo -ne "${SET_RESULT_COL}[${SKIP} SKIP ${NORMAL}]\n"
256 ;;
257 esac
258 ;;
259 esac
260 } # End of beautify()
261
262
263 get_pkg_ver()
264 {
265 PKG_VER=`grep -E "^VER |^VER=|^VER " $1 | awk '{print $3}'`
266
267 if [ -z $PKG_VER ]; then
268 PKG_VER=`grep "Exp " $1 | awk '{print $4}'`
269 fi
270 if [ -z $PKG_VER ]; then
271 PKG_VER="?"
272 fi
273 if [ ${#PKG_VER} -gt $VER_WIDTH ]; then
274 # If a package version number is greater than $VER_WIDTH, we keep the first 4 characters
275 # and replace enough characters to fit the resulting string on the screen. We'll replace
276 # the extra character with .. (two dots). That's why the "+ 2" in the formula below.
277 # Example: if we have a 21-long version number that we want to fit into a 10-long space,
278 # we have to remove 11 characters. But if we replace 11 characters with 2 characters, we'll
279 # end up with a 12-character long string. That's why we replace 12 characters with ..
280 REMOVE=`expr substr "$PKG_VER" 4 $[ ${#PKG_VER} - $VER_WIDTH + 2 ]`
281 PKG_VER=`echo ${PKG_VER/$REMOVE/..}`
282 fi
283
284 echo "$PKG_VER"
285 } # End of get_pkg_ver()
286
287 # Define immediately
288 stdumount() {
289 umount $BASEDIR/build/sys 2>/dev/null;
290 umount $BASEDIR/build/dev/shm 2>/dev/null;
291 umount $BASEDIR/build/dev/pts 2>/dev/null;
292 umount $BASEDIR/build/dev 2>/dev/null;
293 umount $BASEDIR/build/proc 2>/dev/null;
294 umount $BASEDIR/build/install/mnt 2>/dev/null;
295 umount $BASEDIR/build/usr/src/cache 2>/dev/null;
296 umount $BASEDIR/build/usr/src/ccache 2>/dev/null;
297 umount $BASEDIR/build/usr/src/config 2>/dev/null;
298 umount $BASEDIR/build/usr/src/doc 2>/dev/null;
299 umount $BASEDIR/build/usr/src/html 2>/dev/null;
300 umount $BASEDIR/build/usr/src/langs 2>/dev/null;
301 umount $BASEDIR/build/usr/src/lfs 2>/dev/null;
302 umount $BASEDIR/build/usr/src/log 2>/dev/null;
303 umount $BASEDIR/build/usr/src/src 2>/dev/null;
304 }
305
306 exiterror() {
307 stdumount
308 for i in `seq 0 7`; do
309 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
310 losetup -d /dev/loop${i} 2>/dev/null
311 fi;
312 done
313
314 if [ -n "${LOGFILE}" ]; then
315 echo # empty line
316
317 local line
318 while read -r line; do
319 echo " ${line}"
320 done <<< "$(tail -n30 ${LOGFILE})"
321 fi
322
323 echo -e "\nERROR: $*"
324 echo " Check $LOGFILE for errors if applicable"
325 exit 1
326 }
327
328 fake_environ() {
329 [ -e "${BASEDIR}/build/tools/lib/libpakfire_preload.so" ] || return
330
331 local env="LD_PRELOAD=/tools/lib/libpakfire_preload.so"
332
333 # Fake kernel version, because some of the packages do not compile
334 # with kernel 3.0 and later.
335 env="${env} UTS_RELEASE=${KVER}"
336
337 # Fake machine version.
338 env="${env} UTS_MACHINE=${TARGET_ARCH}"
339
340 echo "${env}"
341 }
342
343 qemu_environ() {
344 local env
345
346 # Don't add anything if qemu is not used.
347 if ! qemu_is_required; then
348 return
349 fi
350
351 # Set default qemu options
352 case "${TARGET_ARCH}" in
353 arm*)
354 QEMU_CPU="${QEMU_CPU:-cortex-a9}"
355
356 env="${env} QEMU_CPU=${QEMU_CPU}"
357 ;;
358 esac
359
360 # Enable QEMU strace
361 #env="${env} QEMU_STRACE=1"
362
363 echo "${env}"
364 }
365
366 qemu_is_required() {
367 local target_arch="${1}"
368
369 if [ -z "${target_arch}" ]; then
370 target_arch="${TARGET_ARCH}"
371 fi
372
373 case "${BUILD_ARCH},${target_arch}" in
374 x86_64,arm*|i?86,arm*|i?86,x86_64)
375 return 0
376 ;;
377 *)
378 return 1
379 ;;
380 esac
381 }
382
383 qemu_install_helper() {
384 # Do nothing, if qemu is not required
385 if ! qemu_is_required; then
386 return 0
387 fi
388
389 if [ ! -e /proc/sys/fs/binfmt_misc/status ]; then
390 exiterror "binfmt_misc not mounted. QEMU_TARGET_HELPER not useable."
391 fi
392
393 if [ ! $(cat /proc/sys/fs/binfmt_misc/status) = 'enabled' ]; then
394 exiterror "binfmt_misc not enabled. QEMU_TARGET_HELPER not useable."
395 fi
396
397
398 if [ -z "${QEMU_TARGET_HELPER}" ]; then
399 exiterror "QEMU_TARGET_HELPER not set"
400 fi
401
402 # Check if the helper is already installed.
403 if [ -x "${LFS}${QEMU_TARGET_HELPER}" ]; then
404 return 0
405 fi
406
407 # Try to find a suitable binary that we can install
408 # to the build environment.
409 local file
410 for file in "${QEMU_TARGET_HELPER}" "${QEMU_TARGET_HELPER}-static"; do
411 # file must exist and be executable.
412 [ -x "${file}" ] || continue
413
414 # Must be static.
415 file_is_static "${file}" || continue
416
417 local dirname="${LFS}$(dirname "${file}")"
418 mkdir -p "${dirname}"
419
420 install -m 755 "${file}" "${LFS}${QEMU_TARGET_HELPER}"
421 return 0
422 done
423
424 exiterror "Could not find a statically-linked QEMU emulator: ${QEMU_TARGET_HELPER}"
425 }
426
427 qemu_find_target_helper_name() {
428 local target_arch="${1}"
429
430 local magic
431 case "${target_arch}" in
432 arm*)
433 magic="7f454c4601010100000000000000000002002800"
434 ;;
435 x86_64)
436 magic="7f454c4602010100000000000000000002003e00"
437 ;;
438 esac
439
440 [ -z "${magic}" ] && return 1
441
442 local file
443 for file in /proc/sys/fs/binfmt_misc/*; do
444 # skip write only register entry
445 [ $(basename "${file}") = "register" ] && continue
446 # Search for the file with the correct magic value.
447 grep -qE "^magic ${magic}$" "${file}" || continue
448
449 local interpreter="$(grep "^interpreter" "${file}" | awk '{ print $2 }')"
450
451 [ -n "${interpreter}" ] || continue
452 [ "${interpreter:0:1}" = "/" ] || continue
453 [ -x "${interpreter}" ] || continue
454
455 echo "${interpreter}"
456 return 0
457 done
458
459 return 1
460 }
461
462 file_is_static() {
463 local file="${1}"
464
465 file ${file} 2>/dev/null | grep -q "statically linked"
466 }
467
468 entershell() {
469 if [ ! -e $BASEDIR/build/usr/src/lfs/ ]; then
470 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/"
471 fi
472
473 # Install QEMU helper, if needed
474 qemu_install_helper
475
476 echo "Entering to a shell inside LFS chroot, go out with exit"
477 chroot $LFS /tools/bin/env -i HOME=/root TERM=$TERM PS1='ipfire build chroot ($(uname -m)) \u:\w\$ ' \
478 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
479 VERSION=$VERSION CONFIG_ROOT=$CONFIG_ROOT \
480 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
481 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
482 CCACHE_DIR=/usr/src/ccache \
483 CCACHE_COMPRESS="${CCACHE_COMPRESS}" \
484 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
485 KVER=$KVER \
486 BUILDTARGET="$BUILDTARGET" \
487 CROSSTARGET="${CROSSTARGET}" \
488 MACHINE="$MACHINE" \
489 MACHINE_TYPE="$MACHINE_TYPE" \
490 $(fake_environ) \
491 $(qemu_environ) \
492 /tools/bin/bash -i
493 if [ $? -ne 0 ]; then
494 beautify message FAIL
495 exiterror "chroot error"
496 else
497 stdumount
498 fi
499 }
500
501 ############################################################################
502 # #
503 # Necessary shell functions #
504 # #
505 ############################################################################
506 #
507 # Common checking before entering the chroot and compilling
508 #
509 # Return:0 caller can continue
510 # :1 skip (nothing to do)
511 # or fail if no script file found
512 #
513 lfsmakecommoncheck()
514 {
515 # Script present?
516 if [ ! -f $BASEDIR/lfs/$1 ]; then
517 exiterror "No such file or directory: $BASEDIR/$1"
518 fi
519
520 local PKG_VER=`get_pkg_ver $BASEDIR/lfs/$1`
521 beautify make_pkg "$PKG_VER $*"
522
523 # Check if this package is supported by our architecture.
524 # If no SUP_ARCH is found, we assume the package can be built for all.
525 if grep "^SUP_ARCH" ${BASEDIR}/lfs/${1} >/dev/null; then
526 # Check if package supports ${MACHINE} or all architectures.
527 if ! grep -E "^SUP_ARCH.*${MACHINE}|^SUP_ARCH.*all" ${BASEDIR}/lfs/${1} >/dev/null; then
528 beautify result SKIP
529 return 1
530 fi
531 fi
532
533 # Script slipped?
534 local i
535 for i in $SKIP_PACKAGE_LIST
536 do
537 if [ "$i" == "$1" ]; then
538 beautify result SKIP
539 return 1;
540 fi
541 done
542
543 echo -ne "`date -u '+%b %e %T'`: Building $* " >> $LOGFILE
544
545 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MACHINE=$MACHINE \
546 MACHINE_TYPE="$MACHINE_TYPE" \
547 MESSAGE="$1\t " download >> $LOGFILE 2>&1
548 if [ $? -ne 0 ]; then
549 exiterror "Download error in $1"
550 fi
551
552 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MACHINE=$MACHINE \
553 MACHINE_TYPE="$MACHINE_TYPE" \
554 MESSAGE="$1\t md5sum" md5 >> $LOGFILE 2>&1
555 if [ $? -ne 0 ]; then
556 exiterror "md5sum error in $1, check file in cache or signature"
557 fi
558
559 return 0 # pass all!
560 } # End of lfsmakecommoncheck()
561
562 lfsmake1() {
563 lfsmakecommoncheck $*
564 [ $? == 1 ] && return 0
565
566 local PKG_TIME_START=`date +%s`
567
568 cd $BASEDIR/lfs && make -f $* BUILDTARGET=$BUILDTARGET \
569 CROSSTARGET="${CROSSTARGET}" \
570 MACHINE=$MACHINE \
571 MACHINE_TYPE=$MACHINE_TYPE \
572 LFS_BASEDIR=$BASEDIR \
573 ROOT=$LFS \
574 KVER=$KVER \
575 MAKETUNING=$MAKETUNING \
576 install >> $LOGFILE 2>&1
577 local COMPILE_SUCCESS=$?
578 local PKG_TIME_END=`date +%s`
579
580 if [ $COMPILE_SUCCESS -ne 0 ]; then
581 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
582 exiterror "Building $*";
583 else
584 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
585 fi
586
587 return 0
588 }
589
590 lfsmake2() {
591 lfsmakecommoncheck $*
592 [ $? == 1 ] && return 0
593
594 # Install QEMU helper, if needed
595 qemu_install_helper
596
597 local PKG_TIME_START=`date +%s`
598 chroot $LFS /tools/bin/env -i HOME=/root \
599 TERM=$TERM PS1='\u:\w\$ ' \
600 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
601 VERSION=$VERSION PAKFIRE_CORE="${PAKFIRE_CORE}" \
602 SYSTEM_RELEASE="${SYSTEM_RELEASE}" \
603 CONFIG_ROOT=$CONFIG_ROOT \
604 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
605 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
606 CCACHE_DIR=/usr/src/ccache \
607 CCACHE_COMPRESS="${CCACHE_COMPRESS}" \
608 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
609 KVER=$KVER MAKETUNING=$MAKETUNING \
610 BUILDTARGET="$BUILDTARGET" \
611 CROSSTARGET="${CROSSTARGET}" \
612 MACHINE="$MACHINE" \
613 MACHINE_TYPE="$MACHINE_TYPE" \
614 $(qemu_environ) \
615 $(fake_environ) \
616 /tools/bin/bash -x -c "cd /usr/src/lfs && \
617 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
618 local COMPILE_SUCCESS=$?
619 local PKG_TIME_END=`date +%s`
620
621 if [ $COMPILE_SUCCESS -ne 0 ]; then
622 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
623 exiterror "Building $*";
624 else
625 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
626 fi
627
628 return 0
629 }
630
631 ipfiremake() {
632 lfsmakecommoncheck $*
633 [ $? == 1 ] && return 0
634
635 # Install QEMU helper, if needed
636 qemu_install_helper
637
638 local PKG_TIME_START=`date +%s`
639 chroot $LFS /tools/bin/env -i HOME=/root \
640 TERM=$TERM PS1='\u:\w\$ ' \
641 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
642 VERSION=$VERSION \
643 CORE=$CORE \
644 CONFIG_ROOT=$CONFIG_ROOT \
645 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
646 SYSTEM_RELEASE="$SYSTEM_RELEASE" \
647 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
648 CCACHE_DIR=/usr/src/ccache \
649 CCACHE_COMPRESS="${CCACHE_COMPRESS}" \
650 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
651 KVER=$KVER MAKETUNING=$MAKETUNING \
652 BUILDTARGET="$BUILDTARGET" \
653 CROSSTARGET="${CROSSTARGET}" \
654 MACHINE="$MACHINE" \
655 MACHINE_TYPE="$MACHINE_TYPE" \
656 $(qemu_environ) \
657 $(fake_environ) \
658 /bin/bash -x -c "cd /usr/src/lfs && \
659 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
660
661 local COMPILE_SUCCESS=$?
662 local PKG_TIME_END=`date +%s`
663
664 if [ $COMPILE_SUCCESS -ne 0 ]; then
665 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
666 exiterror "Building $*";
667 else
668 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
669 fi
670 return 0
671 }
672
673 ipfiredist() {
674 lfsmakecommoncheck $*
675 [ $? == 1 ] && return 0
676
677 # Install QEMU helper, if needed
678 qemu_install_helper
679
680 local PKG_TIME_START=`date +%s`
681 chroot $LFS /tools/bin/env -i HOME=/root \
682 TERM=$TERM PS1='\u:\w\$ ' \
683 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
684 VERSION=$VERSION \
685 CONFIG_ROOT=$CONFIG_ROOT \
686 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
687 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
688 CCACHE_DIR=/usr/src/ccache \
689 CCACHE_COMPRESS="${CCACHE_COMPRESS}" \
690 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
691 KVER=$KVER \
692 BUILDTARGET="$BUILDTARGET" \
693 CROSSTARGET="${CROSSTARGET}" \
694 MACHINE="$MACHINE" \
695 MACHINE_TYPE="$MACHINE_TYPE" \
696 $(qemu_environ) \
697 $(fake_environ) \
698 /bin/bash -x -c "cd /usr/src/lfs && \
699 make -f $1 LFS_BASEDIR=/usr/src dist" >>$LOGFILE 2>&1
700
701 local COMPILE_SUCCESS=$?
702 local PKG_TIME_END=`date +%s`
703
704 if [ $COMPILE_SUCCESS -ne 0 ]; then
705 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
706 exiterror "Packaging $*";
707 else
708 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
709 fi
710 return 0
711 }
712
713 installmake() {
714 lfsmakecommoncheck $*
715 [ $? == 1 ] && return 0
716
717 # Install QEMU helper, if needed
718 qemu_install_helper
719
720 local PKG_TIME_START=`date +%s`
721 chroot $LFS /tools/bin/env -i HOME=/root \
722 TERM=$TERM PS1='\u:\w\$ ' \
723 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
724 VERSION=$VERSION \
725 SYSTEM_RELEASE="${SYSTEM_RELEASE}" \
726 CONFIG_ROOT=$CONFIG_ROOT \
727 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
728 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
729 CCACHE_DIR=/usr/src/ccache CCACHE_COMPRESS=1 CCACHE_HASHDIR=1 \
730 KVER=$KVER \
731 BUILDTARGET="$BUILDTARGET" \
732 CROSSTARGET="${CROSSTARGET}" \
733 MACHINE="$MACHINE" \
734 MACHINE_TYPE="$MACHINE_TYPE" \
735 LD_LIBRARY_PATH=/tools/lib \
736 /tools/bin/bash -x -c "cd /usr/src/lfs && \
737 /tools/bin/make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
738
739 local COMPILE_SUCCESS=$?
740 local PKG_TIME_END=`date +%s`
741
742 if [ $COMPILE_SUCCESS -ne 0 ]; then
743 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
744 exiterror "Building $*";
745 else
746 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
747 fi
748 return 0
749 }
750
751 update_langs() {
752 echo -ne "Checking the translations for missing or obsolete strings..."
753 chmod 755 $BASEDIR/tools/{check_strings.pl,sort_strings.pl,check_langs.sh}
754 $BASEDIR/tools/sort_strings.pl en
755 $BASEDIR/tools/sort_strings.pl de
756 $BASEDIR/tools/sort_strings.pl fr
757 $BASEDIR/tools/sort_strings.pl es
758 $BASEDIR/tools/sort_strings.pl pl
759 $BASEDIR/tools/sort_strings.pl ru
760 $BASEDIR/tools/sort_strings.pl nl
761 $BASEDIR/tools/sort_strings.pl tr
762 $BASEDIR/tools/sort_strings.pl it
763 $BASEDIR/tools/check_strings.pl en > $BASEDIR/doc/language_issues.en
764 $BASEDIR/tools/check_strings.pl de > $BASEDIR/doc/language_issues.de
765 $BASEDIR/tools/check_strings.pl fr > $BASEDIR/doc/language_issues.fr
766 $BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.es
767 $BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.pl
768 $BASEDIR/tools/check_strings.pl ru > $BASEDIR/doc/language_issues.ru
769 $BASEDIR/tools/check_strings.pl nl > $BASEDIR/doc/language_issues.nl
770 $BASEDIR/tools/check_strings.pl tr > $BASEDIR/doc/language_issues.tr
771 $BASEDIR/tools/check_strings.pl it > $BASEDIR/doc/language_issues.it
772 $BASEDIR/tools/check_langs.sh > $BASEDIR/doc/language_missings
773 beautify message DONE
774
775 echo -ne "Updating language lists..."
776 update_language_list ${BASEDIR}/src/installer/po
777 update_language_list ${BASEDIR}/src/setup/po
778 beautify message DONE
779 }
780
781 update_language_list() {
782 local path="${1}"
783
784 local lang
785 for lang in ${path}/*.po; do
786 lang="$(basename "${lang}")"
787 echo "${lang%*.po}"
788 done | sort -u > "${path}/LINGUAS"
789 }