]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - tools/make-functions
0180ded179540b5ae782032554979c93884432f8
[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
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 && \
569 PATH="/tools/ccache/bin:/tools/bin:$PATH" \
570 make -f $* TOOLCHAIN=1 BUILDTARGET=$BUILDTARGET \
571 CROSSTARGET="${CROSSTARGET}" \
572 MACHINE=$MACHINE \
573 MACHINE_TYPE=$MACHINE_TYPE \
574 LFS_BASEDIR=$BASEDIR \
575 ROOT=$LFS \
576 KVER=$KVER \
577 MAKETUNING=$MAKETUNING \
578 install >> $LOGFILE 2>&1
579 local COMPILE_SUCCESS=$?
580 local PKG_TIME_END=`date +%s`
581
582 if [ $COMPILE_SUCCESS -ne 0 ]; then
583 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
584 exiterror "Building $*";
585 else
586 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
587 fi
588
589 return 0
590 }
591
592 lfsmake2() {
593 lfsmakecommoncheck $*
594 [ $? == 1 ] && return 0
595
596 # Install QEMU helper, if needed
597 qemu_install_helper
598
599 local PKG_TIME_START=`date +%s`
600 chroot $LFS /tools/bin/env -i HOME=/root \
601 TERM=$TERM PS1='\u:\w\$ ' \
602 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin \
603 VERSION=$VERSION PAKFIRE_CORE="${PAKFIRE_CORE}" \
604 SYSTEM_RELEASE="${SYSTEM_RELEASE}" \
605 CONFIG_ROOT=$CONFIG_ROOT \
606 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
607 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
608 CCACHE_DIR=/usr/src/ccache \
609 CCACHE_COMPRESS="${CCACHE_COMPRESS}" \
610 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
611 KVER=$KVER MAKETUNING=$MAKETUNING \
612 BUILDTARGET="$BUILDTARGET" \
613 CROSSTARGET="${CROSSTARGET}" \
614 MACHINE="$MACHINE" \
615 MACHINE_TYPE="$MACHINE_TYPE" \
616 $(qemu_environ) \
617 $(fake_environ) \
618 /tools/bin/bash -x -c "cd /usr/src/lfs && \
619 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
620 local COMPILE_SUCCESS=$?
621 local PKG_TIME_END=`date +%s`
622
623 if [ $COMPILE_SUCCESS -ne 0 ]; then
624 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
625 exiterror "Building $*";
626 else
627 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
628 fi
629
630 return 0
631 }
632
633 ipfiremake() {
634 lfsmakecommoncheck $*
635 [ $? == 1 ] && return 0
636
637 # Install QEMU helper, if needed
638 qemu_install_helper
639
640 local PKG_TIME_START=`date +%s`
641 chroot $LFS /tools/bin/env -i HOME=/root \
642 TERM=$TERM PS1='\u:\w\$ ' \
643 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
644 VERSION=$VERSION \
645 CORE=$CORE \
646 CONFIG_ROOT=$CONFIG_ROOT \
647 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
648 SYSTEM_RELEASE="$SYSTEM_RELEASE" \
649 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
650 CCACHE_DIR=/usr/src/ccache \
651 CCACHE_COMPRESS="${CCACHE_COMPRESS}" \
652 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
653 KVER=$KVER MAKETUNING=$MAKETUNING \
654 BUILDTARGET="$BUILDTARGET" \
655 CROSSTARGET="${CROSSTARGET}" \
656 MACHINE="$MACHINE" \
657 MACHINE_TYPE="$MACHINE_TYPE" \
658 $(qemu_environ) \
659 $(fake_environ) \
660 /bin/bash -x -c "cd /usr/src/lfs && \
661 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
662
663 local COMPILE_SUCCESS=$?
664 local PKG_TIME_END=`date +%s`
665
666 if [ $COMPILE_SUCCESS -ne 0 ]; then
667 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
668 exiterror "Building $*";
669 else
670 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
671 fi
672 return 0
673 }
674
675 ipfiredist() {
676 lfsmakecommoncheck $*
677 [ $? == 1 ] && return 0
678
679 # Install QEMU helper, if needed
680 qemu_install_helper
681
682 local PKG_TIME_START=`date +%s`
683 chroot $LFS /tools/bin/env -i HOME=/root \
684 TERM=$TERM PS1='\u:\w\$ ' \
685 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
686 VERSION=$VERSION \
687 CONFIG_ROOT=$CONFIG_ROOT \
688 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
689 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
690 CCACHE_DIR=/usr/src/ccache \
691 CCACHE_COMPRESS="${CCACHE_COMPRESS}" \
692 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
693 KVER=$KVER \
694 BUILDTARGET="$BUILDTARGET" \
695 CROSSTARGET="${CROSSTARGET}" \
696 MACHINE="$MACHINE" \
697 MACHINE_TYPE="$MACHINE_TYPE" \
698 $(qemu_environ) \
699 $(fake_environ) \
700 /bin/bash -x -c "cd /usr/src/lfs && \
701 make -f $1 LFS_BASEDIR=/usr/src dist" >>$LOGFILE 2>&1
702
703 local COMPILE_SUCCESS=$?
704 local PKG_TIME_END=`date +%s`
705
706 if [ $COMPILE_SUCCESS -ne 0 ]; then
707 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
708 exiterror "Packaging $*";
709 else
710 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
711 fi
712 return 0
713 }
714
715 installmake() {
716 lfsmakecommoncheck $*
717 [ $? == 1 ] && return 0
718
719 # Install QEMU helper, if needed
720 qemu_install_helper
721
722 local PKG_TIME_START=`date +%s`
723 chroot $LFS /tools/bin/env -i HOME=/root \
724 TERM=$TERM PS1='\u:\w\$ ' \
725 PATH=/tools/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin \
726 VERSION=$VERSION \
727 SYSTEM_RELEASE="${SYSTEM_RELEASE}" \
728 CONFIG_ROOT=$CONFIG_ROOT \
729 NAME="$NAME" SNAME="$SNAME" SLOGAN="$SLOGAN" \
730 CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
731 CCACHE_DIR=/usr/src/ccache CCACHE_COMPRESS=1 CCACHE_HASHDIR=1 \
732 KVER=$KVER \
733 BUILDTARGET="$BUILDTARGET" \
734 CROSSTARGET="${CROSSTARGET}" \
735 MACHINE="$MACHINE" \
736 MACHINE_TYPE="$MACHINE_TYPE" \
737 LD_LIBRARY_PATH=/tools/lib \
738 /tools/bin/bash -x -c "cd /usr/src/lfs && \
739 /tools/bin/make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
740
741 local COMPILE_SUCCESS=$?
742 local PKG_TIME_END=`date +%s`
743
744 if [ $COMPILE_SUCCESS -ne 0 ]; then
745 beautify result FAIL $[ $PKG_TIME_END - $PKG_TIME_START ]
746 exiterror "Building $*";
747 else
748 beautify result DONE $[ $PKG_TIME_END - $PKG_TIME_START ]
749 fi
750 return 0
751 }
752
753 update_langs() {
754 echo -ne "Checking the translations for missing or obsolete strings..."
755 chmod 755 $BASEDIR/tools/{check_strings.pl,sort_strings.pl,check_langs.sh}
756 $BASEDIR/tools/sort_strings.pl en
757 $BASEDIR/tools/sort_strings.pl de
758 $BASEDIR/tools/sort_strings.pl fr
759 $BASEDIR/tools/sort_strings.pl es
760 $BASEDIR/tools/sort_strings.pl pl
761 $BASEDIR/tools/sort_strings.pl ru
762 $BASEDIR/tools/sort_strings.pl nl
763 $BASEDIR/tools/sort_strings.pl tr
764 $BASEDIR/tools/sort_strings.pl it
765 $BASEDIR/tools/check_strings.pl en > $BASEDIR/doc/language_issues.en
766 $BASEDIR/tools/check_strings.pl de > $BASEDIR/doc/language_issues.de
767 $BASEDIR/tools/check_strings.pl fr > $BASEDIR/doc/language_issues.fr
768 $BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.es
769 $BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.pl
770 $BASEDIR/tools/check_strings.pl ru > $BASEDIR/doc/language_issues.ru
771 $BASEDIR/tools/check_strings.pl nl > $BASEDIR/doc/language_issues.nl
772 $BASEDIR/tools/check_strings.pl tr > $BASEDIR/doc/language_issues.tr
773 $BASEDIR/tools/check_strings.pl it > $BASEDIR/doc/language_issues.it
774 $BASEDIR/tools/check_langs.sh > $BASEDIR/doc/language_missings
775 beautify message DONE
776
777 echo -ne "Updating language lists..."
778 update_language_list ${BASEDIR}/src/installer/po
779 update_language_list ${BASEDIR}/src/setup/po
780 beautify message DONE
781 }
782
783 update_language_list() {
784 local path="${1}"
785
786 local lang
787 for lang in ${path}/*.po; do
788 lang="$(basename "${lang}")"
789 echo "${lang%*.po}"
790 done | sort -u > "${path}/LINGUAS"
791 }