[0170229] | 1 | #!/bin/bash
|
---|
[dd810ea] | 2 |
|
---|
| 3 | # $Id$
|
---|
| 4 |
|
---|
| 5 | set +e
|
---|
[0170229] | 6 |
|
---|
| 7 | # VT100 colors
|
---|
| 8 | declare -r BLACK=$'\e[1;30m'
|
---|
| 9 | declare -r DK_GRAY=$'\e[0;30m'
|
---|
| 10 |
|
---|
| 11 | declare -r RED=$'\e[31m'
|
---|
| 12 | declare -r GREEN=$'\e[32m'
|
---|
| 13 | declare -r YELLOW=$'\e[33m'
|
---|
| 14 | declare -r BLUE=$'\e[34m'
|
---|
| 15 | declare -r MAGENTA=$'\e[35m'
|
---|
| 16 | declare -r CYAN=$'\e[36m'
|
---|
| 17 | declare -r WHITE=$'\e[37m'
|
---|
| 18 |
|
---|
| 19 | declare -r OFF=$'\e[0m'
|
---|
| 20 | declare -r BOLD=$'\e[1m'
|
---|
| 21 | declare -r REVERSE=$'\e[7m'
|
---|
| 22 | declare -r HIDDEN=$'\e[8m'
|
---|
| 23 |
|
---|
| 24 | declare -r tab_=$'\t'
|
---|
| 25 | declare -r nl_=$'\n'
|
---|
| 26 |
|
---|
[65d83a6] | 27 | declare -r DD_BORDER="${BOLD}==============================================================================${OFF}"
|
---|
| 28 | declare -r SD_BORDER="${BOLD}------------------------------------------------------------------------------${OFF}"
|
---|
| 29 | declare -r STAR_BORDER="${BOLD}******************************************************************************${OFF}"
|
---|
[0170229] | 30 |
|
---|
| 31 | # bold yellow > < pair
|
---|
| 32 | declare -r R_arrow=$'\e[1;33m>\e[0m'
|
---|
| 33 | declare -r L_arrow=$'\e[1;33m<\e[0m'
|
---|
| 34 |
|
---|
| 35 |
|
---|
| 36 | usage() {
|
---|
| 37 | cat <<- -EOF-
|
---|
| 38 | ${DD_BORDER}
|
---|
| 39 | ${BOLD}
|
---|
| 40 | Usage: $0 ${BOLD}[OPTION]
|
---|
| 41 |
|
---|
[d20c553] | 42 | ${RED}IMPORTANT:${OFF} Only supported command line switches are listed here.
|
---|
| 43 | For more fine-grained setups you must edit the relevant
|
---|
| 44 | configuration files placed under ${BOLD}common/${OFF} and ${BOLD}$(echo $PROGNAME | tr [a-z] [A-Z])/${OFF}
|
---|
| 45 |
|
---|
[0297f33] | 46 | Options:
|
---|
| 47 | ${BOLD} -h, --help${OFF}
|
---|
| 48 | print this help, then exit
|
---|
[b1624ac] | 49 |
|
---|
[0297f33] | 50 | ${BOLD} -V, --version${OFF}
|
---|
[2db0869] | 51 | print version information, then exit
|
---|
[b1624ac] | 52 |
|
---|
| 53 | ${BOLD} -B, --book VER${OFF}
|
---|
[d20c553] | 54 | use VER version of the book as the system to build.
|
---|
| 55 | Supported versions are: dev*, trunk, SVN
|
---|
[25b52e2] | 56 | These are aliases for the Development version of {C,H}LFS
|
---|
[b1624ac] | 57 |
|
---|
[0297f33] | 58 | ${BOLD} -D --directory DIR${OFF}
|
---|
[b1624ac] | 59 | use DIR directory for building ${BOLD}$(echo $PROGNAME | tr [a-z] [A-Z])${OFF}; all files jhalfs-X produces
|
---|
[460ea63] | 60 | will be in the directory DIR/${SCRIPT_ROOT}.
|
---|
[65d83a6] | 61 | The current setting for BUILDDIR is "$BUILDDIR"
|
---|
[b1624ac] | 62 |
|
---|
[0297f33] | 63 | ${BOLD} -G, --get-packages${OFF}
|
---|
[b1624ac] | 64 | download the packages and patches. This assumes that the server declared
|
---|
| 65 | in the configuration file has the proper packages and patches for the
|
---|
| 66 | book version being processed.
|
---|
| 67 |
|
---|
[53588e2] | 68 | ${BOLD} -O, --optimize${OFF}
|
---|
| 69 | Optimize [0-2]
|
---|
| 70 | 0 = no optimization
|
---|
[25b52e2] | 71 | 1 = optimize final system only
|
---|
| 72 | 2 = optimize both temporary tools and final system
|
---|
[53588e2] | 73 | Edit common/opt_config{,.d/*} and common/opt_override as desired.
|
---|
| 74 |
|
---|
[0297f33] | 75 | ${BOLD} -T, --testsuites N ${OFF}
|
---|
| 76 | Run test suites [0-3]
|
---|
| 77 | 0 = none
|
---|
[d20c553] | 78 | 1 = only final system Glibc, GCC and Binutils testsuites
|
---|
| 79 | 2 = all final system testsuites
|
---|
| 80 | 3 = all temporary tools and final system testsuites
|
---|
[b1624ac] | 81 | In CLFS, 3 is an alias to 2
|
---|
| 82 |
|
---|
[0297f33] | 83 | ${BOLD} -W, --working-copy DIR${OFF}
|
---|
[2db0869] | 84 | use the local working copy placed in DIR as the $(echo $PROGNAME | tr [a-z] [A-Z]) book
|
---|
[b1624ac] | 85 |
|
---|
[4612459] | 86 | ${BOLD} -C, --comparasion TYPE${OFF}
|
---|
[d20c553] | 87 | do iterative comparison analysis. This extends the total build time
|
---|
| 88 | considerably because the entire final system will rebuild itself
|
---|
| 89 | the number of times specified by ITERATIONS in common/config.
|
---|
| 90 | Types allowed are:
|
---|
| 91 | ICA = do ICA as designed by Greg Schafer
|
---|
[c58f330] | 92 | farce = do the farce analysis designed by Ken Moffat
|
---|
| 93 | both = perfom both ICA and farce analysis
|
---|
[42346b2] | 94 |
|
---|
[0297f33] | 95 | ${BOLD} -F, --fstab FILE${OFF}
|
---|
| 96 | use FILE as the /etc/fstab file for the ${BOLD}$(echo $PROGNAME | tr [a-z] [A-Z])${OFF} system. If not specified,
|
---|
| 97 | a default /etc/fstab file with dummy values is created.
|
---|
[b1624ac] | 98 |
|
---|
[0297f33] | 99 | ${BOLD} -K, --kernel-config FILE${OFF}
|
---|
| 100 | use the kernel configuration file specified in FILE to build the kernel.
|
---|
| 101 | if the file is not found, or if not specified, the kernel build is skipped.
|
---|
[b1624ac] | 102 |
|
---|
[0297f33] | 103 | ${BOLD} -M, --run-make${OFF}
|
---|
| 104 | run make on the generated Makefile
|
---|
[b1624ac] | 105 |
|
---|
| 106 | ${BOLD} -R --rebuild${OFF}
|
---|
[d20c553] | 107 | clean the build directory before perfoming any other task. The directory
|
---|
[b1624ac] | 108 | is cleaned only if it was populated by a previous jhalfs-X run.
|
---|
[0297f33] | 109 | -EOF-
|
---|
| 110 |
|
---|
| 111 | [[ ${PROGNAME} = "clfs" ]] &&
|
---|
| 112 | cat <<- -EOF-
|
---|
[e794f06] | 113 |
|
---|
[0297f33] | 114 | ${BOLD} -A, --arch ARCH ${OFF}
|
---|
| 115 | Select the TARGET architecture, valid selections are:
|
---|
| 116 | 32bit builds
|
---|
[fe187bf] | 117 | x86, i486, i586, ppc, mips, mipsel, sparc
|
---|
[0297f33] | 118 | 64bit builds
|
---|
| 119 | x86_64-64, mips64-64, mipsel64-64, sparc64-64, alpha
|
---|
| 120 | 64bit multi-lib
|
---|
| 121 | x86_64, mips64, mipsel64, sparc64, ppc64
|
---|
[b1624ac] | 122 |
|
---|
[a702b4d] | 123 | ${BOLD} --boot-config FILE ${OFF}
|
---|
[0297f33] | 124 | The configuration file for the bootstrap kernel if method=boot
|
---|
[b1624ac] | 125 |
|
---|
| 126 | ${BOLD} --method BUILDMETHOD ${OFF}
|
---|
| 127 | Select the build method, chroot or boot
|
---|
[0297f33] | 128 | -EOF-
|
---|
| 129 |
|
---|
| 130 | [[ ${PROGNAME} = "hlfs" ]] &&
|
---|
| 131 | cat <<- -EOF-
|
---|
[e794f06] | 132 |
|
---|
[0297f33] | 133 | ${BOLD} --model STYLE ${OFF}
|
---|
| 134 | Select the library model for the HLFS system
|
---|
[6afdfcc] | 135 | Valid choices are: glibc or uclibc
|
---|
[0297f33] | 136 | -EOF-
|
---|
[0170229] | 137 |
|
---|
[e794f06] | 138 | cat <<- -EOF-
|
---|
[0170229] | 139 | ${DD_BORDER}
|
---|
| 140 | -EOF-
|
---|
| 141 | exit
|
---|
| 142 | }
|
---|
| 143 |
|
---|
| 144 | version="
|
---|
[6608a67] | 145 | ${BOLD} \"jhalfs-X\"${OFF} builder tool (experimental) \$Rev$
|
---|
[6afdfcc] | 146 | \$Date$
|
---|
| 147 |
|
---|
| 148 | ${BOLD} \"${PROGNAME}\"${OFF} script module
|
---|
[0170229] | 149 |
|
---|
[67e3bc3] | 150 | Written by George Boudreau,
|
---|
[6afdfcc] | 151 | Manuel Canales Esparcia,
|
---|
[67e3bc3] | 152 | Jeremy Huntwork
|
---|
[0170229] | 153 |
|
---|
| 154 | This program is published under the ${BOLD}Gnu General Public License, Version 2.${OFF}
|
---|
| 155 | "
|
---|
| 156 |
|
---|
| 157 |
|
---|
| 158 | no_empty_builddir() {
|
---|
| 159 | 'clear'
|
---|
| 160 | cat <<- -EOF-
|
---|
| 161 | ${DD_BORDER}
|
---|
| 162 |
|
---|
| 163 | ${tab_}${tab_}${BOLD}${RED}W A R N I N G${OFF}
|
---|
| 164 | Looks like the \$BUILDDIR directory contains subdirectories
|
---|
| 165 | from a previous HLFS build.
|
---|
| 166 |
|
---|
| 167 | Please format the partition mounted on \$BUILDDIR or set
|
---|
[60b56fd] | 168 | a different build directory before running jhalfs-X.
|
---|
[0170229] | 169 | ${OFF}
|
---|
| 170 | ${DD_BORDER}
|
---|
| 171 | -EOF-
|
---|
| 172 | exit
|
---|
| 173 | }
|
---|
| 174 |
|
---|
| 175 |
|
---|
| 176 | help="${nl_}Try '$0 --help' for more information."
|
---|
| 177 |
|
---|
| 178 | exit_missing_arg="\
|
---|
| 179 | echo \"Option '\$1' requires an argument\" >&2
|
---|
| 180 | echo \"\$help\" >&2
|
---|
| 181 | exit 1"
|
---|
| 182 |
|
---|
[60b56fd] | 183 | HEADER="# This file is automatically generated by jhalfs-X
|
---|
[0170229] | 184 | # DO NOT EDIT THIS FILE MANUALLY
|
---|
| 185 | #
|
---|
| 186 | # Generated on `date \"+%F %X %Z\"`"
|
---|
| 187 |
|
---|
| 188 |
|
---|
| 189 |
|
---|
| 190 | #----------------------------------#
|
---|
[5359c48] | 191 | wrt_target() { # Create target and initialize log file
|
---|
[0170229] | 192 | #----------------------------------#
|
---|
| 193 | local i=$1
|
---|
| 194 | local PREV=$2
|
---|
[b414549] | 195 | case $i in
|
---|
| 196 | iteration* ) local LOGFILE=$this_script.log ;;
|
---|
| 197 | * ) local LOGFILE=$this_script ;;
|
---|
| 198 | esac
|
---|
[0170229] | 199 | (
|
---|
| 200 | cat << EOF
|
---|
| 201 |
|
---|
| 202 | $i: $PREV
|
---|
| 203 | @\$(call echo_message, Building)
|
---|
[460ea63] | 204 | @./progress_bar.sh \$@ &
|
---|
| 205 | @echo -e "\n\`date\`\n\nKB: \`du -skx --exclude=${SCRIPT_ROOT} \$(MOUNT_PT)\`\n" >logs/$LOGFILE
|
---|
[0170229] | 206 | EOF
|
---|
| 207 | ) >> $MKFILE.tmp
|
---|
| 208 | }
|
---|
| 209 |
|
---|
| 210 |
|
---|
[460ea63] | 211 | #----------------------------------#
|
---|
| 212 | wrt_remove_existing_dirs() { #
|
---|
| 213 | #----------------------------------#
|
---|
| 214 | local PKG_NAME=$1
|
---|
| 215 | (
|
---|
| 216 | cat << EOF
|
---|
| 217 | @PKG_PATH=\`ls -t \$(MOUNT_PT)\$(SRC)/${PKG_NAME} | head -n1\` && \\
|
---|
| 218 | ROOT=\`tar -tf \$\$PKG_PATH | head -n1 | sed -e 's@^./@@;s@/.*@@'\` && \\
|
---|
| 219 | [[ -n \$\$ROOT ]] && \\
|
---|
| 220 | rm -rf \$(MOUNT_PT)\$(SRC)/\$\$ROOT && \\
|
---|
[9199a13] | 221 | if [ -e \$(MOUNT_PT)\$(SRC)/${PKG_NAME%-*}-build ]; then \\
|
---|
| 222 | rm -rf \$(MOUNT_PT)\$(SRC)/${PKG_NAME%-*}-build; \\
|
---|
[460ea63] | 223 | fi;
|
---|
| 224 | EOF
|
---|
| 225 | ) >> $MKFILE.tmp
|
---|
| 226 | }
|
---|
| 227 |
|
---|
| 228 | #----------------------------------#
|
---|
| 229 | wrt_remove_existing_dirs2() { #
|
---|
| 230 | #----------------------------------#
|
---|
| 231 | local PKG_NAME=$1
|
---|
| 232 | (
|
---|
| 233 | cat << EOF
|
---|
| 234 | @PKG_PATH=\`ls -t \$(SRC)/${PKG_NAME} | head -n1\` && \\
|
---|
| 235 | ROOT=\`tar -tf \$\$PKG_PATH | head -n1 | sed -e 's@^./@@;s@/.*@@'\` && \\
|
---|
| 236 | [[ -n \$\$ROOT ]] && \\
|
---|
| 237 | rm -rf \$(SRC)/\$\$ROOT && \\
|
---|
[9199a13] | 238 | if [ -e \$(SRC)/${PKG_NAME%-*}-build ]; then \\
|
---|
| 239 | rm -rf \$(SRC)/${PKG_NAME%-*}-build; \\
|
---|
[460ea63] | 240 | fi;
|
---|
| 241 | EOF
|
---|
| 242 | ) >> $MKFILE.tmp
|
---|
| 243 | }
|
---|
| 244 |
|
---|
| 245 |
|
---|
| 246 |
|
---|
[0170229] | 247 | #----------------------------------#
|
---|
[60b56fd] | 248 | wrt_unpack() { # Unpack and set 'ROOT' var
|
---|
[0170229] | 249 | #----------------------------------#
|
---|
| 250 | local FILE=$1
|
---|
[460ea63] | 251 | local optSAVE_PREVIOUS=$2
|
---|
| 252 |
|
---|
| 253 | if [ "${optSAVE_PREVIOUS}" != "1" ]; then
|
---|
| 254 | wrt_remove_existing_dirs "$FILE"
|
---|
| 255 | fi
|
---|
[0170229] | 256 | (
|
---|
| 257 | cat << EOF
|
---|
| 258 | @\$(call unpack,$FILE)
|
---|
[460ea63] | 259 | @ROOT=\`head -n1 \$(MOUNT_PT)\$(SRC)/\$(PKG_LST) | sed 's@^./@@;s@/.*@@'\` && \\
|
---|
[0170229] | 260 | echo "export PKGDIR=\$(MOUNT_PT)\$(SRC)/\$\$ROOT" > envars && \\
|
---|
[2fbc503] | 261 | chown -R lfs \$(MOUNT_PT)\$(SRC)/\$\$ROOT
|
---|
[0170229] | 262 | EOF
|
---|
| 263 | ) >> $MKFILE.tmp
|
---|
| 264 | }
|
---|
| 265 |
|
---|
| 266 |
|
---|
| 267 | #----------------------------------#
|
---|
| 268 | wrt_unpack2() { #
|
---|
| 269 | #----------------------------------#
|
---|
| 270 | local FILE=$1
|
---|
[460ea63] | 271 | local optSAVE_PREVIOUS=$2
|
---|
| 272 |
|
---|
| 273 | if [ "${optSAVE_PREVIOUS}" != "1" ]; then
|
---|
| 274 | wrt_remove_existing_dirs "$FILE"
|
---|
| 275 | fi
|
---|
[0170229] | 276 | (
|
---|
| 277 | cat << EOF
|
---|
| 278 | @\$(call unpack2,$FILE)
|
---|
[e35e794] | 279 | @ROOT=\`head -n1 \$(MOUNT_PT)\$(SRC)/\$(PKG_LST) | sed 's@^./@@;s@/.*@@'\` && \\
|
---|
[0170229] | 280 | echo "export PKGDIR=\$(SRC)/\$\$ROOT" > envars
|
---|
| 281 | EOF
|
---|
| 282 | ) >> $MKFILE.tmp
|
---|
| 283 | }
|
---|
| 284 |
|
---|
| 285 |
|
---|
[65d83a6] | 286 | #----------------------------------#
|
---|
| 287 | wrt_unpack3() { #
|
---|
| 288 | #----------------------------------#
|
---|
[0170229] | 289 | local FILE=$1
|
---|
[460ea63] | 290 | local optSAVE_PREVIOUS=$2
|
---|
| 291 |
|
---|
| 292 | if [ "${optSAVE_PREVIOUS}" != "1" ]; then
|
---|
| 293 | wrt_remove_existing_dirs2 "$FILE"
|
---|
| 294 | fi
|
---|
[0170229] | 295 | (
|
---|
| 296 | cat << EOF
|
---|
[c3c4e1d] | 297 | @\$(call unpack3,$FILE)
|
---|
[460ea63] | 298 | @ROOT=\`head -n1 \$(SRC)/\$(PKG_LST) | sed 's@^./@@;s@/.*@@'\` && \\
|
---|
[0170229] | 299 | echo "export PKGDIR=\$(SRC)/\$\$ROOT" > envars
|
---|
| 300 | EOF
|
---|
| 301 | ) >> $MKFILE.tmp
|
---|
| 302 | }
|
---|
| 303 |
|
---|
[e35e794] | 304 | #----------------------------------#
|
---|
| 305 | wrt_test_log() { # Initialize testsuite log file
|
---|
| 306 | #----------------------------------#
|
---|
| 307 | local TESTLOGFILE=$1
|
---|
| 308 | (
|
---|
| 309 | cat << EOF
|
---|
| 310 | @echo "export TEST_LOG=$TESTLOGDIR/$TESTLOGFILE" >> envars && \\
|
---|
| 311 | su - lfs -c "echo -e '\n\`date\`\n' >$TESTLOGDIR/$TESTLOGFILE"
|
---|
| 312 | EOF
|
---|
| 313 | ) >> $MKFILE.tmp
|
---|
| 314 | }
|
---|
| 315 |
|
---|
| 316 | #----------------------------------#
|
---|
| 317 | wrt_test_log2() { #
|
---|
| 318 | #----------------------------------#
|
---|
| 319 | local TESTLOGFILE=$1
|
---|
| 320 | (
|
---|
| 321 | cat << EOF
|
---|
| 322 | @echo "export TEST_LOG=/$SCRIPT_ROOT/test-logs/$TESTLOGFILE" >> envars && \\
|
---|
| 323 | echo -e "\n\`date\`\n" >test-logs/$TESTLOGFILE
|
---|
| 324 | EOF
|
---|
| 325 | ) >> $MKFILE.tmp
|
---|
| 326 | }
|
---|
| 327 |
|
---|
[0170229] | 328 | #----------------------------------#
|
---|
| 329 | wrt_target_vars() { # Target vars for hlfs (cross-build method)
|
---|
| 330 | #----------------------------------#
|
---|
| 331 | (
|
---|
| 332 | cat << EOF
|
---|
[7d018d1] | 333 | @echo "export target=$(uname -m)-${TARGET}" >> envars && \\
|
---|
[0170229] | 334 | echo "export ldso=/lib/${LOADER}" >> envars
|
---|
| 335 | EOF
|
---|
| 336 | ) >> $MKFILE.tmp
|
---|
| 337 |
|
---|
| 338 | }
|
---|
| 339 |
|
---|
| 340 |
|
---|
| 341 | #----------------------------------#
|
---|
[5359c48] | 342 | wrt_run_as_su() { # Execute script inside time { }, footer to log file
|
---|
[0170229] | 343 | #----------------------------------#
|
---|
| 344 | local this_script=$1
|
---|
| 345 | local file=$2
|
---|
| 346 | (
|
---|
| 347 | cat << EOF
|
---|
[5359c48] | 348 | @( time { su - lfs -c "source /home/lfs/.bashrc && $JHALFSDIR/${PROGNAME}-commands/$file" >>logs/$this_script 2>&1 ; } ) 2>>logs/$this_script && \\
|
---|
[460ea63] | 349 | echo -e "\nKB: \`du -skx --exclude=${SCRIPT_ROOT} \$(MOUNT_PT)\`\n" >>logs/$this_script
|
---|
[0170229] | 350 | EOF
|
---|
| 351 | ) >> $MKFILE.tmp
|
---|
| 352 | }
|
---|
| 353 |
|
---|
| 354 |
|
---|
| 355 | #----------------------------------#
|
---|
[5359c48] | 356 | wrt_run_as_root() { # Some scripts must be run as root..
|
---|
[0170229] | 357 | #----------------------------------#
|
---|
| 358 | local this_script=$1
|
---|
| 359 | local file=$2
|
---|
| 360 | (
|
---|
| 361 | cat << EOF
|
---|
[5359c48] | 362 | @( time { export LFS=\$(MOUNT_PT) && ${PROGNAME}-commands/$file >>logs/$this_script 2>&1 ; } ) 2>>logs/$this_script && \\
|
---|
[460ea63] | 363 | echo -e "\nKB: \`du -skx --exclude=${SCRIPT_ROOT} \$(MOUNT_PT)\`\n" >>logs/$this_script
|
---|
[0170229] | 364 | EOF
|
---|
| 365 | ) >> $MKFILE.tmp
|
---|
| 366 | }
|
---|
| 367 |
|
---|
| 368 |
|
---|
[65d83a6] | 369 | #----------------------------------#
|
---|
| 370 | wrt_run_as_root2() { #
|
---|
| 371 | #----------------------------------#
|
---|
[0170229] | 372 | local this_script=$1
|
---|
| 373 | local file=$2
|
---|
| 374 | (
|
---|
| 375 | cat << EOF
|
---|
[5359c48] | 376 | @( time { source envars && ${PROGNAME}-commands/$file >>logs/$this_script 2>&1 ; } ) 2>>logs/$this_script && \\
|
---|
[460ea63] | 377 | echo -e "\nKB: \`du -skx --exclude=${SCRIPT_ROOT} \`\n" >>logs/$this_script
|
---|
[0170229] | 378 | EOF
|
---|
| 379 | ) >> $MKFILE.tmp
|
---|
| 380 | }
|
---|
| 381 |
|
---|
| 382 |
|
---|
| 383 |
|
---|
| 384 | #----------------------------------#
|
---|
| 385 | wrt_run_as_chroot1() { #
|
---|
| 386 | #----------------------------------#
|
---|
| 387 | local this_script=$1
|
---|
| 388 | local file=$2
|
---|
| 389 | (
|
---|
| 390 | cat << EOF
|
---|
[460ea63] | 391 | @( time { \$(CHROOT1) 'cd /${SCRIPT_ROOT} && source envars && /${SCRIPT_ROOT}/${PROGNAME}-commands/$file >>/${SCRIPT_ROOT}/logs/${this_script} 2>&1' ; } ) 2>>logs/$this_script && \\
|
---|
| 392 | echo -e "\nKB: \`du -skx --exclude=${SCRIPT_ROOT} \$(MOUNT_PT)\`\n" >>logs/${this_script}
|
---|
[0170229] | 393 | EOF
|
---|
| 394 | ) >> $MKFILE.tmp
|
---|
| 395 | }
|
---|
| 396 |
|
---|
| 397 |
|
---|
| 398 | #----------------------------------#
|
---|
| 399 | wrt_run_as_chroot2() { #
|
---|
| 400 | #----------------------------------#
|
---|
| 401 | local this_script=$1
|
---|
| 402 | local file=$2
|
---|
| 403 | (
|
---|
| 404 | cat << EOF
|
---|
[460ea63] | 405 | @( time { \$(CHROOT2) 'cd /${SCRIPT_ROOT} && source envars && /${SCRIPT_ROOT}/${PROGNAME}-commands/$file >>/${SCRIPT_ROOT}/logs/${this_script} 2>&1' ; } ) 2>>logs/$this_script && \\
|
---|
| 406 | echo -e "\nKB: \`du -skx --exclude=${SCRIPT_ROOT} \$(MOUNT_PT)\`\n" >>logs/${this_script}
|
---|
[0170229] | 407 | EOF
|
---|
| 408 | ) >> $MKFILE.tmp
|
---|
| 409 | }
|
---|
| 410 |
|
---|
| 411 |
|
---|
| 412 | #----------------------------------#
|
---|
| 413 | wrt_copy_fstab() { #
|
---|
| 414 | #----------------------------------#
|
---|
| 415 | local i=$1
|
---|
| 416 | (
|
---|
| 417 | cat << EOF
|
---|
[5359c48] | 418 | @cp -v $FSTAB \$(MOUNT_PT)/etc/fstab >>logs/$i 2>&1
|
---|
[0170229] | 419 | EOF
|
---|
| 420 | ) >> $MKFILE.tmp
|
---|
| 421 | }
|
---|
| 422 |
|
---|
| 423 | #----------------------------------#
|
---|
[5359c48] | 424 | wrt_copy_fstab2() { #
|
---|
[0170229] | 425 | #----------------------------------#
|
---|
| 426 | local i=$1
|
---|
| 427 | (
|
---|
| 428 | cat << EOF
|
---|
[5359c48] | 429 | @cp -v /sources/fstab /etc/fstab >>logs/$i 2>&1
|
---|
[0170229] | 430 | EOF
|
---|
| 431 | ) >> $MKFILE.tmp
|
---|
| 432 | }
|
---|
| 433 |
|
---|
| 434 |
|
---|
| 435 | #----------------------------------#
|
---|
[5359c48] | 436 | wrt_remove_build_dirs() { #
|
---|
[0170229] | 437 | #----------------------------------#
|
---|
[5359c48] | 438 | local name=$1
|
---|
[0170229] | 439 | (
|
---|
[5359c48] | 440 | cat << EOF
|
---|
[460ea63] | 441 | @ROOT=\`head -n1 \$(MOUNT_PT)\$(SRC)/\$(PKG_LST) | sed 's@^./@@;s@/.*@@'\` && \\
|
---|
[5359c48] | 442 | rm -r \$(MOUNT_PT)\$(SRC)/\$\$ROOT && \\
|
---|
| 443 | if [ -e \$(MOUNT_PT)\$(SRC)/$name-build ]; then \\
|
---|
| 444 | rm -r \$(MOUNT_PT)\$(SRC)/$name-build; \\
|
---|
| 445 | fi;
|
---|
| 446 | EOF
|
---|
| 447 | ) >> $MKFILE.tmp
|
---|
| 448 | }
|
---|
| 449 |
|
---|
| 450 |
|
---|
| 451 | #----------------------------------#
|
---|
| 452 | wrt_remove_build_dirs2() { #
|
---|
| 453 | #----------------------------------#
|
---|
| 454 | local name=$1
|
---|
| 455 | (
|
---|
| 456 | cat << EOF
|
---|
[460ea63] | 457 | @ROOT=\`head -n1 \$(SRC)/\$(PKG_LST) | sed 's@^./@@;s@/.*@@'\` && \\
|
---|
[5359c48] | 458 | rm -r \$(SRC)/\$\$ROOT && \\
|
---|
| 459 | if [ -e \$(SRC)/$name-build ]; then \\
|
---|
| 460 | rm -r \$(SRC)/$name-build; \\
|
---|
| 461 | fi;
|
---|
[0170229] | 462 | EOF
|
---|
| 463 | ) >> $MKFILE.tmp
|
---|
| 464 | }
|
---|
| 465 |
|
---|
| 466 |
|
---|
[9199a13] | 467 | #----------------------------------#
|
---|
| 468 | wrt_touch() { #
|
---|
| 469 | #----------------------------------#
|
---|
| 470 | (
|
---|
| 471 | cat << EOF
|
---|
| 472 | @touch \$@ && \\
|
---|
| 473 | sleep .25 && \\
|
---|
| 474 | echo -e "\n\n "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
|
---|
| 475 | echo --------------------------------------------------------------------------------\$(WHITE)
|
---|
| 476 | EOF
|
---|
| 477 | ) >> $MKFILE.tmp
|
---|
| 478 | }
|
---|
| 479 |
|
---|
| 480 |
|
---|
[9e4b9a1] | 481 | #----------------------------------#
|
---|
[65d83a6] | 482 | wrt_report() { #
|
---|
[9e4b9a1] | 483 | #----------------------------------#
|
---|
| 484 | (
|
---|
| 485 | cat << EOF
|
---|
| 486 |
|
---|
| 487 | create-sbu_du-report: $PREV
|
---|
| 488 | @\$(call echo_message, Building)
|
---|
[3cc7540] | 489 | @./create-sbu_du-report.sh logs $VERSION
|
---|
[9e4b9a1] | 490 | @\$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report)
|
---|
| 491 | @touch \$@
|
---|
| 492 | EOF
|
---|
| 493 | ) >> $MKFILE.tmp
|
---|
| 494 |
|
---|
| 495 | chapter789="$chapter789 create-sbu_du-report"
|
---|
| 496 | }
|
---|
| 497 |
|
---|
| 498 |
|
---|
[0170229] | 499 | #----------------------------#
|
---|
[65d83a6] | 500 | run_make() { #
|
---|
[0170229] | 501 | #----------------------------#
|
---|
| 502 | # Test if make must be run.
|
---|
| 503 | if [ "$RUNMAKE" = "1" ] ; then
|
---|
| 504 | # Test to make sure we're running the build as root
|
---|
| 505 | if [ "$UID" != "0" ] ; then
|
---|
[60b56fd] | 506 | echo "You must be logged in as root to successfully build the system."
|
---|
[0170229] | 507 | exit 1
|
---|
| 508 | fi
|
---|
| 509 | # Build the system
|
---|
| 510 | if [ -e $MKFILE ] ; then
|
---|
[60b56fd] | 511 | echo -ne "Building the system...\n"
|
---|
[54b4b32] | 512 | cd $JHALFSDIR && make
|
---|
[0170229] | 513 | echo -ne "done\n"
|
---|
| 514 | fi
|
---|
| 515 | fi
|
---|
| 516 | }
|
---|
| 517 |
|
---|
| 518 |
|
---|
| 519 | #----------------------------#
|
---|
[65d83a6] | 520 | clean_builddir() { #
|
---|
[0170229] | 521 | #----------------------------#
|
---|
| 522 | # Test if the clean must be done.
|
---|
| 523 | if [ "$CLEAN" = "1" ] ; then
|
---|
| 524 | # Test to make sure we're running the clean as root
|
---|
| 525 | if [ "$UID" != "0" ] ; then
|
---|
| 526 | echo "You must be logged in as root to clean the build directory."
|
---|
| 527 | exit 1
|
---|
| 528 | fi
|
---|
| 529 | # Test to make sure that the build directory was populated by jhalfs
|
---|
| 530 | if [ ! -d $JHALFSDIR ] || [ ! -d $BUILDDIR/sources ] ; then
|
---|
[60b56fd] | 531 | echo "Looks like $BUILDDIR was not populated by a previous jhalfs-X run."
|
---|
[0170229] | 532 | exit 1
|
---|
| 533 | else
|
---|
| 534 | # Clean the build directory
|
---|
| 535 | echo -ne "Cleaning $BUILDDIR...\n"
|
---|
[3465451] | 536 | rm -rf $BUILDDIR/{bin,boot,dev,etc,home,lib,media,mnt,opt,proc,root,sbin,srv,sys,tmp,tools,cross-tools,usr,var}
|
---|
[0170229] | 537 | echo -ne "Cleaning $JHALFSDIR...\n"
|
---|
[3465451] | 538 | rm -rf $JHALFSDIR/{0*,1*,envars,sources-dir,*commands,logs,Makefile,*.xsl,makefile-functions,packages,patches}
|
---|
[0170229] | 539 | echo -ne "Cleaning remainig extracted sources in $BUILDDIR/sources...\n"
|
---|
| 540 | rm -rf `find $BUILDDIR/sources/* -maxdepth 0 -type d`
|
---|
| 541 | echo -ne "done\n"
|
---|
| 542 | fi
|
---|
| 543 | fi
|
---|
| 544 | }
|
---|
| 545 |
|
---|
| 546 | #----------------------------#
|
---|
[65d83a6] | 547 | get_book() { #
|
---|
[0170229] | 548 | #----------------------------#
|
---|
| 549 | cd $JHALFSDIR
|
---|
| 550 |
|
---|
| 551 | if [ -z $WC ] ; then
|
---|
| 552 | # Check for Subversion instead of just letting the script hit 'svn' and fail.
|
---|
| 553 | test `type -p svn` || eval "echo \"This feature requires Subversion.\"
|
---|
| 554 | exit 1"
|
---|
| 555 | echo -n "Downloading the $PROGNAME document, $LFSVRS version... "
|
---|
| 556 |
|
---|
| 557 | case $PROGNAME in
|
---|
| 558 | lfs) svn_root="LFS" ;;
|
---|
| 559 | hlfs) svn_root="HLFS" ;;
|
---|
| 560 | clfs) svn_root="cross-lfs" ;;
|
---|
| 561 | *) echo "BOOK not defined in function <get_book>"
|
---|
| 562 | exit 1 ;;
|
---|
| 563 | esac
|
---|
[60b56fd] | 564 | # Grab a fresh book if it's missing, otherwise, update it from the
|
---|
[0170229] | 565 | # repo. If we've already extracted the commands, move on to getting the
|
---|
| 566 | # sources.
|
---|
| 567 | if [ -d ${PROGNAME}-$LFSVRS ] ; then
|
---|
| 568 | cd ${PROGNAME}-$LFSVRS
|
---|
[65d83a6] | 569 | if LC_ALL=C svn up | grep -q At && test -d $JHALFSDIR/${PROGNAME}-commands && \
|
---|
| 570 | test -f $JHALFSDIR/packages ; then
|
---|
[0170229] | 571 | echo -ne "done\n"
|
---|
| 572 | # Set the canonical book version
|
---|
| 573 | cd $JHALFSDIR
|
---|
| 574 | VERSION=`grep "ENTITY version " $BOOK/general.ent | sed 's@<!ENTITY version "@@;s@">@@'`
|
---|
| 575 | get_sources
|
---|
| 576 | else
|
---|
| 577 | echo -ne "done\n"
|
---|
| 578 | # Set the canonical book version
|
---|
| 579 | cd $JHALFSDIR
|
---|
| 580 | VERSION=`grep "ENTITY version " $BOOK/general.ent | sed 's@<!ENTITY version "@@;s@">@@'`
|
---|
| 581 | extract_commands
|
---|
| 582 | fi
|
---|
| 583 | else
|
---|
| 584 | case $LFSVRS in
|
---|
[60b56fd] | 585 | development)
|
---|
[0170229] | 586 | svn co $SVN/${svn_root}/trunk/BOOK ${PROGNAME}-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;;
|
---|
| 587 | esac
|
---|
| 588 | echo -ne "done\n"
|
---|
| 589 | # Set the canonical book version
|
---|
| 590 | cd $JHALFSDIR
|
---|
| 591 | VERSION=`grep "ENTITY version " $BOOK/general.ent | sed 's@<!ENTITY version "@@;s@">@@'`
|
---|
| 592 | extract_commands
|
---|
| 593 | fi
|
---|
| 594 | else
|
---|
| 595 | echo -ne "Using $BOOK as book's sources ...\n"
|
---|
| 596 | # Set the canonical book version
|
---|
| 597 | cd $JHALFSDIR
|
---|
| 598 | VERSION=`grep "ENTITY version " $BOOK/general.ent | sed 's@<!ENTITY version "@@;s@">@@'`
|
---|
| 599 | extract_commands
|
---|
| 600 | fi
|
---|
| 601 | }
|
---|
| 602 |
|
---|
| 603 | #----------------------------#
|
---|
| 604 | extract_commands() { #
|
---|
| 605 | #----------------------------#
|
---|
[9e1915a] | 606 |
|
---|
[0170229] | 607 | # Check for libxslt instead of just letting the script hit 'xsltproc' and fail.
|
---|
| 608 | test `type -p xsltproc` || eval "echo \"This feature requires libxslt.\"
|
---|
| 609 | exit 1"
|
---|
| 610 |
|
---|
| 611 | cd $JHALFSDIR
|
---|
| 612 | VERSION=`grep "ENTITY version " $BOOK/general.ent | sed 's@<!ENTITY version "@@;s@">@@'`
|
---|
| 613 |
|
---|
| 614 | # Start clean
|
---|
[3e3e28b] | 615 | if [ -d ${PROGNAME}-commands ]; then
|
---|
| 616 | rm -rf ${PROGNAME}-commands
|
---|
| 617 | mkdir -v ${PROGNAME}-commands
|
---|
[0170229] | 618 | fi
|
---|
[bef0a98] | 619 | echo -n "Extracting commands for"
|
---|
[0170229] | 620 |
|
---|
| 621 | # Dump the commands in shell script form from the HLFS book.
|
---|
| 622 | case ${PROGNAME} in
|
---|
| 623 | clfs)
|
---|
[9c90294] | 624 | echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture"
|
---|
[e676ffa] | 625 | xsltproc --nonet \
|
---|
| 626 | --xinclude \
|
---|
| 627 | --stringparam method $METHOD \
|
---|
| 628 | --stringparam testsuite $TEST \
|
---|
| 629 | --stringparam vim-lang $VIMLANG \
|
---|
| 630 | --stringparam timezone $TIMEZONE \
|
---|
| 631 | --stringparam page $PAGE \
|
---|
| 632 | --stringparam lang $LANG \
|
---|
| 633 | --stringparam keymap $KEYMAP \
|
---|
[a9490ab] | 634 | -o ./${PROGNAME}-commands/ $XSL $BOOK/$ARCH-index.xml >>$LOGDIR/$LOG 2>&1
|
---|
[0170229] | 635 | ;;
|
---|
| 636 | hlfs)
|
---|
[60b56fd] | 637 | echo -n " ${L_arrow}${BOLD}$MODEL${R_arrow} HLFS libc implementation"
|
---|
[ad71d98] | 638 | xsltproc --nonet \
|
---|
| 639 | --xinclude \
|
---|
| 640 | --stringparam model $MODEL \
|
---|
| 641 | --stringparam testsuite $TEST \
|
---|
| 642 | --stringparam timezone $TIMEZONE \
|
---|
| 643 | --stringparam page $PAGE \
|
---|
[d87b293] | 644 | --stringparam lang $LANG \
|
---|
| 645 | --stringparam lc_all $LC_ALL \
|
---|
[ad71d98] | 646 | --stringparam keymap $KEYMAP \
|
---|
| 647 | --stringparam grsecurity_host $GRSECURITY_HOST \
|
---|
| 648 | -o ./${PROGNAME}-commands/ $XSL $BOOK/index.xml >>$LOGDIR/$LOG 2>&1
|
---|
[0170229] | 649 | ;;
|
---|
| 650 | lfs)
|
---|
[9c90294] | 651 | echo -n " ${L_arrow}${BOLD}LFS${R_arrow} build"
|
---|
[0170229] | 652 | xsltproc --nonet \
|
---|
| 653 | --xinclude \
|
---|
| 654 | --stringparam testsuite $TEST \
|
---|
| 655 | --stringparam vim-lang $VIMLANG \
|
---|
[ad71d98] | 656 | --stringparam timezone $TIMEZONE \
|
---|
| 657 | --stringparam page $PAGE \
|
---|
[d87b293] | 658 | --stringparam lang $LANG \
|
---|
[0170229] | 659 | -o ./${PROGNAME}-commands/ $XSL $BOOK/index.xml >>$LOGDIR/$LOG 2>&1
|
---|
| 660 | ;;
|
---|
[3e7af38] | 661 | *) exit 1 ;;
|
---|
[0170229] | 662 | esac
|
---|
[dd810ea] | 663 |
|
---|
[bef0a98] | 664 | echo " ...OK"
|
---|
[0170229] | 665 |
|
---|
| 666 | # Make the scripts executable.
|
---|
| 667 | chmod -R +x $JHALFSDIR/${PROGNAME}-commands
|
---|
| 668 |
|
---|
[3e7af38] | 669 | # Create the packages file. We need it for proper Makefile creation
|
---|
| 670 | rm -f packages
|
---|
[25b52e2] | 671 | echo -n "Creating <${PROGNAME}> specific packages file"
|
---|
| 672 | grep "\-version " $BOOK/packages.ent | sed -e 's@<!ENTITY @@' \
|
---|
| 673 | -e 's@">@"@' > packages
|
---|
| 674 | echo " ...OK"
|
---|
[0170229] | 675 |
|
---|
| 676 | # Done. Moving on...
|
---|
| 677 | get_sources
|
---|
| 678 | }
|
---|
| 679 |
|
---|
| 680 | #----------------------------#
|
---|
[3e7af38] | 681 | get_sources() { # Download file, write name to MISSING_FILES.DMP if an error
|
---|
[0170229] | 682 | #----------------------------#
|
---|
[3e7af38] | 683 | local saveIFS=$IFS
|
---|
[7a100d96] | 684 | local IFS line URL1 URL2 FILE BOOKMD5 MD5 HAVEMD5 fromARCHIVE
|
---|
[65d83a6] | 685 |
|
---|
| 686 | # Test if the packages must be downloaded
|
---|
| 687 | [ ! "$GETPKG" = "1" ] && return
|
---|
| 688 |
|
---|
| 689 | gs_wrt_message(){
|
---|
| 690 | echo "${RED}$1${OFF}"
|
---|
| 691 | echo "$1" >> MISSING_FILES.DMP
|
---|
| 692 | }
|
---|
| 693 | # Housekeeping
|
---|
| 694 | [[ ! -d $BUILDDIR/sources ]] && mkdir $BUILDDIR/sources
|
---|
| 695 | cd $BUILDDIR/sources
|
---|
| 696 | [[ -f MD5SUMS ]] && rm MD5SUMS
|
---|
| 697 | [[ -f MISSING_FILES.DMP ]] && rm MISSING_FILES.DMP
|
---|
| 698 | [[ -f urls.lst ]] && rm urls.lst
|
---|
[3e7af38] | 699 |
|
---|
| 700 | # Generate URLs file
|
---|
[65d83a6] | 701 | create_urls
|
---|
[3e7af38] | 702 |
|
---|
[65d83a6] | 703 | IFS=$'\x0A' # Modify the 'internal field separator' to break on 'LF' only
|
---|
| 704 | for line in `cat urls.lst`; do
|
---|
| 705 | IFS=$saveIFS # Restore the system defaults
|
---|
[3e7af38] | 706 |
|
---|
| 707 | # Skip some packages if they aren't needed
|
---|
[65d83a6] | 708 | case $line in
|
---|
[3e7af38] | 709 | */tcl* | */expect* | */dejagnu* | */tree* | */gcc-testsuite* )
|
---|
| 710 | [[ "$TEST" = "0" ]] && continue
|
---|
| 711 | ;;
|
---|
| 712 | */vim-*-lang* )
|
---|
| 713 | [[ "$VIMLANG" = "0" ]] && continue
|
---|
| 714 | ;;
|
---|
[3a27393] | 715 | *linux/linux-* )
|
---|
[34933b4] | 716 | [[ -z "$CONFIG" ]] && [[ -z "$BOOT_CONFIG" ]] && \
|
---|
| 717 | [[ "$GETKERNEL" = "0" ]] && continue
|
---|
[3a27393] | 718 | ;;
|
---|
[65d83a6] | 719 | esac
|
---|
[3e7af38] | 720 |
|
---|
[65d83a6] | 721 | # Locations
|
---|
| 722 | URL1=`echo $line | cut -d" " -f2` # Preferred URL
|
---|
| 723 | URL2=`echo $line | cut -d" " -f1` # Fallback Upstream URL
|
---|
[7a100d96] | 724 | FILE=`basename $URL1` # File name
|
---|
| 725 | BOOKMD5=`echo $line | cut -d" " -f3` # MD5 book value
|
---|
| 726 |
|
---|
[3a27393] | 727 | # Validation pair
|
---|
| 728 | MD5="$BOOKMD5 $FILE"
|
---|
| 729 | HAVEMD5=1
|
---|
[0170229] | 730 |
|
---|
[65d83a6] | 731 | set -e
|
---|
| 732 | # If the file exists in the archive copy it to the
|
---|
| 733 | # $BUILDDIR/sources dir. MD5SUM will be validated later.
|
---|
| 734 | if [ ! -z ${SRC_ARCHIVE} ] &&
|
---|
| 735 | [ -d ${SRC_ARCHIVE} ] &&
|
---|
| 736 | [ -f ${SRC_ARCHIVE}/$FILE ]; then
|
---|
| 737 | cp ${SRC_ARCHIVE}/$FILE .
|
---|
| 738 | echo "$FILE: -- copied from $SRC_ARCHIVE"
|
---|
| 739 | fromARCHIVE=1
|
---|
| 740 | else
|
---|
| 741 | echo "${BOLD}${YELLOW}$FILE: not found in ${SRC_ARCHIVE}${OFF}"
|
---|
| 742 | fromARCHIVE=0
|
---|
[3a27393] | 743 | # If the file does not exist yet in /sources download a fresh one
|
---|
[3e7af38] | 744 | if [ ! -f $FILE ] ; then
|
---|
[65d83a6] | 745 | if ! wget $URL1 && ! wget $URL2 ; then
|
---|
| 746 | gs_wrt_message "$FILE not found in the SRC_ARCHIVE or on any server..SKIPPING"
|
---|
| 747 | continue
|
---|
| 748 | fi
|
---|
[3e7af38] | 749 | fi
|
---|
[65d83a6] | 750 | fi
|
---|
[0170229] | 751 |
|
---|
[3a27393] | 752 | # IF the md5sum does not match the existing files
|
---|
| 753 | if ! echo "$MD5" | md5sum -c - >/dev/null ; then
|
---|
| 754 | [[ $fromARCHIVE = "1" ]] && echo "${BOLD}${YELLOW}MD5SUM did not match SRC_ARCHIVE copy${OFF}"
|
---|
| 755 | [[ $fromARCHIVE = "0" ]] && echo "${BOLD}${YELLOW}MD5SUM did not match REMOTE copy${OFF}"
|
---|
| 756 | # Remove the old file and download a new one
|
---|
| 757 | rm -fv $FILE
|
---|
| 758 | # Force storage in SRC_ARCHIVE
|
---|
| 759 | fromARCHIVE=0;
|
---|
| 760 | # Try to retrieve again the file. Servers in reverse order.
|
---|
| 761 | if ! wget $URL2 && ! wget $URL1 ; then
|
---|
| 762 | gs_wrt_message "$FILE not found on the servers.. SKIPPING"
|
---|
| 763 | continue
|
---|
[3e7af38] | 764 | fi
|
---|
[65d83a6] | 765 | fi
|
---|
[e1edff3] | 766 |
|
---|
[65d83a6] | 767 | # Validate the MD5SUM one last time
|
---|
[3a27393] | 768 | if ! echo "$MD5" | md5sum -c - >/dev/null ; then
|
---|
[65d83a6] | 769 | gs_wrt_message "$FILE does not match MD5SUMS value"
|
---|
[b61a4a9] | 770 | # Force generation of MD5SUM
|
---|
| 771 | HAVEMD5=0
|
---|
[65d83a6] | 772 | fi
|
---|
[3e7af38] | 773 |
|
---|
[65d83a6] | 774 | # Generate a fresh MD5SUM for this file
|
---|
| 775 | if [[ "$HAVEMD5" = "0" ]] ; then
|
---|
| 776 | echo "${BOLD}${YELLOW}Generating a new MD5SUM for ${OFF}$FILE"
|
---|
[3a27393] | 777 | echo "NEW MD5SUM: $(md5sum $FILE)" >> MISSING_FILES.DMP
|
---|
[3e7af38] | 778 | fi
|
---|
[e1edff3] | 779 |
|
---|
[65d83a6] | 780 | # Good or bad we write the original md5sum to a file
|
---|
[3a27393] | 781 | echo "$MD5" >> MD5SUMS
|
---|
[65d83a6] | 782 |
|
---|
| 783 | # Copy the freshly downloaded file
|
---|
| 784 | # to the source archive.
|
---|
| 785 | if [ ! -z ${SRC_ARCHIVE} ] &&
|
---|
| 786 | [ -d ${SRC_ARCHIVE} ] &&
|
---|
| 787 | [ -w ${SRC_ARCHIVE} ] &&
|
---|
| 788 | [ "$fromARCHIVE" = "0" ] ; then
|
---|
| 789 | echo "Storing file:<$FILE> in the package archive"
|
---|
| 790 | cp -f $FILE ${SRC_ARCHIVE}
|
---|
| 791 | fi
|
---|
| 792 |
|
---|
| 793 | done
|
---|
| 794 |
|
---|
| 795 | if [[ -s MISSING_FILES.DMP ]]; then
|
---|
| 796 | echo -e "\n\n${tab_}${RED} One or more files were not retrieved or have a bad MD5SUMS chechsum.\n${tab_} Check ${L_arrow}$BUILDDIR/sources/MISSING_FILES.DMP${R_arrow} for names ${OFF}\n"
|
---|
| 797 | # Do not allow the automatic exection of the Makefile.
|
---|
| 798 | echo "${tab_}${BOLD}${RED}*** ${YELLOW}Automatic execution of the generated makefile has been inhibited. ${RED}***${OFF}${nl_}"
|
---|
| 799 | RUNMAKE=0
|
---|
[3e7af38] | 800 | fi
|
---|
[0170229] | 801 | }
|
---|
| 802 |
|
---|
| 803 |
|
---|
| 804 | #----------------------------#
|
---|
[3e7af38] | 805 | create_urls() { #
|
---|
[0170229] | 806 | #----------------------------#
|
---|
[3e7af38] | 807 | cd $JHALFSDIR
|
---|
[0170229] | 808 |
|
---|
[3e7af38] | 809 | case ${PROGNAME} in
|
---|
| 810 | clfs)
|
---|
| 811 | echo -n "Creating CLFS <${ARCH}> specific URLs file"
|
---|
| 812 | xsltproc --nonet --xinclude \
|
---|
| 813 | --stringparam server $SERVER \
|
---|
| 814 | -o $BUILDDIR/sources/urls.lst urls.xsl \
|
---|
| 815 | $BOOK/materials/$ARCH-chapter.xml >>$LOGDIR/$LOG 2>&1
|
---|
| 816 | echo " ...OK"
|
---|
| 817 | ;;
|
---|
| 818 | hlfs)
|
---|
| 819 | echo -n "Creating HLFS <${MODEL}> specific URLs file"
|
---|
| 820 | xsltproc --nonet --xinclude \
|
---|
| 821 | --stringparam server $SERVER \
|
---|
| 822 | --stringparam model $MODEL \
|
---|
| 823 | -o $BUILDDIR/sources/urls.lst urls.xsl \
|
---|
| 824 | $BOOK/chapter04/chapter04.xml >>$LOGDIR/$LOG 2>&1
|
---|
| 825 | echo " ...OK"
|
---|
| 826 | ;;
|
---|
| 827 | lfs)
|
---|
| 828 | echo -n "Creating LFS specific URLs file"
|
---|
| 829 | xsltproc --nonet --xinclude \
|
---|
| 830 | --stringparam server $SERVER \
|
---|
| 831 | -o ../sources/urls.lst urls.xsl \
|
---|
| 832 | $BOOK/chapter03/chapter03.xml >>$LOGDIR/$LOG 2>&1
|
---|
| 833 | echo " ...OK"
|
---|
| 834 | ;;
|
---|
| 835 | esac
|
---|
[0170229] | 836 |
|
---|
[3e7af38] | 837 | cd $BUILDDIR/sources
|
---|
[0170229] | 838 | }
|
---|