]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame_incremental - make.sh
rust-generic-array: New package.
[people/pmueller/ipfire-2.x.git] / make.sh
... / ...
CommitLineData
1#!/bin/bash
2############################################################################
3# #
4# This file is part of the IPFire Firewall. #
5# #
6# IPFire is free software; you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation; either version 2 of the License, or #
9# (at your option) any later version. #
10# #
11# IPFire is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with IPFire; if not, write to the Free Software #
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19# #
20# Copyright (C) 2007-2021 IPFire Team <info@ipfire.org>. #
21# #
22############################################################################
23#
24
25NAME="IPFire" # Software name
26SNAME="ipfire" # Short name
27# If you update the version don't forget to update backupiso and add it to core update
28VERSION="2.27" # Version number
29CORE="164" # Core Level (Filename)
30SLOGAN="www.ipfire.org" # Software slogan
31CONFIG_ROOT=/var/ipfire # Configuration rootdir
32MAX_RETRIES=1 # prefetch/check loop
33BUILD_IMAGES=1 # Flash and Xen Downloader
34KVER=`grep --max-count=1 VER lfs/linux | awk '{ print $3 }'`
35
36# Information from Git
37GIT_BRANCH="$(git rev-parse --abbrev-ref HEAD)" # Git Branch
38GIT_TAG="$(git tag | tail -1)" # Git Tag
39GIT_LASTCOMMIT="$(git rev-parse --verify HEAD)" # Last commit
40
41TOOLCHAINVER=20210701
42
43# use multicore and max compression
44ZSTD_OPT="-T0 --ultra -22"
45
46###############################################################################
47#
48# Beautifying variables & presentation & input output interface
49#
50###############################################################################
51
52# Remember if the shell is interactive or not
53if [ -t 0 ] && [ -t 1 ]; then
54 INTERACTIVE=true
55else
56 INTERACTIVE=false
57fi
58
59# Sets or adjusts pretty formatting variables
60resize_terminal() {
61 ## Screen Dimentions
62 # Find current screen size
63 COLUMNS=$(tput cols)
64
65 # When using remote connections, such as a serial port, stty size returns 0
66 if ! ${INTERACTIVE} || [ "${COLUMNS}" = "0" ]; then
67 COLUMNS=80
68 fi
69
70 # Measurements for positioning result messages
71 OPTIONS_WIDTH=20
72 TIME_WIDTH=12
73 STATUS_WIDTH=8
74 NAME_WIDTH=$(( COLUMNS - OPTIONS_WIDTH - TIME_WIDTH - STATUS_WIDTH ))
75 LINE_WIDTH=$(( COLUMNS - STATUS_WIDTH ))
76
77 TIME_COL=$(( NAME_WIDTH + OPTIONS_WIDTH ))
78 STATUS_COL=$(( TIME_COL + TIME_WIDTH ))
79}
80
81# Initially setup terminal
82resize_terminal
83
84# Call resize_terminal when terminal is being resized
85trap "resize_terminal" WINCH
86
87# Define color for messages
88BOLD="\\033[1;39m"
89DONE="\\033[1;32m"
90SKIP="\\033[1;34m"
91WARN="\\033[1;35m"
92FAIL="\\033[1;31m"
93NORMAL="\\033[0;39m"
94
95# New architecture variables
96HOST_ARCH="$(uname -m)"
97
98PWD=$(pwd)
99BASENAME=$(basename $0)
100
101# Debian specific settings
102if [ ! -e /etc/debian_version ]; then
103 FULLPATH=`which $0`
104else
105 if [ -x /usr/bin/realpath ]; then
106 FULLPATH=`/usr/bin/realpath $0`
107 else
108 echo "ERROR: Need to do apt-get install realpath"
109 exit 1
110 fi
111fi
112
113# This is the directory where make.sh is in
114export BASEDIR=$(echo $FULLPATH | sed "s/\/$BASENAME//g")
115
116LOGFILE=$BASEDIR/log/_build.preparation.log
117export LOGFILE
118DIR_CHK=$BASEDIR/cache/check
119mkdir $BASEDIR/log/ 2>/dev/null
120
121system_processors() {
122 getconf _NPROCESSORS_ONLN 2>/dev/null || echo "1"
123}
124
125system_memory() {
126 local key val unit
127
128 while read -r key val unit; do
129 case "${key}" in
130 MemTotal:*)
131 # Convert to MB
132 echo "$(( ${val} / 1024 ))"
133 break
134 ;;
135 esac
136 done < /proc/meminfo
137}
138
139configure_build() {
140 local build_arch="${1}"
141
142 if [ "${build_arch}" = "default" ]; then
143 build_arch="$(configure_build_guess)"
144 fi
145
146 case "${build_arch}" in
147 x86_64)
148 BUILDTARGET="${build_arch}-unknown-linux-gnu"
149 CROSSTARGET="${build_arch}-cross-linux-gnu"
150 BUILD_PLATFORM="x86"
151 CFLAGS_ARCH="-m64 -mtune=generic -fstack-clash-protection -fcf-protection"
152 ;;
153
154 aarch64)
155 BUILDTARGET="${build_arch}-unknown-linux-gnu"
156 CROSSTARGET="${build_arch}-cross-linux-gnu"
157 BUILD_PLATFORM="arm"
158 CFLAGS_ARCH="-fstack-clash-protection"
159 ;;
160
161 armv7hl)
162 BUILDTARGET="${build_arch}-unknown-linux-gnueabi"
163 CROSSTARGET="${build_arch}-cross-linux-gnueabi"
164 BUILD_PLATFORM="arm"
165 CFLAGS_ARCH="-march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard"
166 ;;
167
168 armv6l)
169 BUILDTARGET="${build_arch}-unknown-linux-gnueabi"
170 CROSSTARGET="${build_arch}-cross-linux-gnueabi"
171 BUILD_PLATFORM="arm"
172 CFLAGS_ARCH="-march=armv6zk+fp -mfpu=vfp -mfloat-abi=softfp -fomit-frame-pointer"
173 ;;
174
175 riscv64)
176 BUILDTARGET="${build_arch}-unknown-linux-gnu"
177 CROSSTARGET="${build_arch}-cross-linux-gnu"
178 BUILD_PLATFORM="riscv"
179 CFLAGS_ARCH="-fstack-clash-protection"
180 ;;
181
182 *)
183 exiterror "Cannot build for architure ${build_arch}"
184 ;;
185 esac
186
187 # Check if the QEMU helper is available if needed.
188 if qemu_is_required "${build_arch}"; then
189 local qemu_build_helper="$(qemu_find_build_helper_name "${build_arch}")"
190
191 if [ -n "${qemu_build_helper}" ]; then
192 QEMU_TARGET_HELPER="${qemu_build_helper}"
193 else
194 exiterror "Could not find a binfmt_misc helper entry for ${build_arch}"
195 fi
196 fi
197
198 BUILD_ARCH="${build_arch}"
199 TOOLS_DIR="/tools_${BUILD_ARCH}"
200
201 # Enables hardening
202 HARDENING_CFLAGS="-Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong"
203
204 CFLAGS="-O2 -pipe -Wall -fexceptions -fPIC ${CFLAGS_ARCH}"
205 CXXFLAGS="${CFLAGS}"
206
207 RUSTFLAGS="-Copt-level=3 -Clink-arg=-Wl,-z,relro,-z,now -Ccodegen-units=1 --cap-lints=warn ${RUSTFLAGS_ARCH}"
208
209 # Determine parallelism
210 # We assume that each process consumes about
211 # 128MB of memory. Therefore we find out how
212 # many processes fit into memory.
213 local mem_max=$(( ${SYSTEM_MEMORY} / 128 ))
214 local cpu_max=$(( ${SYSTEM_PROCESSORS} ))
215
216 local parallelism
217 if [ ${mem_max} -lt ${cpu_max} ]; then
218 parallelism=${mem_max}
219 else
220 parallelism=${cpu_max}
221 fi
222
223 # Use this as default PARALLELISM
224 DEFAULT_PARALLELISM="${parallelism}"
225
226 # Limit lauched ninja build jobs to computed parallel value.
227 NINJAJOBS="${parallelism}"
228
229 # Compression parameters
230 # We use mode 8 for reasonable memory usage when decompressing
231 # but with overall good compression
232 XZ_OPT="-8"
233
234 # We try to use as many cores as possible
235 XZ_OPT="${XZ_OPT} -T0"
236
237 # We need to limit memory because XZ uses too much when running
238 # in parallel and it isn't very smart in limiting itself.
239 # We allow XZ to use up to 70% of all system memory.
240 local xz_memory=$(( SYSTEM_MEMORY * 7 / 10 ))
241
242 # XZ memory cannot be larger than 2GB on 32 bit systems
243 case "${build_arch}" in
244 armv*)
245 if [ ${xz_memory} -gt 2048 ]; then
246 xz_memory=2048
247 fi
248 ;;
249 esac
250
251 XZ_OPT="${XZ_OPT} --memory=${xz_memory}MiB"
252}
253
254configure_build_guess() {
255 case "${HOST_ARCH}" in
256 x86_64)
257 echo "x86_64"
258 ;;
259
260 aarch64)
261 echo "aarch64"
262 ;;
263
264 armv7*|armv6*)
265 echo "armv6l"
266 ;;
267
268 riscv64)
269 echo "riscv64"
270 ;;
271
272 *)
273 exiterror "Cannot guess build architecture"
274 ;;
275 esac
276}
277
278stdumount() {
279 umount $BASEDIR/build/sys 2>/dev/null;
280 umount $BASEDIR/build/dev/shm 2>/dev/null;
281 umount $BASEDIR/build/dev/pts 2>/dev/null;
282 umount $BASEDIR/build/dev 2>/dev/null;
283 umount $BASEDIR/build/proc 2>/dev/null;
284 umount $BASEDIR/build/install/mnt 2>/dev/null;
285 umount $BASEDIR/build/usr/src/cache 2>/dev/null;
286 umount $BASEDIR/build/usr/src/ccache 2>/dev/null;
287 umount $BASEDIR/build/usr/src/config 2>/dev/null;
288 umount $BASEDIR/build/usr/src/doc 2>/dev/null;
289 umount $BASEDIR/build/usr/src/html 2>/dev/null;
290 umount $BASEDIR/build/usr/src/langs 2>/dev/null;
291 umount $BASEDIR/build/usr/src/lfs 2>/dev/null;
292 umount $BASEDIR/build/usr/src/log 2>/dev/null;
293 umount $BASEDIR/build/usr/src/src 2>/dev/null;
294 umount $BASEDIR/build/usr/src 2>/dev/null;
295 umount $BASEDIR/build/tmp 2>/dev/null;
296}
297
298now() {
299 date -u "+%s"
300}
301
302format_runtime() {
303 local seconds=${1}
304
305 if [ ${seconds} -ge 3600 ]; then
306 printf "%d:%02d:%02d\n" \
307 "$(( seconds / 3600 ))" \
308 "$(( seconds % 3600 / 60 ))" \
309 "$(( seconds % 3600 % 60 ))"
310 elif [ ${seconds} -ge 60 ]; then
311 printf "%d:%02d\n" \
312 "$(( seconds / 60 ))" \
313 "$(( seconds % 60 ))"
314 else
315 printf "%d\n" "${seconds}"
316 fi
317}
318
319print_line() {
320 local line="$@"
321
322 printf "%-${LINE_WIDTH}s" "${line}"
323}
324
325_print_line() {
326 local status="${1}"
327 shift
328
329 if ${INTERACTIVE}; then
330 printf "${!status}"
331 fi
332
333 print_line "$@"
334
335 if ${INTERACTIVE}; then
336 printf "${NORMAL}"
337 fi
338}
339
340print_headline() {
341 _print_line BOLD "$@"
342}
343
344print_error() {
345 _print_line FAIL "$@"
346}
347
348print_package() {
349 local name="${1}"
350 shift
351
352 local version="$(grep -E "^VER |^VER=|^VER " $BASEDIR/lfs/${name} | awk '{ print $3 }')"
353 local options="$@"
354
355 local string="${name}"
356 if [ -n "${version}" ] && [ "${version}" != "ipfire" ]; then
357 string="${string} (${version})"
358 fi
359
360 printf "%-$(( ${NAME_WIDTH} - 1 ))s " "${string}"
361 printf "%$(( ${OPTIONS_WIDTH} - 1 ))s " "${options}"
362}
363
364print_runtime() {
365 local runtime=$(format_runtime $@)
366
367 if ${INTERACTIVE}; then
368 printf "\\033[${TIME_COL}G[ ${BOLD}%$(( ${TIME_WIDTH} - 4 ))s${NORMAL} ]" "${runtime}"
369 else
370 printf "[ %$(( ${TIME_WIDTH} - 4 ))s ]" "${runtime}"
371 fi
372}
373
374print_status() {
375 local status="${1}"
376
377 local color="${!status}"
378
379 if ${INTERACTIVE}; then
380 printf "\\033[${STATUS_COL}G[${color-${BOLD}} %-$(( ${STATUS_WIDTH} - 4 ))s ${NORMAL}]\n" "${status}"
381 else
382 printf "[ %-$(( ${STATUS_WIDTH} - 4 ))s ]\n" "${status}"
383 fi
384}
385
386print_build_stage() {
387 print_headline "$@"
388
389 # end line
390 printf "\n"
391}
392
393print_build_summary() {
394 local runtime=$(format_runtime $@)
395
396 print_line "*** Build finished in ${runtime}"
397 print_status DONE
398}
399
400exiterror() {
401 stdumount
402 for i in `seq 0 7`; do
403 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
404 losetup -d /dev/loop${i} 2>/dev/null
405 fi;
406 done
407
408 # Dump logfile
409 if [ -n "${LOGFILE}" ] && [ -e "${LOGFILE}" ]; then
410 echo # empty line
411
412 local line
413 while read -r line; do
414 echo " ${line}"
415 done <<< "$(tail -n30 ${LOGFILE})"
416 fi
417
418 echo # empty line
419
420 local line
421 for line in "ERROR: $@" " Check ${LOGFILE} for errors if applicable"; do
422 print_error "${line}"
423 print_status FAIL
424 done
425
426 exit 1
427}
428
429prepareenv() {
430 # Are we running the right shell?
431 if [ -z "${BASH}" ]; then
432 exiterror "BASH environment variable is not set. You're probably running the wrong shell."
433 fi
434
435 if [ -z "${BASH_VERSION}" ]; then
436 exiterror "Not running BASH shell."
437 fi
438
439 # Trap on emergency exit
440 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP SIGQUIT
441
442 # Checking if running as root user
443 if [ $(id -u) -ne 0 ]; then
444 exiterror "root privileges required for building"
445 fi
446
447 # Checking for necessary temporary space
448 print_line "Checking for necessary space on disk $BASE_DEV"
449 BASE_DEV=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
450 BASE_ASPACE=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
451 if (( 2048000 > $BASE_ASPACE )); then
452 BASE_USPACE=`du -skx $BASEDIR | awk '{print $1}'`
453 if (( 2048000 - $BASE_USPACE > $BASE_ASPACE )); then
454 print_status FAIL
455 exiterror "Not enough temporary space available, need at least 2GB on $BASE_DEV"
456 fi
457 else
458 print_status DONE
459 fi
460
461 # Set umask
462 umask 022
463
464 # Set LFS Directory
465 LFS=$BASEDIR/build
466
467 # Setup environment
468 set +h
469 LC_ALL=POSIX
470 export LFS LC_ALL CFLAGS CXXFLAGS DEFAULT_PARALLELISM RUSTFLAGS NINJAJOBS
471 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
472
473 # Make some extra directories
474 mkdir -p "${BASEDIR}/build${TOOLS_DIR}" 2>/dev/null
475 mkdir -p $BASEDIR/build/{etc,usr/src} 2>/dev/null
476 mkdir -p $BASEDIR/build/{dev/{shm,pts},proc,sys}
477 mkdir -p $BASEDIR/{cache,ccache/${BUILD_ARCH}/${TOOLCHAINVER}} 2>/dev/null
478
479 if [ "${ENABLE_RAMDISK}" = "on" ]; then
480 mkdir -p $BASEDIR/build/usr/src
481 mount -t tmpfs tmpfs -o size=8G,nr_inodes=1M,mode=1777 $BASEDIR/build/usr/src
482
483 mkdir -p ${BASEDIR}/build/tmp
484 mount -t tmpfs tmpfs -o size=4G,nr_inodes=1M,mode=1777 ${BASEDIR}/build/tmp
485 fi
486
487 mkdir -p $BASEDIR/build/usr/src/{cache,config,doc,html,langs,lfs,log,src,ccache}
488
489 mknod -m 600 $BASEDIR/build/dev/console c 5 1 2>/dev/null
490 mknod -m 666 $BASEDIR/build/dev/null c 1 3 2>/dev/null
491
492 # Make all sources and proc available under lfs build
493 mount --bind /dev $BASEDIR/build/dev
494 mount --bind /dev/pts $BASEDIR/build/dev/pts
495 mount --bind /dev/shm $BASEDIR/build/dev/shm
496 mount --bind /proc $BASEDIR/build/proc
497 mount --bind /sys $BASEDIR/build/sys
498 mount --bind $BASEDIR/cache $BASEDIR/build/usr/src/cache
499 mount --bind $BASEDIR/ccache/${BUILD_ARCH}/${TOOLCHAINVER} $BASEDIR/build/usr/src/ccache
500 mount --bind $BASEDIR/config $BASEDIR/build/usr/src/config
501 mount --bind $BASEDIR/doc $BASEDIR/build/usr/src/doc
502 mount --bind $BASEDIR/html $BASEDIR/build/usr/src/html
503 mount --bind $BASEDIR/langs $BASEDIR/build/usr/src/langs
504 mount --bind $BASEDIR/lfs $BASEDIR/build/usr/src/lfs
505 mount --bind $BASEDIR/log $BASEDIR/build/usr/src/log
506 mount --bind $BASEDIR/src $BASEDIR/build/usr/src/src
507
508 # Run LFS static binary creation scripts one by one
509 export CCACHE_DIR=$BASEDIR/ccache
510 export CCACHE_TEMPDIR="/tmp"
511 export CCACHE_COMPILERCHECK="string:toolchain-${TOOLCHAINVER} ${BUILD_ARCH}"
512
513 # Remove pre-install list of installed files in case user erase some files before rebuild
514 rm -f $BASEDIR/build/usr/src/lsalr 2>/dev/null
515
516 # Prepare string for /etc/system-release.
517 local system_release="${NAME} ${VERSION} (${BUILD_ARCH})"
518
519 case "${GIT_BRANCH}" in
520 core*|beta?|rc?)
521 system_release="${system_release} - ${GIT_BRANCH}"
522 ;;
523 *)
524 system_release="${system_release} - core${CORE} Development Build: ${GIT_BRANCH}/${GIT_LASTCOMMIT:0:8}"
525 ;;
526 esac
527
528 # Append -dirty tag for local changes
529 if [ "$(git status -s | wc -l)" != "0" ]; then
530 system_release="${system_release}-dirty"
531 fi
532
533 # Export variable
534 SYSTEM_RELEASE="${system_release}"
535
536 # Decide on PAKFIRE_TREE
537 case "${GIT_BRANCH}" in
538 core*)
539 PAKFIRE_TREE="stable"
540 ;;
541 master)
542 PAKFIRE_TREE="testing"
543 ;;
544 *)
545 PAKFIRE_TREE="unstable"
546 ;;
547 esac
548
549 # Setup ccache cache size
550 enterchroot ccache --max-size="${CCACHE_CACHE_SIZE}" >/dev/null
551}
552
553enterchroot() {
554 # Install QEMU helper, if needed
555 qemu_install_helper
556
557 local PATH="${TOOLS_DIR}/ccache/bin:/bin:/usr/bin:/sbin:/usr/sbin:${TOOLS_DIR}/bin"
558
559 PATH="${PATH}" chroot ${LFS} env -i \
560 HOME="/root" \
561 TERM="${TERM}" \
562 PS1="${PS1}" \
563 PATH="${PATH}" \
564 SYSTEM_RELEASE="${SYSTEM_RELEASE}" \
565 PAKFIRE_TREE="${PAKFIRE_TREE}" \
566 NAME="${NAME}" \
567 SNAME="${SNAME}" \
568 VERSION="${VERSION}" \
569 CORE="${CORE}" \
570 SLOGAN="${SLOGAN}" \
571 TOOLS_DIR="${TOOLS_DIR}" \
572 CONFIG_ROOT="${CONFIG_ROOT}" \
573 CFLAGS="${CFLAGS} ${HARDENING_CFLAGS}" \
574 CXXFLAGS="${CXXFLAGS} ${HARDENING_CFLAGS}" \
575 RUSTFLAGS="${RUSTFLAGS}" \
576 BUILDTARGET="${BUILDTARGET}" \
577 CROSSTARGET="${CROSSTARGET}" \
578 BUILD_ARCH="${BUILD_ARCH}" \
579 BUILD_PLATFORM="${BUILD_PLATFORM}" \
580 CCACHE_DIR=/usr/src/ccache \
581 CCACHE_TEMPDIR="${CCACHE_TEMPDIR}" \
582 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
583 GOCACHE="/usr/src/ccache/go" \
584 KVER="${KVER}" \
585 XZ_OPT="${XZ_OPT}" \
586 DEFAULT_PARALLELISM="${DEFAULT_PARALLELISM}" \
587 SYSTEM_PROCESSORS="${SYSTEM_PROCESSORS}" \
588 SYSTEM_MEMORY="${SYSTEM_MEMORY}" \
589 $(fake_environ) \
590 $(qemu_environ) \
591 "$@"
592}
593
594entershell() {
595 if [ ! -e $BASEDIR/build/usr/src/lfs/ ]; then
596 exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/"
597 fi
598
599 echo "Entering to a shell inside LFS chroot, go out with exit"
600 local PS1="ipfire build chroot (${BUILD_ARCH}) \u:\w\$ "
601
602 if enterchroot bash -i; then
603 stdumount
604 else
605 print_status FAIL
606 exiterror "chroot error"
607 fi
608}
609
610lfsmakecommoncheck() {
611 # Script present?
612 if [ ! -f $BASEDIR/lfs/$1 ]; then
613 exiterror "No such file or directory: $BASEDIR/$1"
614 fi
615
616 # Print package name and version
617 print_package $@
618
619 # Check if this package is supported by our architecture.
620 # If no SUP_ARCH is found, we assume the package can be built for all.
621 if grep "^SUP_ARCH" ${BASEDIR}/lfs/${1} >/dev/null; then
622 # Check if package supports ${BUILD_ARCH} or all architectures.
623 if ! grep -E "^SUP_ARCH.*${BUILD_ARCH}|^SUP_ARCH.*all" ${BASEDIR}/lfs/${1} >/dev/null; then
624 print_runtime 0
625 print_status SKIP
626 return 1
627 fi
628 fi
629
630 # Script slipped?
631 local i
632 for i in $SKIP_PACKAGE_LIST
633 do
634 if [ "$i" == "$1" ]; then
635 print_status SKIP
636 return 1;
637 fi
638 done
639
640 echo -ne "`date -u '+%b %e %T'`: Building $* " >> $LOGFILE
641
642 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR BUILD_ARCH="${BUILD_ARCH}" \
643 MESSAGE="$1\t " download >> $LOGFILE 2>&1
644 if [ $? -ne 0 ]; then
645 exiterror "Download error in $1"
646 fi
647
648 cd $BASEDIR/lfs && make -s -f $* LFS_BASEDIR=$BASEDIR BUILD_ARCH="${BUILD_ARCH}" \
649 MESSAGE="$1\t md5sum" md5 >> $LOGFILE 2>&1
650 if [ $? -ne 0 ]; then
651 exiterror "md5sum error in $1, check file in cache or signature"
652 fi
653
654 return 0 # pass all!
655}
656
657lfsmake1() {
658 lfsmakecommoncheck $*
659 [ $? == 1 ] && return 0
660
661 cd $BASEDIR/lfs && env -i \
662 PATH="${TOOLS_DIR}/ccache/bin:${TOOLS_DIR}/bin:$PATH" \
663 CCACHE_DIR="${CCACHE_DIR}"/${BUILD_ARCH}/${TOOLCHAINVER} \
664 CCACHE_TEMPDIR="${CCACHE_TEMPDIR}" \
665 CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \
666 CFLAGS="${CFLAGS}" \
667 CXXFLAGS="${CXXFLAGS}" \
668 DEFAULT_PARALLELISM="${DEFAULT_PARALLELISM}" \
669 SYSTEM_PROCESSORS="${SYSTEM_PROCESSORS}" \
670 SYSTEM_MEMORY="${SYSTEM_MEMORY}" \
671 make -f $* \
672 TOOLCHAIN=1 \
673 TOOLS_DIR="${TOOLS_DIR}" \
674 CROSSTARGET="${CROSSTARGET}" \
675 BUILDTARGET="${BUILDTARGET}" \
676 BUILD_ARCH="${BUILD_ARCH}" \
677 BUILD_PLATFORM="${BUILD_PLATFORM}" \
678 LFS_BASEDIR="${BASEDIR}" \
679 ROOT="${LFS}" \
680 KVER="${KVER}" \
681 install >> $LOGFILE 2>&1 &
682
683 if ! wait_until_finished $!; then
684 print_status FAIL
685 exiterror "Building $*"
686 fi
687
688 print_status DONE
689}
690
691lfsmake2() {
692 lfsmakecommoncheck $*
693 [ $? == 1 ] && return 0
694
695 local PS1='\u:\w$ '
696
697 enterchroot \
698 ${EXTRA_PATH}bash -x -c "cd /usr/src/lfs && \
699 make -f $* \
700 LFS_BASEDIR=/usr/src install" \
701 >> ${LOGFILE} 2>&1 &
702
703 if ! wait_until_finished $!; then
704 print_status FAIL
705 exiterror "Building $*"
706 fi
707
708 print_status DONE
709}
710
711ipfiredist() {
712 lfsmakecommoncheck $*
713 [ $? == 1 ] && return 0
714
715 local PS1='\u:\w$ '
716
717 enterchroot \
718 bash -x -c "cd /usr/src/lfs && make -f $* LFS_BASEDIR=/usr/src dist" \
719 >> ${LOGFILE} 2>&1 &
720
721 if ! wait_until_finished $!; then
722 print_status FAIL
723 exiterror "Packaging $*"
724 fi
725
726 print_status DONE
727}
728
729wait_until_finished() {
730 local pid=${1}
731
732 local start_time=$(now)
733
734 # Show progress
735 if ${INTERACTIVE}; then
736 # Wait a little just in case the process
737 # has finished very quickly.
738 sleep 0.1
739
740 local runtime
741 while kill -0 ${pid} 2>/dev/null; do
742 print_runtime $(( $(now) - ${start_time} ))
743
744 # Wait a little
745 sleep 1
746 done
747 fi
748
749 # Returns the exit code of the child process
750 wait ${pid}
751 local ret=$?
752
753 if ! ${INTERACTIVE}; then
754 print_runtime $(( $(now) - ${start_time} ))
755 fi
756
757 return ${ret}
758}
759
760fake_environ() {
761 [ -e "${BASEDIR}/build${TOOLS_DIR}/lib/libpakfire_preload.so" ] || return
762
763 local env="LD_PRELOAD=${TOOLS_DIR}/lib/libpakfire_preload.so"
764
765 # Fake kernel version, because some of the packages do not compile
766 # with kernel 3.0 and later.
767 env="${env} UTS_RELEASE=${KVER}-ipfire"
768
769 # Fake machine version.
770 env="${env} UTS_MACHINE=${BUILD_ARCH}"
771
772 echo "${env}"
773}
774
775qemu_environ() {
776 local env
777
778 # Don't add anything if qemu is not used.
779 if ! qemu_is_required; then
780 return
781 fi
782
783 # Set default qemu options
784 case "${BUILD_ARCH}" in
785 arm*)
786 QEMU_CPU="${QEMU_CPU:-cortex-a9}"
787
788 env="${env} QEMU_CPU=${QEMU_CPU}"
789 ;;
790 esac
791
792 # Enable QEMU strace
793 #env="${env} QEMU_STRACE=1"
794
795 echo "${env}"
796}
797
798qemu_is_required() {
799 local build_arch="${1}"
800
801 if [ -z "${build_arch}" ]; then
802 build_arch="${BUILD_ARCH}"
803 fi
804
805 case "${HOST_ARCH},${build_arch}" in
806 x86_64,arm*|x86_64,aarch64|x86_64,riscv64|i?86,arm*|i?86,aarch64|i?86,x86_64)
807 return 0
808 ;;
809 *)
810 return 1
811 ;;
812 esac
813}
814
815qemu_install_helper() {
816 # Do nothing, if qemu is not required
817 if ! qemu_is_required; then
818 return 0
819 fi
820
821 if [ ! -e /proc/sys/fs/binfmt_misc/status ]; then
822 exiterror "binfmt_misc not mounted. QEMU_TARGET_HELPER not useable."
823 fi
824
825 if [ ! $(cat /proc/sys/fs/binfmt_misc/status) = 'enabled' ]; then
826 exiterror "binfmt_misc not enabled. QEMU_TARGET_HELPER not useable."
827 fi
828
829
830 if [ -z "${QEMU_TARGET_HELPER}" ]; then
831 exiterror "QEMU_TARGET_HELPER not set"
832 fi
833
834 # Check if the helper is already installed.
835 if [ -x "${LFS}${QEMU_TARGET_HELPER}" ]; then
836 return 0
837 fi
838
839 # Try to find a suitable binary that we can install
840 # to the build environment.
841 local file
842 for file in "${QEMU_TARGET_HELPER}" "${QEMU_TARGET_HELPER}-static"; do
843 # file must exist and be executable.
844 [ -x "${file}" ] || continue
845
846 # Must be static.
847 file_is_static "${file}" || continue
848
849 local dirname="${LFS}$(dirname "${file}")"
850 mkdir -p "${dirname}"
851
852 install -m 755 "${file}" "${LFS}${QEMU_TARGET_HELPER}"
853 return 0
854 done
855
856 exiterror "Could not find a statically-linked QEMU emulator: ${QEMU_TARGET_HELPER}"
857}
858
859qemu_find_build_helper_name() {
860 local build_arch="${1}"
861
862 local magic
863 case "${build_arch}" in
864 aarch64)
865 magic="7f454c460201010000000000000000000200b700"
866 ;;
867 arm*)
868 magic="7f454c4601010100000000000000000002002800"
869 ;;
870 riscv64)
871 magic="7f454c460201010000000000000000000200f300"
872 ;;
873 x86_64)
874 magic="7f454c4602010100000000000000000002003e00"
875 ;;
876 esac
877
878 [ -z "${magic}" ] && return 1
879
880 local file
881 for file in /proc/sys/fs/binfmt_misc/*; do
882 # skip write only register entry
883 [ $(basename "${file}") = "register" ] && continue
884 # Search for the file with the correct magic value.
885 grep -qE "^magic ${magic}$" "${file}" || continue
886
887 local interpreter="$(grep "^interpreter" "${file}" | awk '{ print $2 }')"
888
889 [ -n "${interpreter}" ] || continue
890 [ "${interpreter:0:1}" = "/" ] || continue
891 [ -x "${interpreter}" ] || continue
892
893 echo "${interpreter}"
894 return 0
895 done
896
897 return 1
898}
899
900file_is_static() {
901 local file="${1}"
902
903 file ${file} 2>/dev/null | grep -q "statically linked"
904}
905
906update_language_list() {
907 local path="${1}"
908
909 local lang
910 for lang in ${path}/*.po; do
911 lang="$(basename "${lang}")"
912 echo "${lang%*.po}"
913 done | sort -u > "${path}/LINGUAS"
914}
915
916contributors() {
917 local commits name
918
919 git shortlog --summary --numbered | while read -r commits name; do
920 echo "${name}"
921 done | grep -vE -e "^(alpha197|morlix|root|ummeegge)$" -e "via Development$" -e "@" -e "#$"
922}
923
924update_contributors() {
925 echo -n "Updating list of contributors"
926
927 local contributors="$(contributors | paste -sd , - | sed -e "s/,/&\\\\n/g")"
928
929 # Edit contributors into credits.cgi
930 local tmp="$(mktemp)"
931
932 awk "/<!-- CONTRIBUTORS -->/{ p=1; print; printf \"${contributors}\n\"}/<!-- END -->/{ p=0 } !p" \
933 < "${BASEDIR}/html/cgi-bin/credits.cgi" > "${tmp}"
934
935 # Copy back modified content
936 cat "${tmp}" > "${BASEDIR}/html/cgi-bin/credits.cgi"
937 unlink "${tmp}"
938
939 print_status DONE
940 return 0
941}
942
943# Default settings
944CCACHE_CACHE_SIZE="4G"
945ENABLE_RAMDISK="auto"
946
947# Load configuration file
948if [ -f .config ]; then
949 . .config
950fi
951
952# TARGET_ARCH is BUILD_ARCH now
953if [ -n "${TARGET_ARCH}" ]; then
954 BUILD_ARCH="${TARGET_ARCH}"
955 unset TARGET_ARCH
956fi
957
958# Get some information about the host system
959SYSTEM_PROCESSORS="$(system_processors)"
960SYSTEM_MEMORY="$(system_memory)"
961
962if [ -n "${BUILD_ARCH}" ]; then
963 configure_build "${BUILD_ARCH}"
964else
965 configure_build "default"
966fi
967
968# Automatically enable/disable ramdisk usage
969if [ "${ENABLE_RAMDISK}" = "auto" ]; then
970 # Enable only when the host system has 4GB of RAM or more
971 if [ ${SYSTEM_MEMORY} -ge 3900 ]; then
972 ENABLE_RAMDISK="on"
973 fi
974fi
975
976buildtoolchain() {
977 local error=false
978 case "${BUILD_ARCH}:${HOST_ARCH}" in
979 # x86_64
980 x86_64:x86_64)
981 # This is working.
982 ;;
983
984 # ARM
985 arvm7hl:armv7hl|armv7hl:armv7l)
986 # These are working.
987 ;;
988
989 armv6l:armv6l|armv6l:armv7l|armv6l:aarch64)
990 # These are working.
991 ;;
992 armv6l:*)
993 error=true
994 ;;
995 esac
996
997 ${error} && \
998 exiterror "Cannot build ${BUILD_ARCH} toolchain on $(uname -m). Please use the download if any."
999
1000 local gcc=$(type -p gcc)
1001 if [ -z "${gcc}" ]; then
1002 exiterror "Could not find GCC. You will need a working build enviroment in order to build the toolchain."
1003 fi
1004
1005 # Check ${TOOLS_DIR} symlink
1006 if [ -h "${TOOLS_DIR}" ]; then
1007 rm -f "${TOOLS_DIR}"
1008 fi
1009
1010 if [ ! -e "${TOOLS_DIR}" ]; then
1011 ln -s "${BASEDIR}/build${TOOLS_DIR}" "${TOOLS_DIR}"
1012 fi
1013
1014 if [ ! -h "${TOOLS_DIR}" ]; then
1015 exiterror "Could not create ${TOOLS_DIR} symbolic link"
1016 fi
1017
1018 LOGFILE="$BASEDIR/log/_build.toolchain.log"
1019 export LOGFILE
1020
1021 lfsmake1 stage1
1022 lfsmake1 binutils PASS=1
1023 lfsmake1 gcc PASS=1
1024 lfsmake1 linux KCFG="-headers"
1025 lfsmake1 glibc
1026 lfsmake1 libxcrypt
1027 lfsmake1 gcc PASS=L
1028 lfsmake1 zlib
1029 lfsmake1 zstd
1030 lfsmake1 binutils PASS=2
1031 lfsmake1 gcc PASS=2
1032 lfsmake1 ccache
1033 lfsmake1 tcl
1034 lfsmake1 expect
1035 lfsmake1 dejagnu
1036 lfsmake1 pkg-config
1037 lfsmake1 ncurses
1038 lfsmake1 bash
1039 lfsmake1 bzip2
1040 lfsmake1 automake
1041 lfsmake1 coreutils
1042 lfsmake1 diffutils
1043 lfsmake1 findutils
1044 lfsmake1 gawk
1045 lfsmake1 gettext
1046 lfsmake1 grep
1047 lfsmake1 gzip
1048 lfsmake1 m4
1049 lfsmake1 make
1050 lfsmake1 patch
1051 lfsmake1 perl
1052 lfsmake1 python3
1053 lfsmake1 sed
1054 lfsmake1 tar
1055 lfsmake1 texinfo
1056 lfsmake1 xz
1057 lfsmake1 bison
1058 lfsmake1 flex
1059 lfsmake1 fake-environ
1060 lfsmake1 strip
1061 lfsmake1 cleanup-toolchain
1062}
1063
1064buildbase() {
1065 LOGFILE="$BASEDIR/log/_build.base.log"
1066 export LOGFILE
1067 lfsmake2 stage2
1068 lfsmake2 linux KCFG="-headers"
1069 lfsmake2 man-pages
1070 lfsmake2 glibc
1071 lfsmake2 tzdata
1072 lfsmake2 cleanup-toolchain
1073 lfsmake2 zlib
1074 lfsmake2 zstd
1075 lfsmake2 autoconf
1076 lfsmake2 automake
1077 lfsmake2 libtool
1078 lfsmake2 binutils
1079 lfsmake2 gmp
1080 lfsmake2 mpfr
1081 lfsmake2 libmpc
1082 lfsmake2 libxcrypt
1083 lfsmake2 file
1084 lfsmake2 gcc
1085 lfsmake2 sed
1086 lfsmake2 berkeley
1087 lfsmake2 coreutils
1088 lfsmake2 iana-etc
1089 lfsmake2 m4
1090 lfsmake2 bison
1091 lfsmake2 ncurses
1092 lfsmake2 perl
1093 lfsmake2 readline
1094 lfsmake2 bzip2
1095 lfsmake2 xz
1096 lfsmake2 lzip
1097 lfsmake2 pcre
1098 lfsmake2 pcre2
1099 lfsmake2 gettext
1100 lfsmake2 attr
1101 lfsmake2 acl
1102 lfsmake2 bash
1103 lfsmake2 diffutils
1104 lfsmake2 ed
1105 lfsmake2 findutils
1106 lfsmake2 flex
1107 lfsmake2 gawk
1108 lfsmake2 go
1109 lfsmake2 grep
1110 lfsmake2 groff
1111 lfsmake2 gperf
1112 lfsmake2 gzip
1113 lfsmake2 hostname
1114 lfsmake2 whois
1115 lfsmake2 kbd
1116 lfsmake2 less
1117 lfsmake2 pkg-config
1118 lfsmake2 procps
1119 lfsmake2 make
1120 lfsmake2 man
1121 lfsmake2 net-tools
1122 lfsmake2 patch
1123 lfsmake2 psmisc
1124 lfsmake2 shadow
1125 lfsmake2 sysklogd
1126 lfsmake2 sysvinit
1127 lfsmake2 tar
1128 lfsmake2 texinfo
1129 lfsmake2 util-linux
1130 lfsmake2 vim
1131 lfsmake2 e2fsprogs
1132 lfsmake2 jq
1133}
1134
1135buildipfire() {
1136 LOGFILE="$BASEDIR/log/_build.ipfire.log"
1137 export LOGFILE
1138 lfsmake2 configroot
1139 lfsmake2 initscripts
1140 lfsmake2 backup
1141 lfsmake2 openssl
1142 lfsmake2 kmod
1143 lfsmake2 udev
1144 lfsmake2 popt
1145 lfsmake2 libedit
1146 lfsmake2 libusb
1147 lfsmake2 libusb-compat
1148 lfsmake2 libpcap
1149 lfsmake2 ppp
1150 lfsmake2 pptp
1151 lfsmake2 unzip
1152 lfsmake2 which
1153 lfsmake2 linux-firmware
1154 lfsmake2 dvb-firmwares
1155 lfsmake2 xr819-firmware
1156 lfsmake2 zd1211-firmware
1157 lfsmake2 rpi-firmware
1158 lfsmake2 intel-microcode
1159 lfsmake2 pcengines-apu-firmware
1160 lfsmake2 bc
1161 lfsmake2 u-boot MKIMAGE=1
1162 lfsmake2 cpio
1163 lfsmake2 mdadm
1164 lfsmake2 dracut
1165 lfsmake2 libaio
1166 lfsmake2 lvm2
1167 lfsmake2 multipath-tools
1168 lfsmake2 freetype
1169 lfsmake2 libmnl
1170 lfsmake2 libnfnetlink
1171 lfsmake2 libnetfilter_queue
1172 lfsmake2 libnetfilter_conntrack
1173 lfsmake2 libnetfilter_cthelper
1174 lfsmake2 libnetfilter_cttimeout
1175 lfsmake2 iptables
1176 lfsmake2 iproute2
1177 lfsmake2 screen
1178 lfsmake2 elfutils
1179
1180 # Kernelbuild ... current we have no platform that need
1181 # multi kernel builds so KCFG is empty
1182 lfsmake2 linux KCFG=""
1183 lfsmake2 rtl8189es KCFG=""
1184 lfsmake2 rtl8812au KCFG=""
1185 lfsmake2 rtl8822bu KCFG=""
1186 lfsmake2 xradio KCFG=""
1187 lfsmake2 xtables-addons KCFG=""
1188 lfsmake2 linux-initrd KCFG=""
1189
1190 lfsmake2 xtables-addons USPACE="1"
1191 lfsmake2 libgpg-error
1192 lfsmake2 libgcrypt
1193 lfsmake2 libassuan
1194 lfsmake2 nettle
1195 lfsmake2 json-c
1196 lfsmake2 libconfig
1197 lfsmake2 libevent
1198 lfsmake2 libevent2
1199 lfsmake2 expat
1200 lfsmake2 apr
1201 lfsmake2 aprutil
1202 lfsmake2 unbound
1203 lfsmake2 gnutls
1204 lfsmake2 libuv
1205 lfsmake2 bind
1206 lfsmake2 dhcp
1207 lfsmake2 dhcpcd
1208 lfsmake2 boost
1209 lfsmake2 linux-atm
1210 lfsmake2 gdbm
1211 lfsmake2 pam
1212 lfsmake2 c-ares
1213 lfsmake2 curl
1214 lfsmake2 tcl
1215 lfsmake2 sqlite
1216 lfsmake2 libffi
1217 lfsmake2 python3
1218 lfsmake2 rust
1219 lfsmake2 rust-dissimilar
1220 lfsmake2 rust-cfg-if
1221 lfsmake2 rust-libc
1222 lfsmake2 rust-getrandom
1223 lfsmake2 rust-typenum
1224 lfsmake2 rust-version-check
1225 lfsmake2 rust-generic-array
1226 lfsmake2 gdb
1227 lfsmake2 grub
1228 lfsmake2 efivar
1229 lfsmake2 efibootmgr
1230 lfsmake2 libtasn1
1231 lfsmake2 p11-kit
1232 lfsmake2 ca-certificates
1233 lfsmake2 fireinfo
1234 lfsmake2 libnet
1235 lfsmake2 libnl
1236 lfsmake2 libnl-3
1237 lfsmake2 libidn
1238 lfsmake2 nasm
1239 lfsmake2 libarchive
1240 lfsmake2 cmake
1241 lfsmake2 ninja
1242 lfsmake2 meson
1243 lfsmake2 libjpeg
1244 lfsmake2 openjpeg
1245 lfsmake2 libexif
1246 lfsmake2 libpng
1247 lfsmake2 libtiff
1248 lfsmake2 libart
1249 lfsmake2 gd
1250 lfsmake2 slang
1251 lfsmake2 newt
1252 lfsmake2 libsmooth
1253 lfsmake2 libcap
1254 lfsmake2 libcap-ng
1255 lfsmake2 pciutils
1256 lfsmake2 usbutils
1257 lfsmake2 libxml2
1258 lfsmake2 libxslt
1259 lfsmake2 BerkeleyDB
1260 lfsmake2 cyrus-sasl
1261 lfsmake2 openldap
1262 lfsmake2 apache2
1263 lfsmake2 web-user-interface
1264 lfsmake2 flag-icons
1265 lfsmake2 jquery
1266 lfsmake2 bootstrap
1267 lfsmake2 arping
1268 lfsmake2 beep
1269 lfsmake2 libssh
1270 lfsmake2 libinih
1271 lfsmake2 cdrkit
1272 lfsmake2 dosfstools
1273 lfsmake2 exfatprogs
1274 lfsmake2 reiserfsprogs
1275 lfsmake2 liburcu
1276 lfsmake2 xfsprogs
1277 lfsmake2 sysfsutils
1278 lfsmake2 fuse
1279 lfsmake2 ntfs-3g
1280 lfsmake2 ethtool
1281 lfsmake2 fcron
1282 lfsmake2 ExtUtils-PkgConfig
1283 lfsmake2 perl-GD
1284 lfsmake2 GD-Graph
1285 lfsmake2 GD-TextUtil
1286 lfsmake2 perl-Device-SerialPort
1287 lfsmake2 perl-Device-Modem
1288 lfsmake2 perl-Apache-Htpasswd
1289 lfsmake2 perl-Parse-Yapp
1290 lfsmake2 perl-Data-UUID
1291 lfsmake2 gnupg
1292 lfsmake2 hdparm
1293 lfsmake2 sdparm
1294 lfsmake2 whatmask
1295 lfsmake2 libtirpc
1296 lfsmake2 conntrack-tools
1297 lfsmake2 iputils
1298 lfsmake2 l7-protocols
1299 lfsmake2 hwdata
1300 lfsmake2 logrotate
1301 lfsmake2 logwatch
1302 lfsmake2 misc-progs
1303 lfsmake2 nano
1304 lfsmake2 URI
1305 lfsmake2 perl-CGI
1306 lfsmake2 perl-Switch
1307 lfsmake2 HTML-Tagset
1308 lfsmake2 HTML-Parser
1309 lfsmake2 HTML-Template
1310 lfsmake2 Compress-Zlib
1311 lfsmake2 Digest
1312 lfsmake2 Digest-SHA1
1313 lfsmake2 Digest-HMAC
1314 lfsmake2 libwww-perl
1315 lfsmake2 Net-DNS
1316 lfsmake2 Net-IPv4Addr
1317 lfsmake2 Net_SSLeay
1318 lfsmake2 IO-Stringy
1319 lfsmake2 IO-Socket-SSL
1320 lfsmake2 Unix-Syslog
1321 lfsmake2 Mail-Tools
1322 lfsmake2 MIME-Tools
1323 lfsmake2 Net-Server
1324 lfsmake2 Canary-Stability
1325 lfsmake2 Convert-TNEF
1326 lfsmake2 Convert-UUlib
1327 lfsmake2 Archive-Tar
1328 lfsmake2 Archive-Zip
1329 lfsmake2 Text-Tabs+Wrap
1330 lfsmake2 XML-Parser
1331 lfsmake2 Crypt-PasswdMD5
1332 lfsmake2 Net-Telnet
1333 lfsmake2 python3-setuptools
1334 lfsmake2 python3-inotify
1335 lfsmake2 python3-docutils
1336 lfsmake2 python3-daemon
1337 lfsmake2 glib
1338 lfsmake2 ntp
1339 lfsmake2 openssh
1340 lfsmake2 fontconfig
1341 lfsmake2 dejavu-fonts-ttf
1342 lfsmake2 ubuntu-font-family
1343 lfsmake2 freefont
1344 lfsmake2 pixman
1345 lfsmake2 cairo
1346 lfsmake2 harfbuzz
1347 lfsmake2 fribidi
1348 lfsmake2 pango
1349 lfsmake2 rrdtool
1350 lfsmake2 setup
1351 lfsmake2 libdnet
1352 lfsmake2 jansson
1353 lfsmake2 yaml
1354 lfsmake2 libhtp
1355 lfsmake2 colm
1356 lfsmake2 ragel
1357 lfsmake2 hyperscan
1358 lfsmake2 suricata
1359 lfsmake2 oinkmaster
1360 lfsmake2 ids-ruleset-sources
1361 lfsmake2 squid
1362 lfsmake2 squidguard
1363 lfsmake2 calamaris
1364 lfsmake2 tcpdump
1365 lfsmake2 traceroute
1366 lfsmake2 vlan
1367 lfsmake2 wireless
1368 lfsmake2 pakfire
1369 lfsmake2 spandsp
1370 lfsmake2 lz4
1371 lfsmake2 lzo
1372 lfsmake2 openvpn
1373 lfsmake2 mpage
1374 lfsmake2 dbus
1375 lfsmake2 intltool
1376 lfsmake2 libdaemon
1377 lfsmake2 avahi
1378 lfsmake2 cups
1379 lfsmake2 lcms2
1380 lfsmake2 ghostscript
1381 lfsmake2 qpdf
1382 lfsmake2 poppler
1383 lfsmake2 poppler-data
1384 lfsmake2 cups-filters
1385 lfsmake2 epson-inkjet-printer-escpr
1386 lfsmake2 foomatic
1387 lfsmake2 hplip
1388 lfsmake2 cifs-utils
1389 lfsmake2 krb5
1390 lfsmake2 rpcsvc-proto
1391 lfsmake2 samba
1392 lfsmake2 netatalk
1393 lfsmake2 sudo
1394 lfsmake2 mc
1395 lfsmake2 wget
1396 lfsmake2 bridge-utils
1397 lfsmake2 smartmontools
1398 lfsmake2 htop
1399 lfsmake2 chkconfig
1400 lfsmake2 postfix
1401 lfsmake2 fetchmail
1402 lfsmake2 clamav
1403 lfsmake2 perl-NetAddr-IP
1404 lfsmake2 dma
1405 lfsmake2 alsa
1406 lfsmake2 mpfire
1407 lfsmake2 guardian
1408 lfsmake2 libid3tag
1409 lfsmake2 libmad
1410 lfsmake2 libogg
1411 lfsmake2 libvorbis
1412 lfsmake2 flac
1413 lfsmake2 lame
1414 lfsmake2 sox
1415 lfsmake2 soxr
1416 lfsmake2 libshout
1417 lfsmake2 xvid
1418 lfsmake2 libmpeg2
1419 lfsmake2 gnump3d
1420 lfsmake2 rsync
1421 lfsmake2 rpcbind
1422 lfsmake2 keyutils
1423 lfsmake2 libnfsidmap
1424 lfsmake2 nfs
1425 lfsmake2 gnu-netcat
1426 lfsmake2 ncat
1427 lfsmake2 nmap
1428 lfsmake2 etherwake
1429 lfsmake2 bwm-ng
1430 lfsmake2 sysstat
1431 lfsmake2 strongswan
1432 lfsmake2 rng-tools
1433 lfsmake2 lsof
1434 lfsmake2 br2684ctl
1435 lfsmake2 pcmciautils
1436 lfsmake2 lm_sensors
1437 lfsmake2 libstatgrab
1438 lfsmake2 liboping
1439 lfsmake2 collectd
1440 lfsmake2 elinks
1441 lfsmake2 igmpproxy
1442 lfsmake2 opus
1443 lfsmake2 python3-pyparsing
1444 lfsmake2 spice-protocol
1445 lfsmake2 spice
1446 lfsmake2 sdl2
1447 lfsmake2 libusbredir
1448 lfsmake2 libseccomp
1449 lfsmake2 qemu
1450 lfsmake2 netpbm
1451 lfsmake2 netsnmpd
1452 lfsmake2 nagios_nrpe
1453 lfsmake2 nagios-plugins
1454 lfsmake2 icinga
1455 lfsmake2 observium-agent
1456 lfsmake2 ebtables
1457 lfsmake2 faad2
1458 lfsmake2 alac
1459 lfsmake2 ffmpeg
1460 lfsmake2 vdr
1461 lfsmake2 vdr_streamdev
1462 lfsmake2 vdr_epgsearch
1463 lfsmake2 vdr_dvbapi
1464 lfsmake2 vdr_eepg
1465 lfsmake2 w_scan
1466 lfsmake2 mpd
1467 lfsmake2 libmpdclient
1468 lfsmake2 mpc
1469 lfsmake2 perl-Net-CIDR-Lite
1470 lfsmake2 perl-Net-SMTP-SSL
1471 lfsmake2 perl-MIME-Base64
1472 lfsmake2 perl-Authen-SASL
1473 lfsmake2 perl-MIME-Lite
1474 lfsmake2 perl-Email-Date-Format
1475 lfsmake2 git
1476 lfsmake2 squidclamav
1477 lfsmake2 vnstat
1478 lfsmake2 iw
1479 lfsmake2 wpa_supplicant
1480 lfsmake2 hostapd
1481 lfsmake2 syslinux
1482 lfsmake2 tftpd
1483 lfsmake2 cpufrequtils
1484 lfsmake2 gutenprint
1485 lfsmake2 apcupsd
1486 lfsmake2 fireperf
1487 lfsmake2 iperf
1488 lfsmake2 iperf3
1489 lfsmake2 7zip
1490 lfsmake2 lynis
1491 lfsmake2 sshfs
1492 lfsmake2 taglib
1493 lfsmake2 sslh
1494 lfsmake2 perl-gettext
1495 lfsmake2 perl-Sort-Naturally
1496 lfsmake2 vdradmin
1497 lfsmake2 perl-DBI
1498 lfsmake2 perl-DBD-SQLite
1499 lfsmake2 perl-File-ReadBackwards
1500 lfsmake2 openvmtools
1501 lfsmake2 joe
1502 lfsmake2 monit
1503 lfsmake2 nut
1504 lfsmake2 watchdog
1505 lfsmake2 libpri
1506 lfsmake2 usb_modeswitch
1507 lfsmake2 usb_modeswitch_data
1508 lfsmake2 zerofree
1509 lfsmake2 minicom
1510 lfsmake2 ddrescue
1511 lfsmake2 powertop
1512 lfsmake2 parted
1513 lfsmake2 swig
1514 lfsmake2 dtc
1515 lfsmake2 u-boot
1516 lfsmake2 u-boot-friendlyarm
1517 lfsmake2 wireless-regdb
1518 lfsmake2 libsolv
1519 lfsmake2 ddns
1520 lfsmake2 python3-setuptools-scm
1521 lfsmake2 python3-six
1522 lfsmake2 python3-dateutil
1523 lfsmake2 python3-jmespath
1524 lfsmake2 python3-colorama
1525 lfsmake2 python3-yaml
1526 lfsmake2 python3-s3transfer
1527 lfsmake2 python3-rsa
1528 lfsmake2 python3-pyasn1
1529 lfsmake2 python3-urllib3
1530 lfsmake2 python3-botocore
1531 lfsmake2 python3-msgpack
1532 lfsmake2 aws-cli
1533 lfsmake2 transmission
1534 lfsmake2 mtr
1535 lfsmake2 minidlna
1536 lfsmake2 acpid
1537 lfsmake2 fping
1538 lfsmake2 telnet
1539 lfsmake2 xinetd
1540 lfsmake2 stress
1541 lfsmake2 sarg
1542 lfsmake2 nginx
1543 lfsmake2 sysbench
1544 lfsmake2 strace
1545 lfsmake2 ltrace
1546 lfsmake2 ipfire-netboot
1547 lfsmake2 lcdproc
1548 lfsmake2 keepalived
1549 lfsmake2 ipvsadm
1550 lfsmake2 perl-Carp-Clan
1551 lfsmake2 perl-Date-Calc
1552 lfsmake2 perl-Date-Manip
1553 lfsmake2 perl-File-Tail
1554 lfsmake2 perl-TimeDate
1555 lfsmake2 swatch
1556 lfsmake2 tor
1557 lfsmake2 wavemon
1558 lfsmake2 iptraf-ng
1559 lfsmake2 iotop
1560 lfsmake2 stunnel
1561 lfsmake2 bacula
1562 lfsmake2 perl-Font-TTF
1563 lfsmake2 perl-IO-String
1564 lfsmake2 perl-PDF-API2
1565 lfsmake2 squid-accounting
1566 lfsmake2 pigz
1567 lfsmake2 tmux
1568 lfsmake2 perl-Text-CSV_XS
1569 lfsmake2 lua
1570 lfsmake2 haproxy
1571 lfsmake2 ipset
1572 lfsmake2 dnsdist
1573 lfsmake2 bird
1574 lfsmake2 libyang
1575 lfsmake2 frr
1576 lfsmake2 dmidecode
1577 lfsmake2 mcelog
1578 lfsmake2 libpciaccess
1579 lfsmake2 libyajl
1580 lfsmake2 libvirt
1581 lfsmake2 libtalloc
1582 lfsmake2 freeradius
1583 lfsmake2 perl-common-sense
1584 lfsmake2 perl-inotify2
1585 lfsmake2 perl-Net-IP
1586 lfsmake2 wio
1587 lfsmake2 iftop
1588 lfsmake2 mdns-repeater
1589 lfsmake2 i2c-tools
1590 lfsmake2 nss-myhostname
1591 lfsmake2 dehydrated
1592 lfsmake2 shairport-sync
1593 lfsmake2 borgbackup
1594 lfsmake2 lmdb
1595 lfsmake2 knot
1596 lfsmake2 spectre-meltdown-checker
1597 lfsmake2 zabbix_agentd
1598 lfsmake2 flashrom
1599 lfsmake2 firmware-update
1600 lfsmake2 tshark
1601 lfsmake2 speedtest-cli
1602 lfsmake2 rfkill
1603 lfsmake2 amazon-ssm-agent
1604 lfsmake2 libloc
1605 lfsmake2 ncdu
1606 lfsmake2 lshw
1607 lfsmake2 socat
1608 lfsmake2 libcdada
1609 lfsmake2 pmacct
1610 lfsmake2 squid-asnbl
1611 lfsmake2 qemu-ga
1612}
1613
1614buildinstaller() {
1615 # Run installer scripts one by one
1616 LOGFILE="$BASEDIR/log/_build.installer.log"
1617 export LOGFILE
1618 lfsmake2 memtest
1619 lfsmake2 installer
1620 # use toolchain bash for chroot to strip
1621 EXTRA_PATH=${TOOLS_DIR}/bin/ lfsmake2 strip
1622}
1623
1624buildpackages() {
1625 LOGFILE="$BASEDIR/log/_build.packages.log"
1626 export LOGFILE
1627 echo "... see detailed log in _build.*.log files" >> $LOGFILE
1628
1629
1630 # Generating list of packages used
1631 print_line "Generating packages list from logs"
1632 rm -f $BASEDIR/doc/packages-list
1633 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
1634 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
1635 echo "* `basename $i`" >>$BASEDIR/doc/packages-list
1636 fi
1637 done
1638 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc/packages-list.txt
1639 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$\|install1$\|install2$\|pass1$\|pass2$\|pass3$' \
1640 $BASEDIR/doc/packages-list | sort >> $BASEDIR/doc/packages-list.txt
1641 rm -f $BASEDIR/doc/packages-list
1642 # packages-list.txt is ready to be displayed for wiki page
1643 print_status DONE
1644
1645 # Update changelog
1646 cd $BASEDIR
1647 [ -z $GIT_TAG ] || LAST_TAG=$GIT_TAG
1648 [ -z $LAST_TAG ] || EXT="$LAST_TAG..HEAD"
1649 git log -n 500 --no-merges --pretty=medium --shortstat $EXT > $BASEDIR/doc/ChangeLog
1650
1651 # Create images for install
1652 lfsmake2 cdrom
1653
1654 # Check if there is a loop device for building in virtual environments
1655 modprobe loop 2>/dev/null
1656 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev/loop/0 ] || [ -e /dev/loop0 ] || [ -e "/dev/loop-control" ]); then
1657 lfsmake2 flash-images
1658 fi
1659
1660 mv $LFS/install/images/{*.iso,*.img.xz,*.bz2} $BASEDIR >> $LOGFILE 2>&1
1661
1662 ipfirepackages
1663
1664 cd $BASEDIR
1665
1666 # remove not useable iso on armv6l (needed to build flash images)
1667 [ "${BUILD_ARCH}" = "armv6l" ] && rm -rf *.iso
1668
1669 for i in $(ls *.bz2 *.img.xz *.iso 2>/dev/null); do
1670 md5sum $i > $i.md5
1671 done
1672 cd $PWD
1673
1674 # Cleanup
1675 stdumount
1676 rm -rf $BASEDIR/build/tmp/*
1677
1678 cd $PWD
1679}
1680
1681ipfirepackages() {
1682 lfsmake2 core-updates
1683
1684 local i
1685 for i in $(find $BASEDIR/config/rootfiles/packages{/${BUILD_ARCH},} -maxdepth 1 -type f); do
1686 i=$(basename ${i})
1687 if [ -e $BASEDIR/lfs/$i ]; then
1688 ipfiredist $i
1689 else
1690 echo -n $i
1691 print_status SKIP
1692 fi
1693 done
1694 test -d $BASEDIR/packages || mkdir $BASEDIR/packages
1695 mv -f $LFS/install/packages/* $BASEDIR/packages >> $LOGFILE 2>&1
1696 rm -rf $BASEDIR/build/install/packages/*
1697}
1698
1699while [ $# -gt 0 ]; do
1700 case "${1}" in
1701 --target=*)
1702 configure_build "${1#--target=}"
1703 ;;
1704 -*)
1705 exiterror "Unknown configuration option: ${1}"
1706 ;;
1707 *)
1708 # Found a command, so exit options parsing.
1709 break
1710 ;;
1711 esac
1712 shift
1713done
1714
1715# See what we're supposed to do
1716case "$1" in
1717build)
1718 START_TIME=$(now)
1719
1720 # Clear screen
1721 ${INTERACTIVE} && clear
1722
1723 PACKAGE="$BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.tar.zst"
1724 #only restore on a clean disk
1725 if [ ! -e "${BASEDIR}/build${TOOLS_DIR}/.toolchain-successful" ]; then
1726 if [ ! -n "$PACKAGE" ]; then
1727 print_build_stage "Full toolchain compilation"
1728 prepareenv
1729 buildtoolchain
1730 else
1731 PACKAGENAME=${PACKAGE%.tar.zst}
1732 print_build_stage "Packaged toolchain compilation"
1733 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
1734 zstd -d < "${PACKAGE}" | tar x
1735 prepareenv
1736 else
1737 exiterror "$PACKAGENAME md5 did not match, check downloaded package"
1738 fi
1739 fi
1740 else
1741 prepareenv
1742 fi
1743
1744 print_build_stage "Building LFS"
1745 buildbase
1746
1747 print_build_stage "Building IPFire"
1748 buildipfire
1749
1750 print_build_stage "Building installer"
1751 buildinstaller
1752
1753 print_build_stage "Building packages"
1754 buildpackages
1755
1756 print_build_stage "Checking Logfiles for new Files"
1757
1758 cd $BASEDIR
1759 tools/checknewlog.pl
1760 tools/checkrootfiles
1761 cd $PWD
1762
1763 print_build_summary $(( $(now) - ${START_TIME} ))
1764 ;;
1765shell)
1766 # enter a shell inside LFS chroot
1767 # may be used to changed kernel settings
1768 prepareenv
1769 entershell
1770 ;;
1771clean)
1772 print_line "Cleaning build directory..."
1773
1774 for i in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
1775 $LOSETUP -d $i 2>/dev/null
1776 done
1777 #for i in `mount | grep $BASEDIR | cut -d " " -f 1`; do
1778 # umount $i
1779 #done
1780 stdumount
1781 for i in `seq 0 7`; do
1782 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
1783 umount /dev/loop${i} 2>/dev/null;
1784 losetup -d /dev/loop${i} 2>/dev/null;
1785 fi;
1786 done
1787 rm -rf $BASEDIR/build
1788 rm -rf $BASEDIR/cdrom
1789 rm -rf $BASEDIR/packages
1790 rm -rf $BASEDIR/log
1791 if [ -h "${TOOLS_DIR}" ]; then
1792 rm -f "${TOOLS_DIR}"
1793 fi
1794 rm -f $BASEDIR/ipfire-*
1795 print_status DONE
1796 ;;
1797docker)
1798 # Build the docker image if it does not exist, yet
1799 if ! docker images -a | grep -q ^ipfire-builder; then
1800 if docker build -t ipfire-builder ${BASEDIR}/tools/docker; then
1801 print_status DONE
1802 else
1803 print_status FAIL
1804 exit 1
1805 fi
1806 fi
1807
1808 # Run the container and enter a shell
1809 docker run -it --privileged -v "${BASEDIR}:/build" -w "/build" ipfire-builder bash -l
1810 ;;
1811downloadsrc)
1812 if [ ! -d $BASEDIR/cache ]; then
1813 mkdir $BASEDIR/cache
1814 fi
1815 mkdir -p $BASEDIR/log
1816 echo -e "${BOLD}Preload all source files${NORMAL}" | tee -a $LOGFILE
1817 FINISHED=0
1818 cd $BASEDIR/lfs
1819 for c in `seq $MAX_RETRIES`; do
1820 if (( FINISHED==1 )); then
1821 break
1822 fi
1823 FINISHED=1
1824 cd $BASEDIR/lfs
1825 for i in *; do
1826 if [ -f "$i" -a "$i" != "Config" ]; then
1827 lfsmakecommoncheck ${i} || continue
1828
1829 make -s -f $i LFS_BASEDIR=$BASEDIR BUILD_ARCH="${BUILD_ARCH}" \
1830 MESSAGE="$i\t ($c/$MAX_RETRIES)" download >> $LOGFILE 2>&1
1831 if [ $? -ne 0 ]; then
1832 print_status FAIL
1833 FINISHED=0
1834 else
1835 if [ $c -eq 1 ]; then
1836 print_status DONE
1837 fi
1838 fi
1839 fi
1840 done
1841 done
1842 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
1843 ERROR=0
1844 for i in *; do
1845 if [ -f "$i" -a "$i" != "Config" ]; then
1846 lfsmakecommoncheck ${i} > /dev/null || continue
1847 make -s -f $i LFS_BASEDIR=$BASEDIR BUILD_ARCH="${BUILD_ARCH}" \
1848 MESSAGE="$i\t " md5 >> $LOGFILE 2>&1
1849 if [ $? -ne 0 ]; then
1850 echo -ne "MD5 difference in lfs/$i"
1851 print_status FAIL
1852 ERROR=1
1853 fi
1854 fi
1855 done
1856 if [ $ERROR -eq 0 ]; then
1857 echo -ne "${BOLD}all files md5sum match${NORMAL}"
1858 print_status DONE
1859 else
1860 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
1861 print_status FAIL
1862 fi
1863 cd - >/dev/null 2>&1
1864 ;;
1865toolchain)
1866 # Clear screen
1867 ${INTERACTIVE} && clear
1868
1869 prepareenv
1870 print_build_stage "Toolchain compilation (${BUILD_ARCH})"
1871 buildtoolchain
1872 echo "`date -u '+%b %e %T'`: Create toolchain image for ${BUILD_ARCH}" | tee -a $LOGFILE
1873 test -d $BASEDIR/cache/toolchains || mkdir -p $BASEDIR/cache/toolchains
1874 cd $BASEDIR && tar -cf- --exclude='log/_build.*.log' build/${TOOLS_DIR} build/bin/sh log \
1875 | zstd ${ZSTD_OPT} > cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.tar.zst
1876 md5sum cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.tar.zst \
1877 > cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.md5
1878 stdumount
1879 ;;
1880gettoolchain)
1881 # arbitrary name to be updated in case of new toolchain package upload
1882 PACKAGE=$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}
1883 if [ ! -f $BASEDIR/cache/toolchains/$PACKAGE.tar.zst ]; then
1884 URL_TOOLCHAIN=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
1885 test -d $BASEDIR/cache/toolchains || mkdir -p $BASEDIR/cache/toolchains
1886 echo "`date -u '+%b %e %T'`: Load toolchain image for ${BUILD_ARCH}" | tee -a $LOGFILE
1887 cd $BASEDIR/cache/toolchains
1888 wget -U "IPFireSourceGrabber/2.x" $URL_TOOLCHAIN/$PACKAGE.tar.zst $URL_TOOLCHAIN/$PACKAGE.md5 >& /dev/null
1889 if [ $? -ne 0 ]; then
1890 echo "`date -u '+%b %e %T'`: error downloading $PACKAGE toolchain for ${BUILD_ARCH} machine" | tee -a $LOGFILE
1891 else
1892 if [ "`md5sum $PACKAGE.tar.zst | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
1893 echo "`date -u '+%b %e %T'`: toolchain md5 ok" | tee -a $LOGFILE
1894 else
1895 exiterror "$PACKAGE.md5 did not match, check downloaded package"
1896 fi
1897 fi
1898 else
1899 echo "Toolchain is already downloaded. Exiting..."
1900 fi
1901 ;;
1902uploadsrc)
1903 if [ -z $IPFIRE_USER ]; then
1904 echo -n "You have to setup IPFIRE_USER first. See .config for details."
1905 print_status FAIL
1906 exit 1
1907 fi
1908
1909 URL_SOURCE="$(awk '/^URL_SOURCE/ { print $3 }' lfs/Config)"
1910
1911 rsync \
1912 --recursive \
1913 --update \
1914 --ignore-existing \
1915 --progress \
1916 --human-readable \
1917 --exclude="toolchains/" \
1918 "${BASEDIR}/cache/" \
1919 "${IPFIRE_USER}@${URL_SOURCE}"
1920
1921 exit 0
1922 ;;
1923lang)
1924 echo -ne "Checking the translations for missing or obsolete strings..."
1925 chmod 755 $BASEDIR/tools/{check_strings.pl,sort_strings.pl,check_langs.sh}
1926 $BASEDIR/tools/sort_strings.pl en
1927 $BASEDIR/tools/sort_strings.pl de
1928 $BASEDIR/tools/sort_strings.pl fr
1929 $BASEDIR/tools/sort_strings.pl es
1930 $BASEDIR/tools/sort_strings.pl pl
1931 $BASEDIR/tools/sort_strings.pl ru
1932 $BASEDIR/tools/sort_strings.pl nl
1933 $BASEDIR/tools/sort_strings.pl tr
1934 $BASEDIR/tools/sort_strings.pl it
1935 $BASEDIR/tools/check_strings.pl en > $BASEDIR/doc/language_issues.en
1936 $BASEDIR/tools/check_strings.pl de > $BASEDIR/doc/language_issues.de
1937 $BASEDIR/tools/check_strings.pl fr > $BASEDIR/doc/language_issues.fr
1938 $BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.es
1939 $BASEDIR/tools/check_strings.pl pl > $BASEDIR/doc/language_issues.pl
1940 $BASEDIR/tools/check_strings.pl ru > $BASEDIR/doc/language_issues.ru
1941 $BASEDIR/tools/check_strings.pl nl > $BASEDIR/doc/language_issues.nl
1942 $BASEDIR/tools/check_strings.pl tr > $BASEDIR/doc/language_issues.tr
1943 $BASEDIR/tools/check_strings.pl it > $BASEDIR/doc/language_issues.it
1944 $BASEDIR/tools/check_langs.sh > $BASEDIR/doc/language_missings
1945 print_status DONE
1946
1947 echo -ne "Updating language lists..."
1948 update_language_list ${BASEDIR}/src/installer/po
1949 update_language_list ${BASEDIR}/src/setup/po
1950 print_status DONE
1951 ;;
1952update-contributors)
1953 update_contributors
1954 ;;
1955find-dependencies)
1956 shift
1957 exec "${BASEDIR}/tools/find-dependencies" "${BASEDIR}/build" "$@"
1958 ;;
1959check-manualpages)
1960 echo "Checking the manual pages for broken links..."
1961
1962 chmod 755 $BASEDIR/tools/check_manualpages.pl
1963 if $BASEDIR/tools/check_manualpages.pl; then
1964 print_status DONE
1965 else
1966 print_status FAIL
1967 fi
1968 ;;
1969*)
1970 echo "Usage: $0 [OPTIONS] {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain|update-contributors|find-dependencies|check-manualpages}"
1971 cat doc/make.sh-usage
1972 ;;
1973esac
1974