[fbb6b78] | 1 | #!/bin/sh
|
---|
[1236262] | 2 |
|
---|
| 3 | version="
|
---|
[63b2859] | 4 | jhalfs development
|
---|
| 5 |
|
---|
[db9cec6] | 6 | Originally written by Jeremy Huntwork.
|
---|
[557fe91] | 7 | Maintained by Manuel Canales Esparcia.
|
---|
[1236262] | 8 |
|
---|
| 9 | This program is published under the \
|
---|
[557fe91] | 10 | Gnu General Public License, Version 2.
|
---|
| 11 | "
|
---|
[1236262] | 12 |
|
---|
| 13 | usage="\
|
---|
| 14 | Usage: $0 [OPTION]
|
---|
| 15 |
|
---|
| 16 | Options:
|
---|
[557fe91] | 17 | -h, --help print this help, then exit
|
---|
[24530379] | 18 |
|
---|
[557fe91] | 19 | -V, --version print version number, then exit
|
---|
[24530379] | 20 |
|
---|
[557fe91] | 21 | -d --directory=DIR use DIR directory for building LFS; all files
|
---|
| 22 | jhalfs produces will be in the directory
|
---|
| 23 | DIR/jhalfs
|
---|
[24530379] | 24 |
|
---|
| 25 | -P, --get-packages download the packages and patches
|
---|
| 26 |
|
---|
[557fe91] | 27 | -D, --download-client=CLIENT use CLIENT as the program for retrieving
|
---|
[24530379] | 28 | packages (for use in conjunction with -P)
|
---|
| 29 |
|
---|
| 30 | -W, --working-copy=DIR use the local working copy placed in DIR
|
---|
| 31 | as the LFS book
|
---|
| 32 |
|
---|
| 33 | -L, --LFS-version=VER ckeckout VER version of the LFS book
|
---|
| 34 |
|
---|
| 35 | -T, --testsuites add support to run the optional testsuites
|
---|
| 36 |
|
---|
[d310939] | 37 | -M, --run-make run make on the generated Makefile
|
---|
[1236262] | 38 | "
|
---|
| 39 |
|
---|
| 40 | help="\
|
---|
| 41 | Try '$0 --help' for more information."
|
---|
| 42 |
|
---|
| 43 | exit_missing_arg="\
|
---|
| 44 | echo \"Option '\$1' requires an argument\" >&2
|
---|
| 45 | echo \"\$help\" >&2
|
---|
| 46 | exit 1"
|
---|
| 47 |
|
---|
| 48 | no_dl_client="\
|
---|
| 49 | echo \"Could not find a way to download the LFS sources.\" >&2
|
---|
| 50 | echo \"Attempting to continue.\" >&2"
|
---|
| 51 |
|
---|
| 52 | while test $# -gt 0 ; do
|
---|
[557fe91] | 53 | case $1 in
|
---|
| 54 | --version | -V )
|
---|
| 55 | echo "$version"
|
---|
| 56 | exit 0
|
---|
| 57 | ;;
|
---|
| 58 |
|
---|
| 59 | --help | -h )
|
---|
| 60 | echo "$usage"
|
---|
| 61 | exit 0
|
---|
| 62 | ;;
|
---|
| 63 |
|
---|
| 64 | --LFS-version | -L )
|
---|
| 65 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 66 | shift
|
---|
| 67 | case $1 in
|
---|
| 68 | dev* | SVN | trunk )
|
---|
| 69 | LFSVRS=development
|
---|
| 70 | ;;
|
---|
| 71 | * )
|
---|
| 72 | echo "$1 is an unsupported version at this time."
|
---|
| 73 | exit 1
|
---|
| 74 | ;;
|
---|
| 75 | esac
|
---|
| 76 | shift
|
---|
| 77 | ;;
|
---|
| 78 |
|
---|
| 79 | --directory | -d )
|
---|
| 80 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 81 | shift
|
---|
| 82 | BUILDDIR=$1
|
---|
| 83 | shift
|
---|
| 84 | ;;
|
---|
| 85 |
|
---|
| 86 | --download-client | -D )
|
---|
| 87 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 88 | shift
|
---|
| 89 | DL=$1
|
---|
| 90 | shift
|
---|
| 91 | ;;
|
---|
| 92 |
|
---|
[24530379] | 93 | --working-copy | -W )
|
---|
| 94 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 95 | shift
|
---|
| 96 | WC=1
|
---|
| 97 | BOOK=$1
|
---|
| 98 | shift
|
---|
| 99 | ;;
|
---|
| 100 |
|
---|
[d310939] | 101 | --testsuites | -T )
|
---|
[db9cec6] | 102 | TEST=1
|
---|
| 103 | shift
|
---|
| 104 | ;;
|
---|
| 105 |
|
---|
[d310939] | 106 | --get-packages | -P )
|
---|
[07f47df] | 107 | HPKG=1
|
---|
| 108 | shift
|
---|
| 109 | ;;
|
---|
| 110 |
|
---|
[d310939] | 111 | --run-make | -M )
|
---|
| 112 | RUNMAKE=1
|
---|
| 113 | shift
|
---|
| 114 | ;;
|
---|
| 115 |
|
---|
[557fe91] | 116 | * )
|
---|
| 117 | echo "$usage"
|
---|
| 118 | exit 1
|
---|
| 119 | ;;
|
---|
| 120 | esac
|
---|
[1236262] | 121 | done
|
---|
| 122 |
|
---|
| 123 | # Test to make sure we're running the build as root
|
---|
| 124 |
|
---|
| 125 | if [ "$UID" != "0" ] ; then
|
---|
[557fe91] | 126 | echo "You must be logged in as root to successfully build LFS."
|
---|
| 127 | exit 1
|
---|
[1236262] | 128 | fi
|
---|
| 129 |
|
---|
| 130 | # Find the download client to use, if not already specified.
|
---|
| 131 |
|
---|
| 132 | if [ -z $DL ] ; then
|
---|
| 133 | if [ `type -p wget` ] ; then
|
---|
[557fe91] | 134 | DL=wget
|
---|
[1236262] | 135 | elif [ `type -p curl` ] ; then
|
---|
[557fe91] | 136 | DL=curl
|
---|
[1236262] | 137 | else
|
---|
[557fe91] | 138 | eval "$no_dl_client"
|
---|
[1236262] | 139 | fi
|
---|
| 140 | fi
|
---|
| 141 |
|
---|
| 142 | SVN="svn://svn.linuxfromscratch.org"
|
---|
| 143 | HTTP=http://ftp.lfs-matrix.net/pub/lfs/lfs-packages/conglomeration
|
---|
[48d7968] | 144 | if [ -z $BUILDDIR ] ; then BUILDDIR=/mnt/lfs ; fi
|
---|
[4dafc45] | 145 | JHALFSDIR=$BUILDDIR/jhalfs
|
---|
[97a3ffc] | 146 | LOGDIR=/jhalfs/logs
|
---|
[a5e49c6] | 147 | LOG=000-jhalfs.log
|
---|
[f8de156] | 148 | MKFILE=$JHALFSDIR/Makefile
|
---|
[3cfe871] | 149 | XSL=dump-lfs-scripts.xsl
|
---|
[0fc4c75] | 150 | FNC=functions
|
---|
[db9cec6] | 151 | if [ -z $TEST ] ; then TEST=0 ; fi
|
---|
[1236262] | 152 |
|
---|
[8bb92e7] | 153 | HEADER="# This file is automatically generated by jhalfs
|
---|
| 154 | # DO NOT EDIT THIS FILE MANUALLY
|
---|
| 155 | #
|
---|
| 156 | # Generated on `date \"+%F %X %Z\"`"
|
---|
| 157 |
|
---|
[1236262] | 158 | get_book() {
|
---|
| 159 | # Check for Subversion instead of just letting the script hit 'svn' and fail.
|
---|
| 160 | test `type -p svn` || eval "echo \"This feature requires Subversion.\"
|
---|
[557fe91] | 161 | exit 1"
|
---|
[4dafc45] | 162 | cd $JHALFSDIR
|
---|
[fbb6b78] | 163 |
|
---|
[1236262] | 164 | # Test to make sure the LFS version is set
|
---|
| 165 | if [ -z $LFSVRS ] ; then LFSVRS=development ; fi
|
---|
[24530379] | 166 |
|
---|
[56dd1e2] | 167 | # Set the book's sources directory
|
---|
[24530379] | 168 | if [ -z $BOOK ] ; then BOOK=lfs-$LFSVRS ; fi
|
---|
| 169 |
|
---|
| 170 | if [ -z $WC ] ; then
|
---|
| 171 | echo -n "Downloading the LFS Book, version $LFSVRS... "
|
---|
| 172 |
|
---|
| 173 | # Grab the LFS book fresh if it's missing, otherwise, update it from the
|
---|
| 174 | # repo. If we've already extracted the commands, move on to getting the
|
---|
| 175 | # sources.
|
---|
| 176 | if [ -d lfs-$LFSVRS ] ; then
|
---|
| 177 | cd lfs-$LFSVRS
|
---|
| 178 | if svn up | grep -q At && test -d $JHALFSDIR/commands && \
|
---|
| 179 | test -f $JHALFSDIR/packages && test -f $JHALFSDIR/patches ; then
|
---|
| 180 | echo -ne "done\n"
|
---|
| 181 | get_sources
|
---|
| 182 | else
|
---|
| 183 | echo -ne "done\n"
|
---|
| 184 | extract_commands
|
---|
| 185 | fi
|
---|
[557fe91] | 186 | else
|
---|
[24530379] | 187 | if [ $LFSVRS = development ] ; then
|
---|
| 188 | svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$BUILDDIR$LOGDIR/$LOG 2>&1
|
---|
| 189 | else
|
---|
| 190 | svn co $SVN/LFS/branches/$LFSVRS/BOOK lfs-$LFSVRS >>$BUILDDIR$LOGDIR/$LOG 2>&1
|
---|
| 191 | fi
|
---|
[557fe91] | 192 | echo -ne "done\n"
|
---|
| 193 | extract_commands
|
---|
| 194 | fi
|
---|
[1236262] | 195 | else
|
---|
[24530379] | 196 | echo -ne "Using $BOOK as book's sources ...\n"
|
---|
[557fe91] | 197 | extract_commands
|
---|
[1236262] | 198 | fi
|
---|
| 199 | }
|
---|
| 200 |
|
---|
| 201 | extract_commands() {
|
---|
| 202 | # Check for libxslt instead of just letting the script hit 'xsltproc' and fail.
|
---|
| 203 | test `type -p xsltproc` || eval "echo \"This feature requires libxslt.\"
|
---|
[557fe91] | 204 | exit 1"
|
---|
[4dafc45] | 205 | cd $JHALFSDIR
|
---|
[1236262] | 206 |
|
---|
| 207 | # Start clean
|
---|
| 208 | if [ -d commands ] ; then rm -rf commands ; fi && mkdir commands
|
---|
| 209 | echo -n "Extracting commands... "
|
---|
| 210 |
|
---|
[dc2fee8] | 211 | # Dump the commands in shell script form from the LFS book.
|
---|
[db9cec6] | 212 | xsltproc --nonet --xinclude --stringparam testsuite $TEST -o ./commands/ \
|
---|
[24530379] | 213 | $XSL $BOOK/index.xml >>$BUILDDIR$LOGDIR/$LOG 2>&1
|
---|
[1236262] | 214 |
|
---|
| 215 | # Grab the patches and package names.
|
---|
[4dafc45] | 216 | cd $JHALFSDIR
|
---|
[1236262] | 217 | for i in patches packages ; do rm -f $i ; done
|
---|
[24530379] | 218 | grep "\-version" $BOOK/general.ent | sed -e 's@<!ENTITY @@' -e 's@">@"@' \
|
---|
[557fe91] | 219 | -e '/generic/d' >> packages
|
---|
[24530379] | 220 | grep "ENTITY" $BOOK/patches.ent | sed -e 's/.* "//' -e 's/">//' >> patches
|
---|
[1236262] | 221 |
|
---|
| 222 | # Done. Moving on...
|
---|
| 223 | echo -ne "done\n"
|
---|
| 224 | get_sources
|
---|
| 225 | }
|
---|
| 226 |
|
---|
| 227 | download() {
|
---|
| 228 | cd $BUILDDIR/sources
|
---|
| 229 |
|
---|
| 230 | # Hackish fix for the bash-doc package that doesn't conform
|
---|
| 231 | # to norms in the URL scheme.
|
---|
| 232 | DIR=`echo $1 | sed 's@-doc@@'`
|
---|
| 233 |
|
---|
| 234 | # Find the md5 sum for this package.
|
---|
| 235 | if [ $2 != MD5SUMS ] ; then MD5=`grep " $2" MD5SUMS` ; fi
|
---|
| 236 |
|
---|
| 237 | if [ ! -f $2 ] ; then
|
---|
[557fe91] | 238 | case $DL in
|
---|
| 239 | wget )
|
---|
| 240 | wget $HTTP/$DIR/$2
|
---|
| 241 | ;;
|
---|
| 242 | curl )
|
---|
| 243 | `curl -# $HTTP/$DIR/$2 -o $2`
|
---|
| 244 | ;;
|
---|
| 245 | * )
|
---|
| 246 | echo "$DL not supported at this time."
|
---|
| 247 | ;;
|
---|
| 248 | esac
|
---|
[1236262] | 249 | elif ! echo "$MD5" | md5sum -c - >/dev/null 2>/dev/null ; then
|
---|
[557fe91] | 250 | case $DL in
|
---|
| 251 | wget )
|
---|
| 252 | wget -c $HTTP/$DIR/$2
|
---|
| 253 | ;;
|
---|
| 254 | curl )
|
---|
| 255 | `curl -# -C - $HTTP/$DIR/$2 -o $2`
|
---|
| 256 | ;;
|
---|
| 257 | * )
|
---|
| 258 | echo "$DL not supported at this time."
|
---|
| 259 | ;;
|
---|
| 260 | esac
|
---|
[1236262] | 261 | fi
|
---|
| 262 | if [ $2 != MD5SUMS ] && ! echo "$MD5" | md5sum -c - ; then
|
---|
| 263 | exit 1
|
---|
| 264 | fi
|
---|
| 265 | }
|
---|
| 266 |
|
---|
| 267 | get_sources() {
|
---|
| 268 |
|
---|
[07f47df] | 269 | # Test if the packages must be downloaded
|
---|
[d310939] | 270 | if [ "$HPKG" = "1" ] ; then
|
---|
[1236262] | 271 |
|
---|
[07f47df] | 272 | # This variable is necessary to make sure the `cat $JHALFSDIR/packages`
|
---|
| 273 | # separates each iteration by lines. It is necessary to have the second
|
---|
| 274 | # ' on the next line.
|
---|
| 275 | IFS='
|
---|
| 276 | '
|
---|
[1236262] | 277 |
|
---|
[07f47df] | 278 | if [ ! -d $BUILDDIR/sources ] ; then mkdir $BUILDDIR/sources ; fi
|
---|
| 279 | cd $BUILDDIR/sources
|
---|
| 280 | if [ -f MD5SUMS ] ; then rm MD5SUMS ; fi
|
---|
| 281 |
|
---|
| 282 | download "" MD5SUMS
|
---|
| 283 |
|
---|
| 284 | # Iterate through each package and grab it, along with any patches it needs.
|
---|
| 285 | for i in `cat $JHALFSDIR/packages` ; do
|
---|
| 286 | PKG=`echo $i | sed 's/-version.*//'`
|
---|
| 287 |
|
---|
| 288 | # Someone used some silly entities right next to the valid package entities.
|
---|
| 289 | if [ "$PKG" = "expect-lib" -o "$PKG" = "linux-dl" ] ; then continue ; fi
|
---|
| 290 |
|
---|
| 291 | VRS=`echo $i | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 292 | if [ "$PKG" = "tcl" ] ; then
|
---|
| 293 | FILE="$PKG$VRS-src.tar.bz2"
|
---|
| 294 | else
|
---|
| 295 | FILE="$PKG-$VRS.tar.bz2"
|
---|
| 296 | fi
|
---|
| 297 | download $PKG $FILE
|
---|
| 298 | for patch in `grep "$PKG-&$PKG" $JHALFSDIR/patches` ; do
|
---|
| 299 | PATCH=`echo $patch | sed 's@&'$PKG'-version;@'$VRS'@'`
|
---|
| 300 | download $PKG $PATCH
|
---|
| 301 | done
|
---|
[fbb6b78] | 302 | done
|
---|
[07f47df] | 303 | fi
|
---|
[1236262] | 304 | }
|
---|
| 305 |
|
---|
[f8de156] | 306 | build_Makefile() {
|
---|
[9e406b5] | 307 | echo -n "Creating Makefile... "
|
---|
[f8de156] | 308 | cd $JHALFSDIR/commands
|
---|
[fbb6b78] | 309 |
|
---|
[f8de156] | 310 | # Start with a clean Makefile.tmp file
|
---|
| 311 | >$MKFILE.tmp
|
---|
| 312 |
|
---|
[0bad6ba] | 313 | for file in chapter05/* ; do
|
---|
[71642ef] | 314 | # Keep the script file name
|
---|
| 315 | i=`basename $file`
|
---|
[63b2859] | 316 |
|
---|
[71642ef] | 317 | # First append each name of the script files to a list (this will become
|
---|
| 318 | # the names of the targets in the Makefile
|
---|
| 319 | chapter5="$chapter5 $i"
|
---|
[557fe91] | 320 |
|
---|
[71642ef] | 321 | # Grab the name of the target (minus the -pass1 or -pass2 in the case of gcc
|
---|
| 322 | # and binutils in chapter 5)
|
---|
| 323 | name=`echo $i | sed -e 's@[0-9]\{3\}-@@' -e 's@-pass[0-9]\{1\}@@'`
|
---|
[557fe91] | 324 |
|
---|
[e909d9d] | 325 | # Set the dependency for the first target.
|
---|
| 326 | if [ -z $PREV ] ; then PREV=022-settingenvironment ; fi
|
---|
| 327 |
|
---|
| 328 | # Drop in the name of the target on a new line, and the previous target
|
---|
[0fc4c75] | 329 | # as a dependency. Also call the echo_message function.
|
---|
[e909d9d] | 330 | echo -e "\n$i: $PREV" >> $MKFILE.tmp
|
---|
[0fc4c75] | 331 | echo -e "\t@\$(call echo_message, Building)" >> $MKFILE.tmp
|
---|
[557fe91] | 332 |
|
---|
[71642ef] | 333 | # Find the version of the command files, if it corresponds with the building of
|
---|
| 334 | # a specific package
|
---|
| 335 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
[557fe91] | 336 |
|
---|
[71642ef] | 337 | # If $vrs isn't empty, we've got a package...
|
---|
| 338 | if [ "$vrs" != "" ] ; then
|
---|
| 339 | if [ "$name" = "tcl" ] ; then
|
---|
| 340 | FILE="$name$vrs-src.tar.bz2"
|
---|
| 341 | else
|
---|
| 342 | FILE="$name-$vrs.tar.bz2"
|
---|
| 343 | fi
|
---|
[557fe91] | 344 |
|
---|
[71642ef] | 345 | # Insert instructions for unpacking the package and to set
|
---|
| 346 | # the PKGDIR variable.
|
---|
[0fc4c75] | 347 | echo -e "\t@\$(call unpack-lfs,$FILE)" >> $MKFILE.tmp
|
---|
| 348 | echo -e "\t@ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
[71642ef] | 349 | echo -e "\tchown -R lfs \$(LFS)\$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
|
---|
| 350 | echo -e "\techo \"PKGDIR=\$(LFS)\$(SRC)/\$\$ROOT\" > envars && \\" >> $MKFILE.tmp
|
---|
| 351 | echo -e "\techo \"export PKGDIR\" >> envars && \\" >> $MKFILE.tmp
|
---|
| 352 | fi
|
---|
[557fe91] | 353 |
|
---|
[97a3ffc] | 354 | # Dump the path to the Binutils pass1 or TCL sources directory.
|
---|
| 355 | if [ "$i" = "027-binutils-pass1" -o "$i" = "032-tcl" ] ; then
|
---|
[0fc4c75] | 356 | echo -e "\techo \"\$(LFS)\$(SRC)/\$\$ROOT\" > sources-dir" >> $MKFILE.tmp
|
---|
[88dcce5] | 357 |
|
---|
[97a3ffc] | 358 | # Dump the path to the Binutils pass2 sources directory.
|
---|
[0fc4c75] | 359 | elif [ "$i" = "036-binutils-pass2" ] ; then
|
---|
| 360 | echo -e "\techo \"\$(SRC)/\$\$ROOT\" > sources-dir" >> $MKFILE.tmp
|
---|
[97a3ffc] | 361 |
|
---|
[71642ef] | 362 | # For the Adjusting phase we must to cd to the binutils-build directory.
|
---|
[0fc4c75] | 363 | elif [ "$i" = "031-adjusting" ] ; then
|
---|
[d310939] | 364 | echo -e "\techo \"PKGDIR=\$(LFS)\$(SRC)/binutils-build\" > envars && \\" >> $MKFILE.tmp
|
---|
[0fc4c75] | 365 | echo -e "\techo \"export PKGDIR\" >> envars" >> $MKFILE.tmp
|
---|
[0209bb7] | 366 |
|
---|
[97a3ffc] | 367 | # For the Expect build we need to set the TCLPATH envar.
|
---|
[0fc4c75] | 368 | elif [ "$i" = "033-expect" ] ; then
|
---|
[71642ef] | 369 | echo -e "\techo \"TCLPATH=\`cat sources-dir\`\" >> envars && \\" >> $MKFILE.tmp
|
---|
[0fc4c75] | 370 | echo -e "\techo \"export TCLPATH\" >> envars" >> $MKFILE.tmp
|
---|
| 371 |
|
---|
| 372 | # Everything else, add a true statment so we don't confuse make
|
---|
| 373 | else
|
---|
[7bbd436] | 374 | echo -e "\ttrue" >> $MKFILE.tmp
|
---|
[71642ef] | 375 | fi
|
---|
[557fe91] | 376 |
|
---|
[4e4a8d5] | 377 | # Insert date and disk usage at the top of the log file.
|
---|
[0fc4c75] | 378 | echo -e "\t@echo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp
|
---|
[133ecac] | 379 |
|
---|
[71642ef] | 380 | # Insert the script run
|
---|
[7ecd166] | 381 | echo -e "\tsu - lfs -c \". /home/lfs/.bashrc && $JHALFSDIR/commands/$file\" >>logs/$i 2>&1 && \\" >> $MKFILE.tmp
|
---|
[71642ef] | 382 |
|
---|
[4e4a8d5] | 383 | # Insert date and disk usage at the bottom of the log file.
|
---|
[0fc4c75] | 384 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i" >> $MKFILE.tmp
|
---|
[71642ef] | 385 |
|
---|
| 386 | # Remove the build directory(ies) even if the package build fails, except for
|
---|
[d310939] | 387 | # Binutils and TCL. In that cases the sources directories are removed
|
---|
[71642ef] | 388 | # only if the build fails.
|
---|
| 389 | if [ "$vrs" != "" ] ; then
|
---|
[d310939] | 390 | if [ "$i" != "027-binutils-pass1" ] && [ "$i" != "032-tcl" ] && [ "$i" != "036-binutils-pass2" ] ; then
|
---|
[0fc4c75] | 391 | echo -e "\t@ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
[71642ef] | 392 | echo -e "\trm -r \$(LFS)\$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
|
---|
[d310939] | 393 | echo -e "\tif [ -e \$(LFS)\$(SRC)/$name-build ]; then \\" >> $MKFILE.tmp
|
---|
| 394 | echo -e "\t\trm -r \$(LFS)\$(SRC)/$name-build; \\" >> $MKFILE.tmp
|
---|
[71642ef] | 395 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 396 | fi
|
---|
| 397 | fi
|
---|
[7bbd436] | 398 |
|
---|
| 399 | # Remove the Binutils pass 1 sources after a successful Adjusting phase.
|
---|
| 400 | if [ "$i" = "031-adjusting" ] ; then
|
---|
| 401 | echo -e "\t@rm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp
|
---|
| 402 | echo -e "\trm -r \$(LFS)\$(SRC)/binutils-build && \\" >> $MKFILE.tmp
|
---|
[7d98315] | 403 | echo -e "\trm sources-dir" >> $MKFILE.tmp
|
---|
[7bbd436] | 404 | fi
|
---|
| 405 |
|
---|
| 406 | # Remove the TCL sources after a successful Expect build.
|
---|
| 407 | if [ "$i" = "033-expect" ] ; then
|
---|
| 408 | echo -e "\t@rm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp
|
---|
[7d98315] | 409 | echo -e "\trm sources-dir" >> $MKFILE.tmp
|
---|
[7bbd436] | 410 | fi
|
---|
| 411 |
|
---|
| 412 | # Include a touch of the target name so make can check
|
---|
| 413 | # if it's already been made.
|
---|
| 414 | echo -e "\t@touch \$@" >> $MKFILE.tmp
|
---|
| 415 |
|
---|
| 416 | # The next two "if" must be after the touch to can check if the sources
|
---|
| 417 | # directories should be retained or deleted.
|
---|
[d310939] | 418 | if [ "$i" = "027-binutils-pass1" -o "$i" = "036-binutils-pass2" ] ; then
|
---|
[0fc4c75] | 419 | echo -e "\t@if [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp
|
---|
[71642ef] | 420 | echo -e "\t\tROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
| 421 | echo -e "\t\trm -r \$(LFS)\$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
|
---|
[d310939] | 422 | echo -e "\t\trm -r \$(LFS)\$(SRC)/binutils-build; \\" >> $MKFILE.tmp
|
---|
| 423 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 424 | fi
|
---|
| 425 | if [ "$i" = "032-tcl" ] ; then
|
---|
[0fc4c75] | 426 | echo -e "\t@if [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp
|
---|
[d310939] | 427 | echo -e "\t\tROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
| 428 | echo -e "\t\trm -r \$(LFS)\$(SRC)/\$\$ROOT; \\" >> $MKFILE.tmp
|
---|
[71642ef] | 429 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 430 | fi
|
---|
[44f88e3] | 431 |
|
---|
[e909d9d] | 432 | # Keep the script file name for Makefile dependencies.
|
---|
| 433 | PREV=$i
|
---|
[f8de156] | 434 | done
|
---|
[9e406b5] | 435 |
|
---|
[97a3ffc] | 436 | for file in chapter06/* ; do
|
---|
| 437 | # Keep the script file name
|
---|
| 438 | i=`basename $file`
|
---|
| 439 |
|
---|
| 440 | # First append each name of the script files to a list (this will become
|
---|
| 441 | # the names of the targets in the Makefile
|
---|
| 442 | chapter6="$chapter6 $i"
|
---|
| 443 |
|
---|
| 444 | # Grab the name of the target
|
---|
| 445 | name=`echo $i | sed -e 's@[0-9]\{3\}-@@'`
|
---|
| 446 |
|
---|
| 447 | # Set the dependency for the first target.
|
---|
| 448 | if [ -z $PREV ] ; then PREV=055-stripping ; fi
|
---|
| 449 |
|
---|
| 450 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 451 | # as a dependency.
|
---|
[1936487] | 452 | if echo $i | grep -q "chroot" ; then
|
---|
| 453 | continue
|
---|
| 454 | else
|
---|
[c08d23b] | 455 | echo -e "\n$i: $PREV" >> $MKFILE.tmp
|
---|
| 456 | fi
|
---|
[97a3ffc] | 457 |
|
---|
| 458 | # Find the version of the command files, if it corresponds with the building of
|
---|
| 459 | # a specific package
|
---|
| 460 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 461 |
|
---|
| 462 | # If $vrs isn't empty, we've got a package...
|
---|
| 463 | if [ "$vrs" != "" ] ; then
|
---|
| 464 | FILE="$name-$vrs.tar.bz2"
|
---|
| 465 |
|
---|
| 466 | # Insert instructions for unpacking the package and changing directories
|
---|
[0fc4c75] | 467 | echo -e "\t@\$(call unpack,$FILE)" >> $MKFILE.tmp
|
---|
| 468 | echo -e "\t@ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
[56dd1e2] | 469 | echo -e "\techo \"PKGDIR=\$(SRC)/\$\$ROOT\" > envars && \\" >> $MKFILE.tmp
|
---|
| 470 | echo -e "\techo \"export PKGDIR\" >> envars && \\" >> $MKFILE.tmp
|
---|
[97a3ffc] | 471 | fi
|
---|
| 472 |
|
---|
| 473 | # For the Re-Adjusting phase we must to cd to the binutils-build directory.
|
---|
| 474 | if [ "$i" = "067-readjusting" ] ; then
|
---|
[56dd1e2] | 475 | echo -e "\techo \"PKGDIR=\$(SRC)/binutils-build\" > envars && \\" >> $MKFILE.tmp
|
---|
[0fc4c75] | 476 | echo -e "\techo \"export PKGDIR\" >> envars" >> $MKFILE.tmp
|
---|
[97a3ffc] | 477 |
|
---|
| 478 | # Insert the script run
|
---|
[7ecd166] | 479 | # For the mount of kernel filesystems we need to set LFS.
|
---|
[0fc4c75] | 480 | elif [ "$i" = "057-kernfs" ] ; then
|
---|
[7ecd166] | 481 | echo -e "\techo \"LFS=\$(LFS)\" > envars && \\" >> $MKFILE.tmp
|
---|
| 482 | echo -e "\techo \"export LFS\" >> envars && \\" >> $MKFILE.tmp
|
---|
[4e4a8d5] | 483 | # Insert date and disk usage at the top of the log file.
|
---|
[7ecd166] | 484 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp
|
---|
| 485 | echo -e "\t. envars && commands/$file >>logs/$i 2>&1 && \\" >> $MKFILE.tmp
|
---|
[4e4a8d5] | 486 | # Insert date and disk usage at the bottom of the log file.
|
---|
[0fc4c75] | 487 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i" >> $MKFILE.tmp
|
---|
[7ecd166] | 488 | else
|
---|
[4e4a8d5] | 489 | # Insert date and disk usage at the top of the log file.
|
---|
[7ecd166] | 490 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* /\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp
|
---|
[c08d23b] | 491 | echo -e "\t. envars && \$(CHROOT1) 'cd /jhalfs && commands/$file >>logs/$i 2>&1' && \\" >> $MKFILE.tmp
|
---|
[4e4a8d5] | 492 | # Insert date and disk usage at the bottom of the log file.
|
---|
[0fc4c75] | 493 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* /\`\\\n\" >>logs/$i" >> $MKFILE.tmp
|
---|
[7ecd166] | 494 | fi
|
---|
[97a3ffc] | 495 |
|
---|
[6299c11] | 496 | # Remove the build directory(ies) even if the package build fails.
|
---|
[97a3ffc] | 497 | if [ "$vrs" != "" ] ; then
|
---|
[0fc4c75] | 498 | echo -e "\t@ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
[97a3ffc] | 499 | echo -e "\trm -r \$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
|
---|
| 500 | echo -e "\tif [ -e \$(SRC)/$name-build ]; then \\" >> $MKFILE.tmp
|
---|
| 501 | echo -e "\t\trm -r \$(SRC)/$name-build; \\" >> $MKFILE.tmp
|
---|
| 502 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 503 | fi
|
---|
| 504 |
|
---|
[4e4a8d5] | 505 | # Remove the Binutils pass 2 sources after a successful Re-Adjusting phase.
|
---|
[6299c11] | 506 | if [ "$i" = "067-readjusting" ] ; then
|
---|
[7bbd436] | 507 | echo -e "\t@rm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp
|
---|
| 508 | echo -e "\trm -r \$(SRC)/binutils-build && \\" >> $MKFILE.tmp
|
---|
[7d98315] | 509 | echo -e "\trm sources-dir" >> $MKFILE.tmp
|
---|
[97a3ffc] | 510 | fi
|
---|
| 511 |
|
---|
[732d1f1] | 512 | # Include a touch of the target name so make can check
|
---|
| 513 | # if it's already been made.
|
---|
[0fc4c75] | 514 | echo -e "\t@touch \$@" >> $MKFILE.tmp
|
---|
[732d1f1] | 515 |
|
---|
[97a3ffc] | 516 | # Keep the script file name for Makefile dependencies.
|
---|
| 517 | PREV=$i
|
---|
| 518 | done
|
---|
| 519 |
|
---|
[8bb92e7] | 520 | # Add a header to the top of the real Makefile
|
---|
| 521 | echo -e "$HEADER\n" > $MKFILE
|
---|
| 522 |
|
---|
| 523 | # Add some variables and include the functions file
|
---|
[d7fd195] | 524 | echo "SRC= /sources" >> $MKFILE
|
---|
| 525 | echo "LFS= $BUILDDIR" >> $MKFILE
|
---|
| 526 | echo -e "LOGDIR= $LOGDIR\n" >> $MKFILE
|
---|
[c08d23b] | 527 | echo -e "include functions\n" >> $MKFILE
|
---|
| 528 |
|
---|
| 529 | # Add chroot commands
|
---|
| 530 | i=1
|
---|
| 531 | for file in chapter06/*chroot* ; do
|
---|
| 532 | chroot=`cat $file | sed -e '/#!\/bin\/sh/d' -e 's@ \\\@ @g' | tr -d '\n' | sed \
|
---|
[7bbd436] | 533 | -e 's/ */ /g' -e 's|\\$|&&|g' -e 's|$| -c|'`
|
---|
[d7fd195] | 534 | echo -e "CHROOT$i= $chroot\n" >> $MKFILE
|
---|
[c08d23b] | 535 | i=`expr $i + 1`
|
---|
| 536 | done
|
---|
[9e406b5] | 537 |
|
---|
[0bad6ba] | 538 | # Drop in the main target 'all:' and the chapter targets with each sub-target
|
---|
| 539 | # as a dependency.
|
---|
[6299c11] | 540 | echo "all: chapter4 chapter5" >> $MKFILE
|
---|
[4e4a8d5] | 541 | echo -e "\t@echo -e \"\\\n\\\tYour new LFS system has been successfully built\"\n" >> $MKFILE
|
---|
[0bad6ba] | 542 | echo -e "chapter4: 020-creatingtoolsdir 021-addinguser 022-settingenvironment\n" >> $MKFILE
|
---|
[97a3ffc] | 543 | echo -e "chapter5: chapter4 $chapter5\n" >> $MKFILE >> $MKFILE
|
---|
| 544 | echo -e "chapter6: chapter5 $chapter6\n" >> $MKFILE
|
---|
[0bad6ba] | 545 |
|
---|
| 546 | # Clean targets
|
---|
[0209bb7] | 547 | echo "clean-all: clean" >> $MKFILE
|
---|
[e3e1db0] | 548 | echo -e "\trm -rf ./*\n" >> $MKFILE
|
---|
[0209bb7] | 549 |
|
---|
| 550 | echo -e "clean: clean-chapter5 clean-chapter4\n" >> $MKFILE
|
---|
[44f88e3] | 551 |
|
---|
[0bad6ba] | 552 | echo "clean-chapter4:" >> $MKFILE
|
---|
[0209bb7] | 553 | echo -e "\t-userdel lfs" >> $MKFILE
|
---|
[e3e1db0] | 554 | echo -e "\trm -rf /home/lfs" >> $MKFILE
|
---|
| 555 | echo -e "\trm -rf \$(LFS)/tools" >> $MKFILE
|
---|
| 556 | echo -e "\trm -f /tools" >> $MKFILE
|
---|
| 557 | echo -e "\trm -f envars" >> $MKFILE
|
---|
| 558 | echo -e "\trm -f 02* logs/02*.log\n" >> $MKFILE
|
---|
[44f88e3] | 559 |
|
---|
| 560 | echo "clean-chapter5:" >> $MKFILE
|
---|
[e3e1db0] | 561 | echo -e "\trm -rf \$(LFS)/tools/*" >> $MKFILE
|
---|
| 562 | echo -e "\trm -f envars" >> $MKFILE
|
---|
| 563 | echo -e "\trm -f $chapter5" >> $MKFILE
|
---|
| 564 | echo -e "\tcd logs && rm -f $chapter5 && cd ..\n" >> $MKFILE
|
---|
[0bad6ba] | 565 |
|
---|
[732d1f1] | 566 | # The chapter4 sub-targets are hard-coded to create the lfs user,
|
---|
| 567 | # to make the scripts executable, and to create a clean environment
|
---|
[44f88e3] | 568 | # for the lfs user.
|
---|
[0bad6ba] | 569 | echo "020-creatingtoolsdir:" >> $MKFILE
|
---|
[0fc4c75] | 570 | echo -e "\t@\$(call echo_message, Building)" >> $MKFILE
|
---|
| 571 | echo -e "\t@mkdir -v \$(LFS)/tools && \\" >> $MKFILE
|
---|
[a5e49c6] | 572 | echo -e "\tln -sv \$(LFS)/tools / && \\" >> $MKFILE
|
---|
[0bad6ba] | 573 | echo -e "\ttouch \$@\n" >> $MKFILE
|
---|
| 574 |
|
---|
[e909d9d] | 575 | echo "021-addinguser: 020-creatingtoolsdir" >> $MKFILE
|
---|
[0fc4c75] | 576 | echo -e "\t@\$(call echo_message, Building)" >> $MKFILE
|
---|
| 577 | echo -e "\t@groupadd lfs && \\" >> $MKFILE
|
---|
[0bad6ba] | 578 | echo -e "\tuseradd -s /bin/bash -g lfs -m -k /dev/null lfs && \\" >> $MKFILE
|
---|
| 579 | echo -e "\tchown lfs \$(LFS)/tools && \\" >> $MKFILE
|
---|
| 580 | echo -e "\tchown lfs \$(LFS)/sources && \\" >> $MKFILE
|
---|
[732d1f1] | 581 | # Make the scripts executable
|
---|
[0bad6ba] | 582 | echo -e "\tchmod -R +x $JHALFSDIR/commands && \\" >> $MKFILE
|
---|
| 583 | echo -e "\ttouch \$@\n" >> $MKFILE
|
---|
| 584 |
|
---|
[e909d9d] | 585 | echo "022-settingenvironment: 021-addinguser" >> $MKFILE
|
---|
[0fc4c75] | 586 | echo -e "\t@\$(call echo_message, Building)" >> $MKFILE
|
---|
| 587 | echo -e "\t@echo \"exec env -i HOME=\\\$\$HOME TERM=\\\$\$TERM PS1='\u:\w\$$ ' /bin/bash\" > /home/lfs/.bash_profile && \\" >> $MKFILE
|
---|
[0bad6ba] | 588 | echo -e "\techo \"set +h\" > /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
| 589 | echo -e "\techo \"umask 022\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
| 590 | echo -e "\techo \"LFS=/mnt/lfs\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
| 591 | echo -e "\techo \"LC_ALL=POSIX\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
| 592 | echo -e "\techo \"PATH=/tools/bin:/bin:/usr/bin\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
| 593 | echo -e "\techo \"export LFS LC_ALL PATH\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
[44f88e3] | 594 | # Source the file where we place changing variables.
|
---|
| 595 | echo -e "\techo \". $JHALFSDIR/envars\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
[88dcce5] | 596 | echo -e "\tchown lfs:lfs /home/lfs/.bash* && \\" >> $MKFILE
|
---|
[44f88e3] | 597 | echo -e "\ttouch envars && \\" >> $MKFILE
|
---|
[88dcce5] | 598 | echo -e "\ttouch \$@" >> $MKFILE
|
---|
[0bad6ba] | 599 |
|
---|
[9e406b5] | 600 | # Bring over the items from the Makefile.tmp
|
---|
| 601 | cat $MKFILE.tmp >> $MKFILE
|
---|
| 602 | rm $MKFILE.tmp
|
---|
| 603 | echo -ne "done\n"
|
---|
[f8de156] | 604 | }
|
---|
| 605 |
|
---|
[88dcce5] | 606 | run_make() {
|
---|
[d310939] | 607 | # Test if make must be run.
|
---|
| 608 | if [ "$RUNMAKE" = "1" ] ; then
|
---|
| 609 | # Build the system
|
---|
| 610 | if [ -e $MKFILE ] ; then
|
---|
[e3e1db0] | 611 | echo -ne "Building the LFS system...\n"
|
---|
[d310939] | 612 | cd $JHALFSDIR && make
|
---|
| 613 | echo -ne "done\n"
|
---|
| 614 | fi
|
---|
[88dcce5] | 615 | fi
|
---|
| 616 | }
|
---|
[1236262] | 617 |
|
---|
[4dafc45] | 618 | if [ ! -d $JHALFSDIR ] ; then
|
---|
[557fe91] | 619 | mkdir -p $JHALFSDIR
|
---|
[1236262] | 620 | fi
|
---|
| 621 |
|
---|
[97a3ffc] | 622 | if [ ! -d $BUILDDIR$LOGDIR ] ; then
|
---|
| 623 | mkdir $BUILDDIR$LOGDIR
|
---|
[a5e49c6] | 624 | fi
|
---|
| 625 |
|
---|
[97a3ffc] | 626 | >$BUILDDIR$LOGDIR/$LOG
|
---|
[409488e] | 627 |
|
---|
| 628 | if [ "$PWD" != "$JHALFSDIR" ] ; then
|
---|
[0fc4c75] | 629 | cp $0 $XSL $FNC $JHALFSDIR/
|
---|
[409488e] | 630 | fi
|
---|
| 631 |
|
---|
[1236262] | 632 | get_book
|
---|
[f8de156] | 633 | build_Makefile
|
---|
[71642ef] | 634 | run_make
|
---|