]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - tools/make-functions
Update translation
[people/pmueller/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 echo -e "\nERROR: $*"
314 echo " Check $LOGFILE for errors if applicable"
315 exit 1
316 }
317
318 fake_environ() {
319 [ -e "${BASEDIR}/build/tools/lib/libpakfire_preload.so" ] || return
320
321 local env="LD_PRELOAD=/tools/lib/libpakfire_preload.so"
322
323 # Fake kernel version, because some of the packages do not compile
324 # with kernel 3.0 and later.
325 env="${env} UTS_RELEASE=${KVER}"
326
327 # Fake machine version.
328 env="${env} UTS_MACHINE=${TARGET_ARCH}"
329
330 echo "${env}"
331 }
332
333 qemu_environ() {
334 local env
335
336 # Don't add anything if qemu is not used.
337 if ! qemu_is_required; then
338 return
339 fi
340
341 # Set default qemu options
342 case "${TARGET_ARCH}" in
343 arm*)
344 QEMU_CPU="${QEMU_CPU:-cortex-a9}"
345
346 env="${env} QEMU_CPU=${QEMU_CPU}"
347 ;;
348 esac
349
350 # Enable QEMU strace
351 #env="${env} QEMU_STRACE=1"
352
353 echo "${env}"
354 }
355
356 qemu_is_required() {
357 local target_arch="${1}"
358
359 if [ -z "${target_arch}" ]; then
360 target_arch="${TARGET_ARCH}"
361 fi
362
363 case "${BUILD_ARCH},${target_arch}" in
364 x86_64,arm*|i?86,arm*|i?86,x86_64)
365 return 0
366 ;;
367 *)
368 return 1
369 ;;
370 esac
371 }
372
373 qemu_install_helper() {
374 # Do nothing, if qemu is not required
375 if ! qemu_is_required; then
376 return 0
377 fi
378
379 if [ ! -e /proc/sys/fs/binfmt_misc/status ]; then
380 exiterror "binfmt_misc not mounted. QEMU_TARGET_HELPER not useable."
381 fi
382
383 if [ ! $(cat /proc/sys/fs/binfmt_misc/status) = 'enabled' ]; then
384 exiterror "binfmt_misc not enabled. QEMU_TARGET_HELPER not useable."
385 fi
386
387
388 if [ -z "${QEMU_TARGET_HELPER}" ]; then
389 exiterror "QEMU_TARGET_HELPER not set"
390 fi
391
392 # Check if the helper is already installed.
393 if [ -x "${LFS}${QEMU_TARGET_HELPER}" ]; then
394 return 0
395 fi
396
397 # Try to find a suitable binary that we can install
398 # to the build environment.
399 local file
400 for file in "${QEMU_TARGET_HELPER}" "${QEMU_TARGET_HELPER}-static"; do
401 # file must exist and be executable.
402 [ -x "${file}" ] || continue
403
404 # Must be static.
405 file_is_static "${file}" || continue
406
407 local dirname="${LFS}$(dirname "${file}")"
408 mkdir -p "${dirname}"
409
410 install -m 755 "${file}" "${LFS}${QEMU_TARGET_HELPER}"
411 return 0
412 done
413
414 exiterror "Could not find a statically-linked QEMU emulator: ${QEMU_TARGET_HELPER}"
415 }
416
417 qemu_find_target_helper_name() {
418 local target_arch="${1}"
419
420 local magic
421 case "${target_arch}" in
422 arm*)
423 magic="7f454c4601010100000000000000000002002800"
424 ;;
425 x86_64)
426 magic="7f454c4602010100000000000000000002003e00"
427 ;;
428 esac
429
430 [ -z "${magic}" ] && return 1
431
432 local file
433 for file in /proc/sys/fs/binfmt_misc/*; do
434 # skip write only register entry
435 [ $(basename "${file}") = "register" ] && continue
436 # Search for the file with the correct magic value.
437 grep -qE "^magic ${magic}$" "${file}" || continue
438
439 local interpreter="$(grep "^interpreter" "${file}" | awk '{ print $2 }')"
440
441 [ -n "${interpreter}" ] || continue
442 [ "${interpreter:0:1}" = "/" ] || continue
443 [ -x "${interpreter}" ] || continue
444
445 echo "${interpreter}"
446 return 0
447 done
448
449 return 1
450 }
451
452 file_is_static() {
453 local file="${1}"
454
455 file ${file} 2>/dev/null | grep -q "statically linked"
456 }
457
458 entershell() {
459 if [ ! -e $BASEDIR/build/usr/src/lfs/ ]; then
460 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/"
461 fi
462
463 # Install QEMU helper, if needed
464 qemu_install_helper
465
466 echo "Entering to a shell inside LFS chroot, go out with exit"
467 chroot $LFS /tools/bin/env -i HOME=/root TERM=$TERM PS1='ipfire build chroot ($(uname -m)) \u:\w\$ ' \
468 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
469 VERSION=$VERSION CONFIG_ROOT=$CONFIG_ROOT \
470 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
471 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
472 CCACHE_DIR=/usr/src/ccache \
473 CCACHE_COMPRESS="${CCACHE_COMPRESS}" \
474 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
475 KVER=$KVER \
476 BUILDTARGET="$BUILDTARGET" \
477 CROSSTARGET="${CROSSTARGET}" \
478 MACHINE="$MACHINE" \
479 MACHINE_TYPE="$MACHINE_TYPE" \
480 $(fake_environ) \
481 $(qemu_environ) \
482 /tools/bin/bash -i
483 if [ $? -ne 0 ]; then
484 beautify message FAIL
485 exiterror "chroot error"
486 else
487 stdumount
488 fi
489 }
490
491 ############################################################################
492 # #
493 # Necessary shell functions #
494 # #
495 ############################################################################
496 #
497 # Common checking before entering the chroot and compilling
498 #
499 # Return:0 caller can continue
500 # :1 skip (nothing to do)
501 # or fail if no script file found
502 #
503 lfsmakecommoncheck()
504 {
505 # Script present?
506 if [ ! -f $BASEDIR/lfs/$1 ]; then
507 exiterror "No such file or directory: $BASEDIR/$1"
508 fi
509
510 local PKG_VER=`get_pkg_ver $BASEDIR/lfs/$1`
511 beautify make_pkg "$PKG_VER $*"
512
513 # Check if this package is supported by our architecture.
514 # If no SUP_ARCH is found, we assume the package can be built for all.
515 if grep "^SUP_ARCH" ${BASEDIR}/lfs/${1} >/dev/null; then
516 # Check if package supports ${MACHINE} or all architectures.
517 if ! grep -E "^SUP_ARCH.*${MACHINE}|^SUP_ARCH.*all" ${BASEDIR}/lfs/${1} >/dev/null; then
518 beautify result SKIP
519 return 1
520 fi
521 fi
522
523 # Script slipped?
524 local i
525 for i in $SKIP_PACKAGE_LIST
526 do
527 if [ "$i" == "$1" ]; then
528 beautify result SKIP
529 return 1;
530 fi
531 done
532
533 echo -ne "`date -u '+%b %e %T'`: Building $* " >> $LOGFILE
534
535 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MACHINE=$MACHINE \
536 MACHINE_TYPE="$MACHINE_TYPE" \
537 MESSAGE="$1\t " download >> $LOGFILE 2>&1
538 if [ $? -ne 0 ]; then
539 exiterror "Download error in $1"
540 fi
541
542 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR MACHINE=$MACHINE \
543 MACHINE_TYPE="$MACHINE_TYPE" \
544 MESSAGE="$1\t md5sum" md5 >> $LOGFILE 2>&1
545 if [ $? -ne 0 ]; then
546 exiterror "md5sum error in $1, check file in cache or signature"
547 fi
548
549 return 0 # pass all!
550 } # End of lfsmakecommoncheck()
551
552 lfsmake1() {
553 lfsmakecommoncheck $*
554 [ $? == 1 ] && return 0
555
556 local PKG_TIME_START=`date +%s`
557
558 cd $BASEDIR/lfs && make -f $* BUILDTARGET=$BUILDTARGET \
559 CROSSTARGET="${CROSSTARGET}" \
560 MACHINE=$MACHINE \
561 MACHINE_TYPE=$MACHINE_TYPE \
562 LFS_BASEDIR=$BASEDIR \
563 ROOT=$LFS \
564 KVER=$KVER \
565 MAKETUNING=$MAKETUNING \
566 install >> $LOGFILE 2>&1
567 local COMPILE_SUCCESS=$?
568 local PKG_TIME_END=`date +%s`
569
570 if [ $COMPILE_SUCCESS -ne 0 ]; then
571 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
572 exiterror "Building $*";
573 else
574 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
575 fi
576
577 return 0
578 }
579
580 lfsmake2() {
581 lfsmakecommoncheck $*
582 [ $? == 1 ] && return 0
583
584 # Install QEMU helper, if needed
585 qemu_install_helper
586
587 local PKG_TIME_START=`date +%s`
588 chroot $LFS /tools/bin/env -i HOME=/root \
589 TERM=$TERM PS1='\u:\w\$ ' \
590 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
591 VERSION=$VERSION PAKFIRE_CORE="${PAKFIRE_CORE}" \
592 SYSTEM_RELEASE="${SYSTEM_RELEASE}" \
593 CONFIG_ROOT=$CONFIG_ROOT \
594 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
595 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
596 CCACHE_DIR=/usr/src/ccache \
597 CCACHE_COMPRESS="${CCACHE_COMPRESS}" \
598 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
599 KVER=$KVER MAKETUNING=$MAKETUNING \
600 BUILDTARGET="$BUILDTARGET" \
601 CROSSTARGET="${CROSSTARGET}" \
602 MACHINE="$MACHINE" \
603 MACHINE_TYPE="$MACHINE_TYPE" \
604 $(qemu_environ) \
605 $(fake_environ) \
606 /tools/bin/bash -x -c "cd /usr/src/lfs && \
607 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
608 local COMPILE_SUCCESS=$?
609 local PKG_TIME_END=`date +%s`
610
611 if [ $COMPILE_SUCCESS -ne 0 ]; then
612 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
613 exiterror "Building $*";
614 else
615 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
616 fi
617
618 return 0
619 }
620
621 ipfiremake() {
622 lfsmakecommoncheck $*
623 [ $? == 1 ] && return 0
624
625 # Install QEMU helper, if needed
626 qemu_install_helper
627
628 local PKG_TIME_START=`date +%s`
629 chroot $LFS /tools/bin/env -i HOME=/root \
630 TERM=$TERM PS1='\u:\w\$ ' \
631 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
632 VERSION=$VERSION \
633 CORE=$CORE \
634 CONFIG_ROOT=$CONFIG_ROOT \
635 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
636 SYSTEM_RELEASE="$SYSTEM_RELEASE" \
637 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
638 CCACHE_DIR=/usr/src/ccache \
639 CCACHE_COMPRESS="${CCACHE_COMPRESS}" \
640 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
641 KVER=$KVER MAKETUNING=$MAKETUNING \
642 BUILDTARGET="$BUILDTARGET" \
643 CROSSTARGET="${CROSSTARGET}" \
644 MACHINE="$MACHINE" \
645 MACHINE_TYPE="$MACHINE_TYPE" \
646 $(qemu_environ) \
647 $(fake_environ) \
648 /bin/bash -x -c "cd /usr/src/lfs && \
649 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
650
651 local COMPILE_SUCCESS=$?
652 local PKG_TIME_END=`date +%s`
653
654 if [ $COMPILE_SUCCESS -ne 0 ]; then
655 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
656 exiterror "Building $*";
657 else
658 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
659 fi
660 return 0
661 }
662
663 ipfiredist() {
664 lfsmakecommoncheck $*
665 [ $? == 1 ] && return 0
666
667 # Install QEMU helper, if needed
668 qemu_install_helper
669
670 local PKG_TIME_START=`date +%s`
671 chroot $LFS /tools/bin/env -i HOME=/root \
672 TERM=$TERM PS1='\u:\w\$ ' \
673 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
674 VERSION=$VERSION \
675 CONFIG_ROOT=$CONFIG_ROOT \
676 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
677 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
678 CCACHE_DIR=/usr/src/ccache \
679 CCACHE_COMPRESS="${CCACHE_COMPRESS}" \
680 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
681 KVER=$KVER \
682 BUILDTARGET="$BUILDTARGET" \
683 CROSSTARGET="${CROSSTARGET}" \
684 MACHINE="$MACHINE" \
685 MACHINE_TYPE="$MACHINE_TYPE" \
686 $(qemu_environ) \
687 $(fake_environ) \
688 /bin/bash -x -c "cd /usr/src/lfs && \
689 make -f $1 LFS_BASEDIR=/usr/src dist" >>$LOGFILE 2>&1
690
691 local COMPILE_SUCCESS=$?
692 local PKG_TIME_END=`date +%s`
693
694 if [ $COMPILE_SUCCESS -ne 0 ]; then
695 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
696 exiterror "Packaging $*";
697 else
698 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
699 fi
700 return 0
701 }
702
703 installmake() {
704 lfsmakecommoncheck $*
705 [ $? == 1 ] && return 0
706
707 # Install QEMU helper, if needed
708 qemu_install_helper
709
710 local PKG_TIME_START=`date +%s`
711 chroot $LFS /tools/bin/env -i HOME=/root \
712 TERM=$TERM PS1='\u:\w\$ ' \
713 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
714 VERSION=$VERSION \
715 SYSTEM_RELEASE="${SYSTEM_RELEASE}" \
716 CONFIG_ROOT=$CONFIG_ROOT \
717 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
718 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
719 CCACHE_DIR=/usr/src/ccache CCACHE_COMPRESS=1 CCACHE_HASHDIR=1 \
720 KVER=$KVER \
721 BUILDTARGET="$BUILDTARGET" \
722 CROSSTARGET="${CROSSTARGET}" \
723 MACHINE="$MACHINE" \
724 MACHINE_TYPE="$MACHINE_TYPE" \
725 LD_LIBRARY_PATH=/tools/lib \
726 /tools/bin/bash -x -c "cd /usr/src/lfs && \
727 /tools/bin/make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
728
729 local COMPILE_SUCCESS=$?
730 local PKG_TIME_END=`date +%s`
731
732 if [ $COMPILE_SUCCESS -ne 0 ]; then
733 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
734 exiterror "Building $*";
735 else
736 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
737 fi
738 return 0
739 }
740
741 update_langs() {
742 echo -ne "Checking the translations for missing or obsolete strings..."
743 chmod 755 $BASEDIR/tools/{check_strings.pl,sort_strings.pl,check_langs.sh}
744 $BASEDIR/tools/sort_strings.pl en
745 $BASEDIR/tools/sort_strings.pl de
746 $BASEDIR/tools/sort_strings.pl fr
747 $BASEDIR/tools/sort_strings.pl es
748 $BASEDIR/tools/sort_strings.pl pl
749 $BASEDIR/tools/sort_strings.pl ru
750 $BASEDIR/tools/sort_strings.pl nl
751 $BASEDIR/tools/sort_strings.pl tr
752 $BASEDIR/tools/sort_strings.pl it
753 $BASEDIR/tools/check_strings.pl en > $BASEDIR/doc/language_issues.en
754 $BASEDIR/tools/check_strings.pl de > $BASEDIR/doc/language_issues.de
755 $BASEDIR/tools/check_strings.pl fr > $BASEDIR/doc/language_issues.fr
756 $BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.es
757 $BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.pl
758 $BASEDIR/tools/check_strings.pl ru > $BASEDIR/doc/language_issues.ru
759 $BASEDIR/tools/check_strings.pl nl > $BASEDIR/doc/language_issues.nl
760 $BASEDIR/tools/check_strings.pl tr > $BASEDIR/doc/language_issues.tr
761 $BASEDIR/tools/check_strings.pl it > $BASEDIR/doc/language_issues.it
762 $BASEDIR/tools/check_langs.sh > $BASEDIR/doc/language_missings
763 beautify message DONE
764
765 echo -ne "Updating language lists..."
766 update_language_list ${BASEDIR}/src/installer/po
767 update_language_list ${BASEDIR}/src/setup/po
768 beautify message DONE
769 }
770
771 update_language_list() {
772 local path="${1}"
773
774 local lang
775 for lang in ${path}/*.po; do
776 lang="$(basename "${lang}")"
777 echo "${lang%*.po}"
778 done | sort -u > "${path}/LINGUAS"
779 }