2 ###############################################################################
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
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. #
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. #
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/>. #
20 ###############################################################################
22 NAME
="IPFire" # Software name
23 SNAME
="ipfire" # Short name
24 # If you update the version don't forget to update backupiso and add it to core update
25 VERSION
="2.27" # Version number
26 CORE
="169" # Core Level (Filename)
27 SLOGAN
="www.ipfire.org" # Software slogan
28 CONFIG_ROOT
=/var
/ipfire
# Configuration rootdir
29 MAX_RETRIES
=1 # prefetch/check loop
30 BUILD_IMAGES
=1 # Flash and Xen Downloader
31 KVER
=`grep --max-count=1 VER lfs/linux | awk '{ print $3 }'`
33 # Information from Git
34 GIT_BRANCH
="$(git rev-parse --abbrev-ref HEAD)" # Git Branch
35 GIT_TAG
="$(git tag | tail -1)" # Git Tag
36 GIT_LASTCOMMIT
="$(git rev-parse --verify HEAD)" # Last commit
40 # use multicore and max compression
41 ZSTD_OPT
="-T0 --ultra -22"
43 ###############################################################################
45 # Beautifying variables & presentation & input output interface
47 ###############################################################################
49 # Remember if the shell is interactive or not
50 if [ -t 0 ] && [ -t 1 ]; then
56 # Sets or adjusts pretty formatting variables
59 # Find current screen size
62 # When using remote connections, such as a serial port, stty size returns 0
63 if ! ${INTERACTIVE} ||
[ "${COLUMNS}" = "0" ]; then
67 # Measurements for positioning result messages
71 NAME_WIDTH
=$
(( COLUMNS
- OPTIONS_WIDTH
- TIME_WIDTH
- STATUS_WIDTH
))
72 LINE_WIDTH
=$
(( COLUMNS
- STATUS_WIDTH
))
74 TIME_COL
=$
(( NAME_WIDTH
+ OPTIONS_WIDTH
))
75 STATUS_COL
=$
(( TIME_COL
+ TIME_WIDTH
))
78 # Initially setup terminal
81 # Call resize_terminal when terminal is being resized
82 trap "resize_terminal" WINCH
84 # Define color for messages
92 # New architecture variables
93 HOST_ARCH
="$(uname -m)"
96 BASENAME
=$
(basename $0)
98 # Debian specific settings
99 if [ ! -e /etc
/debian_version
]; then
102 if [ -x /usr
/bin
/realpath
]; then
103 FULLPATH
=`/usr/bin/realpath $0`
105 echo "ERROR: Need to do apt-get install realpath"
110 # This is the directory where make.sh is in
111 export BASEDIR
=$
(echo $FULLPATH |
sed "s/\/$BASENAME//g")
113 LOGFILE
=$BASEDIR/log
/_build.preparation.log
115 DIR_CHK
=$BASEDIR/cache
/check
116 mkdir
$BASEDIR/log
/ 2>/dev
/null
118 system_processors
() {
119 getconf _NPROCESSORS_ONLN
2>/dev
/null ||
echo "1"
125 while read -r key val unit
; do
129 echo "$(( ${val} / 1024 ))"
137 local build_arch
="${1}"
139 if [ "${build_arch}" = "default" ]; then
140 build_arch
="$(configure_build_guess)"
143 case "${build_arch}" in
145 BUILDTARGET
="${build_arch}-pc-linux-gnu"
146 CROSSTARGET
="${build_arch}-cross-linux-gnu"
148 CFLAGS_ARCH
="-m64 -mtune=generic -fstack-clash-protection -fcf-protection"
152 BUILDTARGET
="${build_arch}-pc-linux-gnu"
153 CROSSTARGET
="${build_arch}-cross-linux-gnu"
155 CFLAGS_ARCH
="-fstack-clash-protection"
159 BUILDTARGET
="${build_arch}-pc-linux-gnueabi"
160 CROSSTARGET
="${build_arch}-cross-linux-gnueabi"
162 CFLAGS_ARCH
="-march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard"
166 BUILDTARGET
="${build_arch}-pc-linux-gnueabi"
167 CROSSTARGET
="${build_arch}-cross-linux-gnueabi"
169 CFLAGS_ARCH
="-march=armv6zk+fp -mfpu=vfp -mfloat-abi=softfp -fomit-frame-pointer"
173 BUILDTARGET
="${build_arch}-pc-linux-gnu"
174 CROSSTARGET
="${build_arch}-cross-linux-gnu"
175 BUILD_PLATFORM
="riscv"
176 CFLAGS_ARCH
="-fstack-clash-protection"
180 exiterror
"Cannot build for architure ${build_arch}"
184 # Check if the QEMU helper is available if needed.
185 if qemu_is_required
"${build_arch}"; then
186 local qemu_build_helper
="$(qemu_find_build_helper_name "${build_arch}")"
188 if [ -n "${qemu_build_helper}" ]; then
189 QEMU_TARGET_HELPER
="${qemu_build_helper}"
191 exiterror
"Could not find a binfmt_misc helper entry for ${build_arch}"
195 BUILD_ARCH
="${build_arch}"
196 TOOLS_DIR
="/tools_${BUILD_ARCH}"
199 HARDENING_CFLAGS
="-Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong"
201 CFLAGS
="-O2 -pipe -Wall -fexceptions -fPIC ${CFLAGS_ARCH}"
204 RUSTFLAGS
="-Copt-level=3 -Clink-arg=-Wl,-z,relro,-z,now -Ccodegen-units=1 --cap-lints=warn ${RUSTFLAGS_ARCH}"
206 # Determine parallelism
207 # We assume that each process consumes about
208 # 128MB of memory. Therefore we find out how
209 # many processes fit into memory.
210 local mem_max
=$
(( ${SYSTEM_MEMORY} / 128 ))
211 local cpu_max
=$
(( ${SYSTEM_PROCESSORS} ))
214 if [ ${mem_max} -lt ${cpu_max} ]; then
215 parallelism
=${mem_max}
217 parallelism
=${cpu_max}
220 # Use this as default PARALLELISM
221 DEFAULT_PARALLELISM
="${parallelism}"
223 # Limit lauched ninja build jobs to computed parallel value.
224 NINJAJOBS
="${parallelism}"
226 # Compression parameters
227 # We use mode 8 for reasonable memory usage when decompressing
228 # but with overall good compression
231 # We try to use as many cores as possible
232 XZ_OPT
="${XZ_OPT} -T0"
234 # We need to limit memory because XZ uses too much when running
235 # in parallel and it isn't very smart in limiting itself.
236 # We allow XZ to use up to 70% of all system memory.
237 local xz_memory
=$
(( SYSTEM_MEMORY
* 7 / 10 ))
239 # XZ memory cannot be larger than 2GB on 32 bit systems
240 case "${build_arch}" in
242 if [ ${xz_memory} -gt 2048 ]; then
248 XZ_OPT
="${XZ_OPT} --memory=${xz_memory}MiB"
251 configure_build_guess
() {
252 case "${HOST_ARCH}" in
270 exiterror
"Cannot guess build architecture"
276 umount
$BASEDIR/build
/sys
2>/dev
/null
;
277 umount
$BASEDIR/build
/dev
/shm
2>/dev
/null
;
278 umount
$BASEDIR/build
/dev
/pts
2>/dev
/null
;
279 umount
$BASEDIR/build
/dev
2>/dev
/null
;
280 umount
$BASEDIR/build
/proc
2>/dev
/null
;
281 umount
$BASEDIR/build
/install
/mnt
2>/dev
/null
;
282 umount
$BASEDIR/build
/usr
/src
/cache
2>/dev
/null
;
283 umount
$BASEDIR/build
/usr
/src
/ccache
2>/dev
/null
;
284 umount
$BASEDIR/build
/usr
/src
/config
2>/dev
/null
;
285 umount
$BASEDIR/build
/usr
/src
/doc
2>/dev
/null
;
286 umount
$BASEDIR/build
/usr
/src
/html
2>/dev
/null
;
287 umount
$BASEDIR/build
/usr
/src
/langs
2>/dev
/null
;
288 umount
$BASEDIR/build
/usr
/src
/lfs
2>/dev
/null
;
289 umount
$BASEDIR/build
/usr
/src
/log
2>/dev
/null
;
290 umount
$BASEDIR/build
/usr
/src
/src
2>/dev
/null
;
291 umount
$BASEDIR/build
/usr
/src
2>/dev
/null
;
292 umount
$BASEDIR/build
/tmp
2>/dev
/null
;
298 if [ ${seconds} -ge 3600 ]; then
299 printf "%d:%02d:%02d\n" \
300 "$(( seconds / 3600 ))" \
301 "$(( seconds % 3600 / 60 ))" \
302 "$(( seconds % 3600 % 60 ))"
303 elif [ ${seconds} -ge 60 ]; then
305 "$(( seconds / 60 ))" \
306 "$(( seconds % 60 ))"
308 printf "%d\n" "${seconds}"
315 printf "%-${LINE_WIDTH}s" "${line}"
322 if ${INTERACTIVE}; then
328 if ${INTERACTIVE}; then
334 _print_line BOLD
"$@"
338 _print_line FAIL
"$@"
345 local version
="$(grep -E "^VER |^VER
=|^VER
" $BASEDIR/lfs/${name} | awk '{ print $3 }')"
348 local string
="${name}"
349 if [ -n "${version}" ] && [ "${version}" != "ipfire" ]; then
350 string
="${string} (${version})"
353 printf "%-$(( ${NAME_WIDTH} - 1 ))s " "${string}"
354 printf "%$(( ${OPTIONS_WIDTH} - 1 ))s " "${options}"
358 local runtime
=$
(format_runtime $@
)
360 if ${INTERACTIVE}; then
361 printf "\\033[${TIME_COL}G[ ${BOLD}%$(( ${TIME_WIDTH} - 4 ))s${NORMAL} ]" "${runtime}"
363 printf "[ %$(( ${TIME_WIDTH} - 4 ))s ]" "${runtime}"
370 local color
="${!status}"
372 if ${INTERACTIVE}; then
373 printf "\\033[${STATUS_COL}G[${color-${BOLD}} %-$(( ${STATUS_WIDTH} - 4 ))s ${NORMAL}]\n" "${status}"
375 printf "[ %-$(( ${STATUS_WIDTH} - 4 ))s ]\n" "${status}"
379 print_build_stage
() {
386 print_build_summary
() {
387 local runtime
=$
(format_runtime $@
)
389 print_line
"*** Build finished in ${runtime}"
395 for i
in `seq 0 7`; do
396 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
397 losetup
-d /dev
/loop
${i} 2>/dev
/null
402 if [ -n "${LOGFILE}" ] && [ -e "${LOGFILE}" ]; then
406 while read -r line
; do
408 done <<< "$(tail -n30 ${LOGFILE})"
414 for line
in "ERROR: $@" " Check ${LOGFILE} for errors if applicable"; do
415 print_error
"${line}"
423 # Are we running the right shell?
424 if [ -z "${BASH}" ]; then
425 exiterror
"BASH environment variable is not set. You're probably running the wrong shell."
428 if [ -z "${BASH_VERSION}" ]; then
429 exiterror
"Not running BASH shell."
432 # Trap on emergency exit
433 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGQUIT
435 # Checking if running as root user
436 if [ $
(id
-u) -ne 0 ]; then
437 exiterror
"root privileges required for building"
440 # Checking for necessary temporary space
441 print_line
"Checking for necessary space on disk $BASE_DEV"
442 BASE_DEV
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
443 BASE_ASPACE
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
444 if (( 2048000 > $BASE_ASPACE )); then
445 BASE_USPACE
=`du -skx $BASEDIR | awk '{print $1}'`
446 if (( 2048000 - $BASE_USPACE > $BASE_ASPACE )); then
448 exiterror
"Not enough temporary space available, need at least 2GB on $BASE_DEV"
463 export LFS LC_ALL CFLAGS CXXFLAGS DEFAULT_PARALLELISM RUSTFLAGS NINJAJOBS
464 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
466 # Make some extra directories
467 mkdir
-p "${BASEDIR}/build${TOOLS_DIR}" 2>/dev
/null
468 mkdir
-p $BASEDIR/build
/{etc
,usr
/src
} 2>/dev
/null
469 mkdir
-p $BASEDIR/build
/{dev
/{shm
,pts
},proc
,sys
}
470 mkdir
-p $BASEDIR/{cache
,ccache
/${BUILD_ARCH}/${TOOLCHAINVER}} 2>/dev
/null
472 if [ "${ENABLE_RAMDISK}" = "on" ]; then
473 mkdir
-p $BASEDIR/build
/usr
/src
474 mount
-t tmpfs tmpfs
-o size
=8G
,nr_inodes
=1M
,mode
=1777 $BASEDIR/build
/usr
/src
476 mkdir
-p ${BASEDIR}/build
/tmp
477 mount
-t tmpfs tmpfs
-o size
=4G
,nr_inodes
=1M
,mode
=1777 ${BASEDIR}/build
/tmp
480 mkdir
-p $BASEDIR/build
/usr
/src
/{cache
,config
,doc
,html
,langs
,lfs
,log
,src
,ccache
}
482 mknod
-m 600 $BASEDIR/build
/dev
/console c
5 1 2>/dev
/null
483 mknod
-m 666 $BASEDIR/build
/dev
/null c
1 3 2>/dev
/null
485 # Make all sources and proc available under lfs build
486 mount
--bind /dev
$BASEDIR/build
/dev
487 mount
--bind /dev
/pts
$BASEDIR/build
/dev
/pts
488 mount
--bind /dev
/shm
$BASEDIR/build
/dev
/shm
489 mount
--bind /proc
$BASEDIR/build
/proc
490 mount
--bind /sys
$BASEDIR/build
/sys
491 mount
--bind $BASEDIR/cache
$BASEDIR/build
/usr
/src
/cache
492 mount
--bind $BASEDIR/ccache
/${BUILD_ARCH}/${TOOLCHAINVER} $BASEDIR/build
/usr
/src
/ccache
493 mount
--bind $BASEDIR/config
$BASEDIR/build
/usr
/src
/config
494 mount
--bind $BASEDIR/doc
$BASEDIR/build
/usr
/src
/doc
495 mount
--bind $BASEDIR/html
$BASEDIR/build
/usr
/src
/html
496 mount
--bind $BASEDIR/langs
$BASEDIR/build
/usr
/src
/langs
497 mount
--bind $BASEDIR/lfs
$BASEDIR/build
/usr
/src
/lfs
498 mount
--bind $BASEDIR/log
$BASEDIR/build
/usr
/src
/log
499 mount
--bind $BASEDIR/src
$BASEDIR/build
/usr
/src
/src
501 # Run LFS static binary creation scripts one by one
502 export CCACHE_DIR
=$BASEDIR/ccache
503 export CCACHE_TEMPDIR
="/tmp"
504 export CCACHE_COMPILERCHECK
="string:toolchain-${TOOLCHAINVER} ${BUILD_ARCH}"
506 # Remove pre-install list of installed files in case user erase some files before rebuild
507 rm -f $BASEDIR/build
/usr
/src
/lsalr
2>/dev
/null
509 # Prepare string for /etc/system-release.
510 local system_release
="${NAME} ${VERSION} (${BUILD_ARCH})"
512 case "${GIT_BRANCH}" in
514 system_release
="${system_release} - ${GIT_BRANCH}"
517 system_release
="${system_release} - core${CORE} Development Build: ${GIT_BRANCH}/${GIT_LASTCOMMIT:0:8}"
521 # Append -dirty tag for local changes
522 if [ "$(git status -s | wc -l)" != "0" ]; then
523 system_release
="${system_release}-dirty"
527 SYSTEM_RELEASE
="${system_release}"
529 # Decide on PAKFIRE_TREE
530 case "${GIT_BRANCH}" in
532 PAKFIRE_TREE
="stable"
535 PAKFIRE_TREE
="testing"
538 PAKFIRE_TREE
="unstable"
542 # Setup ccache cache size
543 enterchroot ccache
--max-size="${CCACHE_CACHE_SIZE}"
547 # Install QEMU helper, if needed
550 local PATH
="${TOOLS_DIR}/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin:${TOOLS_DIR}/sbin:${TOOLS_DIR}/bin"
552 # Prepend any custom changes to PATH
553 if [ -n "${CUSTOM_PATH}" ]; then
554 PATH
="${CUSTOM_PATH}:${PATH}"
557 PATH
="${PATH}" chroot
${LFS} env
-i \
562 SYSTEM_RELEASE
="${SYSTEM_RELEASE}" \
563 PAKFIRE_TREE
="${PAKFIRE_TREE}" \
566 VERSION
="${VERSION}" \
569 TOOLS_DIR
="${TOOLS_DIR}" \
570 CONFIG_ROOT
="${CONFIG_ROOT}" \
571 CFLAGS
="${CFLAGS} ${HARDENING_CFLAGS}" \
572 CXXFLAGS
="${CXXFLAGS} ${HARDENING_CFLAGS}" \
573 RUSTFLAGS
="${RUSTFLAGS}" \
574 BUILDTARGET
="${BUILDTARGET}" \
575 CROSSTARGET
="${CROSSTARGET}" \
576 BUILD_ARCH
="${BUILD_ARCH}" \
577 BUILD_PLATFORM
="${BUILD_PLATFORM}" \
578 CCACHE_DIR
=/usr
/src
/ccache \
579 CCACHE_TEMPDIR
="${CCACHE_TEMPDIR}" \
580 CCACHE_COMPILERCHECK
="${CCACHE_COMPILERCHECK}" \
581 GOCACHE
="/usr/src/ccache/go" \
584 DEFAULT_PARALLELISM
="${DEFAULT_PARALLELISM}" \
585 SYSTEM_PROCESSORS
="${SYSTEM_PROCESSORS}" \
586 SYSTEM_MEMORY
="${SYSTEM_MEMORY}" \
593 if [ ! -e $BASEDIR/build
/usr
/src
/lfs
/ ]; then
594 exiterror
"No such file or directory: $BASEDIR/build/usr/src/lfs/"
597 echo "Entering to a shell inside LFS chroot, go out with exit"
598 local PS1
="ipfire build chroot (${BUILD_ARCH}) \u:\w\$ "
600 if enterchroot bash
-i; then
604 exiterror
"chroot error"
608 lfsmakecommoncheck
() {
610 if [ ! -f $BASEDIR/lfs
/$1 ]; then
611 exiterror
"No such file or directory: $BASEDIR/$1"
614 # Print package name and version
617 # Check if this package is supported by our architecture.
618 # If no SUP_ARCH is found, we assume the package can be built for all.
619 if grep "^SUP_ARCH" ${BASEDIR}/lfs
/${1} >/dev
/null
; then
620 # Check if package supports ${BUILD_ARCH} or all architectures.
621 if ! grep -E "^SUP_ARCH.*${BUILD_ARCH}|^SUP_ARCH.*all" ${BASEDIR}/lfs/${1} >/dev/null; then
630 for i in $SKIP_PACKAGE_LIST
632 if [ "$i" == "$1" ]; then
638 echo -ne "`date -u '+%b %e %T'`: Building $
* " >> $LOGFILE
640 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR BUILD_ARCH="${BUILD_ARCH}" \
641 MESSAGE="$1\t " download >> $LOGFILE 2>&1
642 if [ $? -ne 0 ]; then
643 exiterror "Download error
in $1"
646 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR BUILD_ARCH="${BUILD_ARCH}" \
647 MESSAGE="$1\t b2sum
" b2 >> $LOGFILE 2>&1
648 if [ $? -ne 0 ]; then
649 exiterror "BLAKE2 checksum error
in $1, check
file in cache or signature
"
656 lfsmakecommoncheck $*
657 [ $? == 1 ] && return 0
659 # Set PATH to use the toolchain tools first and then whatever the host has set
660 local PATH="${TOOLS_DIR}/ccache/bin:${TOOLS_DIR}/sbin:${TOOLS_DIR}/bin:${PATH}"
662 if [ -n "${CUSTOM_PATH}" ]; then
663 PATH="${CUSTOM_PATH}:${PATH}"
666 cd $BASEDIR/lfs && env -i \
668 CCACHE_DIR="${CCACHE_DIR}"/${BUILD_ARCH}/${TOOLCHAINVER} \
669 CCACHE_TEMPDIR
="${CCACHE_TEMPDIR}" \
670 CCACHE_COMPILERCHECK
="${CCACHE_COMPILERCHECK}" \
672 CXXFLAGS
="${CXXFLAGS}" \
673 DEFAULT_PARALLELISM
="${DEFAULT_PARALLELISM}" \
674 SYSTEM_PROCESSORS
="${SYSTEM_PROCESSORS}" \
675 SYSTEM_MEMORY
="${SYSTEM_MEMORY}" \
678 TOOLS_DIR
="${TOOLS_DIR}" \
679 CROSSTARGET
="${CROSSTARGET}" \
680 BUILDTARGET
="${BUILDTARGET}" \
681 BUILD_ARCH
="${BUILD_ARCH}" \
682 BUILD_PLATFORM
="${BUILD_PLATFORM}" \
683 LFS_BASEDIR
="${BASEDIR}" \
686 install >> $LOGFILE 2>&1 &
688 if ! wait_until_finished $
!; then
690 exiterror
"Building $*"
697 lfsmakecommoncheck $
*
698 [ $?
== 1 ] && return 0
703 bash
-x -c "cd /usr/src/lfs && \
705 LFS_BASEDIR=/usr/src install" \
708 if ! wait_until_finished $
!; then
710 exiterror
"Building $*"
717 lfsmakecommoncheck $
*
718 [ $?
== 1 ] && return 0
723 bash
-x -c "cd /usr/src/lfs && make -f $* LFS_BASEDIR=/usr/src dist" \
726 if ! wait_until_finished $
!; then
728 exiterror
"Packaging $*"
734 wait_until_finished
() {
737 local start_time
="${SECONDS}"
740 if ${INTERACTIVE}; then
741 # Wait a little just in case the process
742 # has finished very quickly.
746 while kill -0 ${pid} 2>/dev
/null
; do
747 print_runtime $
(( SECONDS
- start_time
))
754 # Returns the exit code of the child process
758 if ! ${INTERACTIVE}; then
759 print_runtime $
(( SECONDS
- start_time
))
766 [ -e "${BASEDIR}/build${TOOLS_DIR}/lib/libpakfire_preload.so" ] ||
return
768 local env
="LD_PRELOAD=${TOOLS_DIR}/lib/libpakfire_preload.so"
770 # Fake kernel version, because some of the packages do not compile
771 # with kernel 3.0 and later.
772 env
="${env} UTS_RELEASE=${KVER}-ipfire"
774 # Fake machine version.
775 env
="${env} UTS_MACHINE=${BUILD_ARCH}"
781 local env
="QEMU_TARGET_HELPER=${QEMU_TARGET_HELPER}"
783 # Don't add anything if qemu is not used.
784 if ! qemu_is_required
; then
788 # Set default qemu options
789 case "${BUILD_ARCH}" in
791 QEMU_CPU
="${QEMU_CPU:-cortex-a9}"
793 env
="${env} QEMU_CPU=${QEMU_CPU}"
796 QEMU_CPU
="${QEMU_CPU:-sifive-u54}"
798 env
="${env} QEMU_CPU=${QEMU_CPU}"
803 #env="${env} QEMU_STRACE=1"
809 local build_arch
="${1}"
811 if [ -z "${build_arch}" ]; then
812 build_arch
="${BUILD_ARCH}"
815 case "${HOST_ARCH},${build_arch}" in
816 x86_64
,arm
*|x86_64
,aarch64|x86_64
,riscv64|i?
86,arm
*|i?
86,aarch64|i?
86,x86_64
)
825 qemu_install_helper
() {
826 # Do nothing, if qemu is not required
827 if ! qemu_is_required
; then
831 if [ ! -e /proc
/sys
/fs
/binfmt_misc
/status
]; then
832 exiterror
"binfmt_misc not mounted. QEMU_TARGET_HELPER not useable."
835 if [ ! $
(cat /proc
/sys
/fs
/binfmt_misc
/status
) = 'enabled' ]; then
836 exiterror
"binfmt_misc not enabled. QEMU_TARGET_HELPER not useable."
840 if [ -z "${QEMU_TARGET_HELPER}" ]; then
841 exiterror
"QEMU_TARGET_HELPER not set"
844 # Check if the helper is already installed.
845 if [ -x "${LFS}${QEMU_TARGET_HELPER}" ]; then
849 # Try to find a suitable binary that we can install
850 # to the build environment.
852 for file in "${QEMU_TARGET_HELPER}" "${QEMU_TARGET_HELPER}-static"; do
853 # file must exist and be executable.
854 [ -x "${file}" ] ||
continue
857 file_is_static
"${file}" ||
continue
859 local dirname="${LFS}$(dirname "${file}")"
860 mkdir
-p "${dirname}"
862 install -m 755 "${file}" "${LFS}${QEMU_TARGET_HELPER}"
866 exiterror
"Could not find a statically-linked QEMU emulator: ${QEMU_TARGET_HELPER}"
869 qemu_find_build_helper_name
() {
870 local build_arch
="${1}"
873 case "${build_arch}" in
875 magic
="7f454c460201010000000000000000000200b700"
878 magic
="7f454c4601010100000000000000000002002800"
881 magic
="7f454c460201010000000000000000000200f300"
884 magic
="7f454c4602010100000000000000000002003e00"
888 [ -z "${magic}" ] && return 1
891 for file in /proc
/sys
/fs
/binfmt_misc
/*; do
892 # skip write only register entry
893 [ $
(basename "${file}") = "register" ] && continue
894 # Search for the file with the correct magic value.
895 grep -qE "^magic ${magic}$" "${file}" ||
continue
897 local interpreter
="$(grep "^interpreter
" "${file}" | awk '{ print $2 }')"
899 [ -n "${interpreter}" ] ||
continue
900 [ "${interpreter:0:1}" = "/" ] ||
continue
901 [ -x "${interpreter}" ] ||
continue
903 echo "${interpreter}"
913 file -L "${file}" 2>/dev
/null |
grep -q "statically linked"
916 update_language_list
() {
920 for lang
in ${path}/*.po
; do
921 lang
="$(basename "${lang}")"
923 done |
sort -u > "${path}/LINGUAS"
929 git shortlog
--summary --numbered |
while read -r commits name
; do
931 done |
grep -vE -e "^(alpha197|morlix|root|ummeegge)$" -e "via Development$" -e "@" -e "#$"
934 update_contributors
() {
935 echo -n "Updating list of contributors"
937 local contributors
="$(contributors | paste -sd , - | sed -e "s
/,/&\\\\n
/g
")"
939 # Edit contributors into credits.cgi
940 local tmp
="$(mktemp)"
942 awk "/<!-- CONTRIBUTORS -->/{ p=1; print; printf \"${contributors}\n\"}/<!-- END -->/{ p=0 } !p" \
943 < "${BASEDIR}/html/cgi-bin/credits.cgi" > "${tmp}"
945 # Copy back modified content
946 cat "${tmp}" > "${BASEDIR}/html/cgi-bin/credits.cgi"
954 CCACHE_CACHE_SIZE
="4G"
955 ENABLE_RAMDISK
="auto"
957 # Load configuration file
958 if [ -f .config
]; then
962 # TARGET_ARCH is BUILD_ARCH now
963 if [ -n "${TARGET_ARCH}" ]; then
964 BUILD_ARCH
="${TARGET_ARCH}"
968 # Get some information about the host system
969 SYSTEM_PROCESSORS
="$(system_processors)"
970 SYSTEM_MEMORY
="$(system_memory)"
972 if [ -n "${BUILD_ARCH}" ]; then
973 configure_build
"${BUILD_ARCH}"
975 configure_build
"default"
978 # Automatically enable/disable ramdisk usage
979 if [ "${ENABLE_RAMDISK}" = "auto" ]; then
980 # Enable only when the host system has 4GB of RAM or more
981 if [ ${SYSTEM_MEMORY} -ge 3900 ]; then
987 local gcc
=$
(type -p gcc
)
988 if [ -z "${gcc}" ]; then
989 exiterror
"Could not find GCC. You will need a working build enviroment in order to build the toolchain."
992 # Check ${TOOLS_DIR} symlink
993 if [ -h "${TOOLS_DIR}" ]; then
997 if [ ! -e "${TOOLS_DIR}" ]; then
998 ln -s "${BASEDIR}/build${TOOLS_DIR}" "${TOOLS_DIR}"
1001 if [ ! -h "${TOOLS_DIR}" ]; then
1002 exiterror
"Could not create ${TOOLS_DIR} symbolic link"
1005 LOGFILE
="$BASEDIR/log/_build.toolchain.log"
1009 lfsmake1 binutils PASS
=1
1011 lfsmake1 linux KCFG
="-headers"
1016 lfsmake1 binutils PASS
=2
1046 lfsmake1 fake-environ
1047 CUSTOM_PATH
="${PATH}" lfsmake1 strip
1048 lfsmake1 cleanup-toolchain
1052 LOGFILE
="$BASEDIR/log/_build.base.log"
1055 lfsmake2 linux KCFG
="-headers"
1059 lfsmake2 cleanup-toolchain
1107 lfsmake2 libpipeline
1124 LOGFILE
="$BASEDIR/log/_build.ipfire.log"
1127 lfsmake2 initscripts
1141 lfsmake2 linux-firmware
1142 lfsmake2 dvb-firmwares
1143 lfsmake2 xr819-firmware
1144 lfsmake2 zd1211-firmware
1145 lfsmake2 rpi-firmware
1146 lfsmake2 intel-microcode
1147 lfsmake2 pcengines-apu-firmware
1149 lfsmake2 u-boot MKIMAGE
=1
1155 lfsmake2 multipath-tools
1158 lfsmake2 libnfnetlink
1159 lfsmake2 libnetfilter_queue
1160 lfsmake2 libnetfilter_conntrack
1161 lfsmake2 libnetfilter_cthelper
1162 lfsmake2 libnetfilter_cttimeout
1168 # Kernelbuild ... current we have no platform that need
1169 # multi kernel builds so KCFG is empty
1170 lfsmake2 linux KCFG
=""
1171 lfsmake2 rtl8189es KCFG
=""
1172 lfsmake2 rtl8189fs KCFG
=""
1173 lfsmake2 rtl8812au KCFG
=""
1174 lfsmake2 rtl8822bu KCFG
=""
1175 lfsmake2 xradio KCFG
=""
1176 lfsmake2 linux-initrd KCFG
=""
1178 lfsmake2 libgpg-error
1205 lfsmake2 rust-dissimilar
1206 lfsmake2 rust-cfg-if
1208 lfsmake2 rust-getrandom
1209 lfsmake2 rust-typenum
1210 lfsmake2 rust-version-check
1211 lfsmake2 rust-generic-array
1212 lfsmake2 rust-cipher
1214 lfsmake2 rust-unicode-xid
1215 lfsmake2 rust-proc-macro2
1219 lfsmake2 rust-lazy-static
1220 lfsmake2 rust-memchr
1221 lfsmake2 rust-aho-corasick
1222 lfsmake2 rust-regex-syntax
1224 lfsmake2 rust-ucd-trie
1226 lfsmake2 rust-semver-parser
1227 lfsmake2 rust-semver
1228 lfsmake2 rust-same-file
1229 lfsmake2 rust-walkdir
1231 lfsmake2 rust-toolchain_find
1235 lfsmake2 rust-serde_json
1236 lfsmake2 rust-synstructure
1237 lfsmake2 rust-block-buffer
1238 lfsmake2 rust-crypto-common
1239 lfsmake2 rust-digest
1240 lfsmake2 rust-ppv-lite86
1241 lfsmake2 rust-rand_core
1242 lfsmake2 rust-rand_core-0.4
.2
1243 lfsmake2 rust-rand_core-0.3
.1
1244 lfsmake2 rust-rand_chacha
1245 lfsmake2 rust-rand_hc
1247 lfsmake2 rust-rdrand
1248 lfsmake2 rust-rand-0.4
1250 lfsmake2 rust-num_cpus
1251 lfsmake2 rust-crossbeam-utils
1252 lfsmake2 rust-autocfg
1253 lfsmake2 rust-memoffset
1254 lfsmake2 rust-scopeguard
1255 lfsmake2 rust-crossbeam-epoch
1256 lfsmake2 rust-crossbeam-deque
1257 lfsmake2 rust-either
1258 lfsmake2 rust-crossbeam-channel
1259 lfsmake2 rust-rayon-core
1261 lfsmake2 rust-remove_dir_all
1262 lfsmake2 rust-tempdir
1264 lfsmake2 rust-once_cell
1265 lfsmake2 rust-termcolor
1267 lfsmake2 rust-serde_derive
1268 lfsmake2 rust-trybuild
1269 lfsmake2 rust-unindent
1270 lfsmake2 rust-proc-macro-hack
1271 lfsmake2 rust-indoc-impl
1273 lfsmake2 rust-instant
1274 lfsmake2 rust-lock_api
1275 lfsmake2 rust-smallvec
1276 lfsmake2 rust-parking_lot_core
1277 lfsmake2 rust-parking_lot
1278 lfsmake2 rust-paste-impl
1282 lfsmake2 rust-inventory-impl
1283 lfsmake2 rust-inventory
1284 lfsmake2 rust-pyo3-build-config
1285 lfsmake2 rust-pyo3-macros-backend
1286 lfsmake2 rust-pyo3-macros
1294 lfsmake2 ca-certificates
1319 lfsmake2 perl-BerkeleyDB
1323 lfsmake2 web-user-interface
1334 lfsmake2 reiserfsprogs
1342 lfsmake2 perl-ExtUtils-PkgConfig
1344 lfsmake2 perl-GD-Graph
1345 lfsmake2 perl-GD-TextUtil
1346 lfsmake2 perl-Device-SerialPort
1347 lfsmake2 perl-Device-Modem
1348 lfsmake2 perl-Apache-Htpasswd
1349 lfsmake2 perl-Parse-Yapp
1350 lfsmake2 perl-Data-UUID
1351 lfsmake2 perl-Try-Tiny
1352 lfsmake2 perl-HTTP-Message
1353 lfsmake2 perl-HTTP-Date
1358 lfsmake2 conntrack-tools
1360 lfsmake2 l7-protocols
1368 lfsmake2 perl-Switch
1369 lfsmake2 perl-HTML-Tagset
1370 lfsmake2 perl-HTML-Parser
1371 lfsmake2 perl-HTML-Template
1372 lfsmake2 perl-Compress-Zlib
1373 lfsmake2 perl-Digest
1374 lfsmake2 perl-Digest-SHA1
1375 lfsmake2 perl-Digest-HMAC
1376 lfsmake2 perl-libwww
1377 lfsmake2 perl-LWP-Protocol-https
1378 lfsmake2 perl-Net-HTTP
1379 lfsmake2 perl-Net-DNS
1380 lfsmake2 perl-Net-IPv4Addr
1381 lfsmake2 perl-Net_SSLeay
1382 lfsmake2 perl-IO-Stringy
1383 lfsmake2 perl-IO-Socket-SSL
1384 lfsmake2 perl-Unix-Syslog
1385 lfsmake2 perl-Mail-Tools
1386 lfsmake2 perl-MIME-Tools
1387 lfsmake2 perl-Net-Server
1388 lfsmake2 perl-Canary-Stability
1389 lfsmake2 perl-Convert-TNEF
1390 lfsmake2 perl-Convert-UUlib
1391 lfsmake2 perl-Archive-Tar
1392 lfsmake2 perl-Archive-Zip
1393 lfsmake2 perl-Text-Tabs
+Wrap
1394 lfsmake2 perl-XML-Parser
1395 lfsmake2 perl-Crypt-PasswdMD5
1396 lfsmake2 perl-Net-Telnet
1398 lfsmake2 python3-setuptools
1399 lfsmake2 python3-inotify
1400 lfsmake2 python3-docutils
1401 lfsmake2 python3-daemon
1406 lfsmake2 dejavu-fonts-ttf
1407 lfsmake2 ubuntu-font-family
1423 lfsmake2 ids-ruleset-sources
1443 lfsmake2 ghostscript
1446 lfsmake2 poppler-data
1447 lfsmake2 cups-filters
1448 lfsmake2 epson-inkjet-printer-escpr
1453 lfsmake2 rpcsvc-proto
1459 lfsmake2 bridge-utils
1460 lfsmake2 smartmontools
1466 lfsmake2 perl-NetAddr-IP
1497 lfsmake2 pcmciautils
1499 lfsmake2 libstatgrab
1505 lfsmake2 python3-pyparsing
1506 lfsmake2 spice-protocol
1509 lfsmake2 libusbredir
1513 lfsmake2 nagios_nrpe
1514 lfsmake2 nagios-plugins
1516 lfsmake2 observium-agent
1522 lfsmake2 vdr_streamdev
1523 lfsmake2 vdr_epgsearch
1529 lfsmake2 libmpdclient
1531 lfsmake2 perl-Net-CIDR-Lite
1532 lfsmake2 perl-Net-SMTP-SSL
1533 lfsmake2 perl-MIME-Base64
1534 lfsmake2 perl-Authen-SASL
1535 lfsmake2 perl-MIME-Lite
1536 lfsmake2 perl-Email-Date-Format
1538 lfsmake2 squidclamav
1541 lfsmake2 wpa_supplicant
1545 lfsmake2 cpufrequtils
1556 lfsmake2 perl-gettext
1557 lfsmake2 perl-Sort-Naturally
1560 lfsmake2 perl-DBD-SQLite
1561 lfsmake2 perl-File-ReadBackwards
1562 lfsmake2 openvmtools
1567 lfsmake2 usb_modeswitch
1568 lfsmake2 usb_modeswitch_data
1577 lfsmake2 u-boot-friendlyarm
1578 lfsmake2 wireless-regdb
1580 lfsmake2 python3-pycparser
1581 lfsmake2 python3-charset-normalizer
1582 lfsmake2 python3-certifi
1583 lfsmake2 python3-idna
1584 lfsmake2 python3-requests
1585 lfsmake2 python3-toml
1586 lfsmake2 python3-pyproject2setuppy
1587 lfsmake2 python3-tomli
1588 lfsmake2 python3-pep517
1589 lfsmake2 python3-build
1590 lfsmake2 python3-install
1591 lfsmake2 python3-urllib3
1592 lfsmake2 python3-flit
1593 lfsmake2 python3-packaging
1594 lfsmake2 python3-typing-extensions
1595 lfsmake2 python3-semantic-version
1596 lfsmake2 python3-setuptools-scm
1597 lfsmake2 python3-setuptools-rust
1598 lfsmake2 python3-six
1599 lfsmake2 python3-dateutil
1600 lfsmake2 python3-jmespath
1601 lfsmake2 python3-colorama
1602 lfsmake2 python3-yaml
1603 lfsmake2 python3-s3transfer
1604 lfsmake2 python3-rsa
1605 lfsmake2 python3-pyasn1
1606 lfsmake2 python3-botocore
1607 lfsmake2 python3-cffi
1608 lfsmake2 python3-cryptography
1609 lfsmake2 python3-circuitbreaker
1610 lfsmake2 python3-pytz
1611 lfsmake2 python3-click
1612 lfsmake2 python3-arrow
1613 lfsmake2 python3-terminaltables
1614 lfsmake2 python3-pkgconfig
1616 lfsmake2 oci-python-sdk
1618 lfsmake2 transmission
1631 lfsmake2 ipfire-netboot
1635 lfsmake2 perl-Carp-Clan
1636 lfsmake2 perl-Date-Calc
1637 lfsmake2 perl-Date-Manip
1638 lfsmake2 perl-File-Tail
1639 lfsmake2 perl-TimeDate
1647 lfsmake2 perl-Font-TTF
1648 lfsmake2 perl-IO-String
1649 lfsmake2 perl-PDF-API2
1650 lfsmake2 proxy-accounting
1652 lfsmake2 perl-Text-CSV_XS
1662 lfsmake2 libpciaccess
1667 lfsmake2 perl-common-sense
1668 lfsmake2 perl-inotify2
1669 lfsmake2 perl-Net-IP
1672 lfsmake2 mdns-repeater
1674 lfsmake2 nss-myhostname
1676 lfsmake2 shairport-sync
1680 lfsmake2 spectre-meltdown-checker
1681 lfsmake2 zabbix_agentd
1683 lfsmake2 firmware-update
1685 lfsmake2 speedtest-cli
1686 lfsmake2 amazon-ssm-agent
1693 lfsmake2 squid-asnbl
1699 # Run installer scripts one by one
1700 LOGFILE
="$BASEDIR/log/_build.installer.log"
1704 # use toolchain bash for chroot to strip
1705 CUSTOM_PATH
="${TOOLS_DIR}/bin" lfsmake2 strip
1709 LOGFILE
="$BASEDIR/log/_build.packages.log"
1711 echo "... see detailed log in _build.*.log files" >> $LOGFILE
1714 # Generating list of packages used
1715 print_line
"Generating packages list from logs"
1716 rm -f $BASEDIR/doc
/packages-list
1717 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
1718 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
1719 echo "* `basename $i`" >>$BASEDIR/doc
/packages-list
1722 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc
/packages-list.txt
1723 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$\|install1$\|install2$\|pass1$\|pass2$\|pass3$' \
1724 $BASEDIR/doc
/packages-list |
sort >> $BASEDIR/doc
/packages-list.txt
1725 rm -f $BASEDIR/doc
/packages-list
1726 # packages-list.txt is ready to be displayed for wiki page
1731 [ -z $GIT_TAG ] || LAST_TAG
=$GIT_TAG
1732 [ -z $LAST_TAG ] || EXT
="$LAST_TAG..HEAD"
1733 git log
-n 500 --no-merges --pretty=medium
--shortstat $EXT > $BASEDIR/doc
/ChangeLog
1735 # Create images for install
1738 # Check if there is a loop device for building in virtual environments
1739 modprobe loop
2>/dev
/null
1740 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev
/loop
/0 ] ||
[ -e /dev
/loop0
] ||
[ -e "/dev/loop-control" ]); then
1741 lfsmake2 flash-images
1744 mv $LFS/install
/images
/{*.iso
,*.img.xz
,*.bz2
} $BASEDIR >> $LOGFILE 2>&1
1750 # remove not useable iso on armv6l (needed to build flash images)
1751 [ "${BUILD_ARCH}" = "armv6l" ] && rm -rf *.iso
1753 for i
in $
(ls *.bz2
*.img.xz
*.iso
2>/dev
/null
); do
1760 rm -rf $BASEDIR/build
/tmp
/*
1766 lfsmake2 core-updates
1769 for i
in $
(find $BASEDIR/config
/rootfiles
/packages
{/${BUILD_ARCH},} -maxdepth 1 -type f
); do
1771 if [ -e $BASEDIR/lfs
/$i ]; then
1778 test -d $BASEDIR/packages || mkdir
$BASEDIR/packages
1779 mv -f $LFS/install
/packages
/* $BASEDIR/packages
>> $LOGFILE 2>&1
1780 rm -rf $BASEDIR/build
/install
/packages
/*
1783 while [ $# -gt 0 ]; do
1786 configure_build
"${1#--target=}"
1789 exiterror
"Unknown configuration option: ${1}"
1792 # Found a command, so exit options parsing.
1799 # See what we're supposed to do
1802 START_TIME
="${SECONDS}"
1804 PACKAGE
="$BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.tar.zst"
1805 #only restore on a clean disk
1806 if [ ! -e "${BASEDIR}/build${TOOLS_DIR}/.toolchain-successful" ]; then
1807 if [ ! -n "$PACKAGE" ]; then
1808 print_build_stage
"Full toolchain compilation"
1812 PACKAGENAME
=${PACKAGE%.tar.zst}
1813 print_build_stage
"Packaged toolchain compilation"
1814 if [ `b2sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.b2 | awk '{print $1}'` ]; then
1815 zstd
-d < "${PACKAGE}" |
tar x
1818 exiterror
"$PACKAGENAME BLAKE2 checksum did not match, check downloaded package"
1825 print_build_stage
"Building LFS"
1828 print_build_stage
"Building IPFire"
1831 print_build_stage
"Building installer"
1834 print_build_stage
"Building packages"
1837 print_build_stage
"Checking Logfiles for new Files"
1840 tools
/checknewlog.pl
1841 tools
/checkrootfiles
1844 print_build_summary $
(( SECONDS
- START_TIME
))
1847 # enter a shell inside LFS chroot
1848 # may be used to changed kernel settings
1853 print_line
"Cleaning build directory..."
1855 for i
in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
1856 $LOSETUP -d $i 2>/dev
/null
1858 #for i in `mount | grep $BASEDIR | cut -d " " -f 1`; do
1862 for i
in `seq 0 7`; do
1863 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
1864 umount
/dev
/loop
${i} 2>/dev
/null
;
1865 losetup
-d /dev
/loop
${i} 2>/dev
/null
;
1868 rm -rf $BASEDIR/build
1869 rm -rf $BASEDIR/cdrom
1870 rm -rf $BASEDIR/packages
1872 if [ -h "${TOOLS_DIR}" ]; then
1873 rm -f "${TOOLS_DIR}"
1875 rm -f $BASEDIR/ipfire-
*
1879 # Build the docker image if it does not exist, yet
1880 if ! docker images
-a |
grep -q ^ipfire-builder
; then
1881 if docker build
-t ipfire-builder
${BASEDIR}/tools
/docker
; then
1889 # Run the container and enter a shell
1890 docker run
-it --privileged -v "${BASEDIR}:/build" -w "/build" ipfire-builder bash
-l
1893 if [ ! -d $BASEDIR/cache
]; then
1894 mkdir
$BASEDIR/cache
1896 mkdir
-p $BASEDIR/log
1897 echo -e "${BOLD}Preload all source files${NORMAL}" |
tee -a $LOGFILE
1900 for c
in `seq $MAX_RETRIES`; do
1901 if (( FINISHED
==1 )); then
1907 if [ -f "$i" -a "$i" != "Config" ]; then
1908 lfsmakecommoncheck
${i} ||
continue
1910 make -s -f $i LFS_BASEDIR
=$BASEDIR BUILD_ARCH
="${BUILD_ARCH}" \
1911 MESSAGE
="$i\t ($c/$MAX_RETRIES)" download
>> $LOGFILE 2>&1
1912 if [ $?
-ne 0 ]; then
1916 if [ $c -eq 1 ]; then
1923 echo -e "${BOLD}***Verifying BLAKE2 checksum${NORMAL}"
1926 if [ -f "$i" -a "$i" != "Config" ]; then
1927 lfsmakecommoncheck
${i} > /dev
/null ||
continue
1928 make -s -f $i LFS_BASEDIR
=$BASEDIR BUILD_ARCH
="${BUILD_ARCH}" \
1929 MESSAGE
="$i\t " b2
>> $LOGFILE 2>&1
1930 if [ $?
-ne 0 ]; then
1931 echo -ne "BLAKE2 checksum difference in lfs/$i"
1937 if [ $ERROR -eq 0 ]; then
1938 echo -ne "${BOLD}all files BLAKE2 checksum match${NORMAL}"
1941 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
1944 cd - >/dev
/null
2>&1
1948 print_build_stage
"Toolchain compilation (${BUILD_ARCH})"
1950 echo "`date -u '+%b %e %T'`: Create toolchain image for ${BUILD_ARCH}" |
tee -a $LOGFILE
1951 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
1952 cd $BASEDIR && tar -cf- --exclude='log/_build.*.log' build
/${TOOLS_DIR} build
/bin
/sh log \
1953 | zstd
${ZSTD_OPT} > cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.
tar.zst
1954 b2sum cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.
tar.zst \
1955 > cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.b2
1959 # arbitrary name to be updated in case of new toolchain package upload
1960 PACKAGE
=$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}
1961 if [ ! -f $BASEDIR/cache
/toolchains
/$PACKAGE.
tar.zst
]; then
1962 URL_TOOLCHAIN
=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
1963 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
1964 echo "`date -u '+%b %e %T'`: Load toolchain image for ${BUILD_ARCH}" |
tee -a $LOGFILE
1965 cd $BASEDIR/cache
/toolchains
1966 wget
-U "IPFireSourceGrabber/2.x" $URL_TOOLCHAIN/$PACKAGE.
tar.zst
$URL_TOOLCHAIN/$PACKAGE.b2
>& /dev
/null
1967 if [ $?
-ne 0 ]; then
1968 echo "`date -u '+%b %e %T'`: error downloading $PACKAGE toolchain for ${BUILD_ARCH} machine" |
tee -a $LOGFILE
1970 if [ "`b2sum $PACKAGE.tar.zst | awk '{print $1}'`" = "`cat $PACKAGE.b2 | awk '{print $1}'`" ]; then
1971 echo "`date -u '+%b %e %T'`: toolchain BLAKE2 checksum ok" |
tee -a $LOGFILE
1973 exiterror
"$PACKAGE BLAKE2 checksum did not match, check downloaded package"
1977 echo "Toolchain is already downloaded. Exiting..."
1981 if [ -z $IPFIRE_USER ]; then
1982 echo -n "You have to setup IPFIRE_USER first. See .config for details."
1987 URL_SOURCE
="$(awk '/^URL_SOURCE/ { print $3 }' lfs/Config)"
1995 --exclude="toolchains/" \
1996 "${BASEDIR}/cache/" \
1997 "${IPFIRE_USER}@${URL_SOURCE}"
2002 echo -ne "Checking the translations for missing or obsolete strings..."
2003 chmod 755 $BASEDIR/tools
/{check_strings.pl
,sort_strings.pl
,check_langs.sh
}
2004 $BASEDIR/tools
/sort_strings.pl en
2005 $BASEDIR/tools
/sort_strings.pl de
2006 $BASEDIR/tools
/sort_strings.pl fr
2007 $BASEDIR/tools
/sort_strings.pl es
2008 $BASEDIR/tools
/sort_strings.pl pl
2009 $BASEDIR/tools
/sort_strings.pl ru
2010 $BASEDIR/tools
/sort_strings.pl
nl
2011 $BASEDIR/tools
/sort_strings.pl
tr
2012 $BASEDIR/tools
/sort_strings.pl it
2013 $BASEDIR/tools
/check_strings.pl en
> $BASEDIR/doc
/language_issues.en
2014 $BASEDIR/tools
/check_strings.pl de
> $BASEDIR/doc
/language_issues.de
2015 $BASEDIR/tools
/check_strings.pl fr
> $BASEDIR/doc
/language_issues.fr
2016 $BASEDIR/tools
/check_strings.pl es
> $BASEDIR/doc
/language_issues.es
2017 $BASEDIR/tools
/check_strings.pl pl
> $BASEDIR/doc
/language_issues.pl
2018 $BASEDIR/tools
/check_strings.pl ru
> $BASEDIR/doc
/language_issues.ru
2019 $BASEDIR/tools
/check_strings.pl
nl > $BASEDIR/doc
/language_issues.
nl
2020 $BASEDIR/tools
/check_strings.pl
tr > $BASEDIR/doc
/language_issues.
tr
2021 $BASEDIR/tools
/check_strings.pl it
> $BASEDIR/doc
/language_issues.it
2022 $BASEDIR/tools
/check_langs.sh
> $BASEDIR/doc
/language_missings
2025 echo -ne "Updating language lists..."
2026 update_language_list
${BASEDIR}/src
/installer
/po
2027 update_language_list
${BASEDIR}/src
/setup
/po
2030 update-contributors
)
2035 exec "${BASEDIR}/tools/find-dependencies" "${BASEDIR}/build" "$@"
2038 echo "Checking the manual pages for broken links..."
2040 chmod 755 $BASEDIR/tools
/check_manualpages.pl
2041 if $BASEDIR/tools
/check_manualpages.pl
; then
2048 echo "Usage: $0 [OPTIONS] {build|check-manualpages|clean|docker|downloadsrc|find-dependencies|gettoolchain|lang|shell|toolchain|update-contributors|uploadsrc}"
2049 cat doc
/make.sh-usage