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