[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
|
---|
[db9cec6] | 150 | if [ -z $TEST ] ; then TEST=0 ; fi
|
---|
[1236262] | 151 |
|
---|
| 152 | get_book() {
|
---|
| 153 | # Check for Subversion instead of just letting the script hit 'svn' and fail.
|
---|
| 154 | test `type -p svn` || eval "echo \"This feature requires Subversion.\"
|
---|
[557fe91] | 155 | exit 1"
|
---|
[4dafc45] | 156 | cd $JHALFSDIR
|
---|
[fbb6b78] | 157 |
|
---|
[1236262] | 158 | # Test to make sure the LFS version is set
|
---|
| 159 | if [ -z $LFSVRS ] ; then LFSVRS=development ; fi
|
---|
[24530379] | 160 |
|
---|
[56dd1e2] | 161 | # Set the book's sources directory
|
---|
[24530379] | 162 | if [ -z $BOOK ] ; then BOOK=lfs-$LFSVRS ; fi
|
---|
| 163 |
|
---|
| 164 | if [ -z $WC ] ; then
|
---|
| 165 | echo -n "Downloading the LFS Book, version $LFSVRS... "
|
---|
| 166 |
|
---|
| 167 | # Grab the LFS book fresh if it's missing, otherwise, update it from the
|
---|
| 168 | # repo. If we've already extracted the commands, move on to getting the
|
---|
| 169 | # sources.
|
---|
| 170 | if [ -d lfs-$LFSVRS ] ; then
|
---|
| 171 | cd lfs-$LFSVRS
|
---|
| 172 | if svn up | grep -q At && test -d $JHALFSDIR/commands && \
|
---|
| 173 | test -f $JHALFSDIR/packages && test -f $JHALFSDIR/patches ; then
|
---|
| 174 | echo -ne "done\n"
|
---|
| 175 | get_sources
|
---|
| 176 | else
|
---|
| 177 | echo -ne "done\n"
|
---|
| 178 | extract_commands
|
---|
| 179 | fi
|
---|
[557fe91] | 180 | else
|
---|
[24530379] | 181 | if [ $LFSVRS = development ] ; then
|
---|
| 182 | svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$BUILDDIR$LOGDIR/$LOG 2>&1
|
---|
| 183 | else
|
---|
| 184 | svn co $SVN/LFS/branches/$LFSVRS/BOOK lfs-$LFSVRS >>$BUILDDIR$LOGDIR/$LOG 2>&1
|
---|
| 185 | fi
|
---|
[557fe91] | 186 | echo -ne "done\n"
|
---|
| 187 | extract_commands
|
---|
| 188 | fi
|
---|
[1236262] | 189 | else
|
---|
[24530379] | 190 | echo -ne "Using $BOOK as book's sources ...\n"
|
---|
[557fe91] | 191 | extract_commands
|
---|
[1236262] | 192 | fi
|
---|
| 193 | }
|
---|
| 194 |
|
---|
| 195 | extract_commands() {
|
---|
| 196 | # Check for libxslt instead of just letting the script hit 'xsltproc' and fail.
|
---|
| 197 | test `type -p xsltproc` || eval "echo \"This feature requires libxslt.\"
|
---|
[557fe91] | 198 | exit 1"
|
---|
[4dafc45] | 199 | cd $JHALFSDIR
|
---|
[1236262] | 200 |
|
---|
| 201 | # Start clean
|
---|
| 202 | if [ -d commands ] ; then rm -rf commands ; fi && mkdir commands
|
---|
| 203 | echo -n "Extracting commands... "
|
---|
| 204 |
|
---|
[dc2fee8] | 205 | # Dump the commands in shell script form from the LFS book.
|
---|
[db9cec6] | 206 | xsltproc --nonet --xinclude --stringparam testsuite $TEST -o ./commands/ \
|
---|
[24530379] | 207 | $XSL $BOOK/index.xml >>$BUILDDIR$LOGDIR/$LOG 2>&1
|
---|
[1236262] | 208 |
|
---|
| 209 | # Grab the patches and package names.
|
---|
[4dafc45] | 210 | cd $JHALFSDIR
|
---|
[1236262] | 211 | for i in patches packages ; do rm -f $i ; done
|
---|
[24530379] | 212 | grep "\-version" $BOOK/general.ent | sed -e 's@<!ENTITY @@' -e 's@">@"@' \
|
---|
[557fe91] | 213 | -e '/generic/d' >> packages
|
---|
[24530379] | 214 | grep "ENTITY" $BOOK/patches.ent | sed -e 's/.* "//' -e 's/">//' >> patches
|
---|
[1236262] | 215 |
|
---|
| 216 | # Done. Moving on...
|
---|
| 217 | echo -ne "done\n"
|
---|
| 218 | get_sources
|
---|
| 219 | }
|
---|
| 220 |
|
---|
| 221 | download() {
|
---|
| 222 | cd $BUILDDIR/sources
|
---|
| 223 |
|
---|
| 224 | # Hackish fix for the bash-doc package that doesn't conform
|
---|
| 225 | # to norms in the URL scheme.
|
---|
| 226 | DIR=`echo $1 | sed 's@-doc@@'`
|
---|
| 227 |
|
---|
| 228 | # Find the md5 sum for this package.
|
---|
| 229 | if [ $2 != MD5SUMS ] ; then MD5=`grep " $2" MD5SUMS` ; fi
|
---|
| 230 |
|
---|
| 231 | if [ ! -f $2 ] ; then
|
---|
[557fe91] | 232 | case $DL in
|
---|
| 233 | wget )
|
---|
| 234 | wget $HTTP/$DIR/$2
|
---|
| 235 | ;;
|
---|
| 236 | curl )
|
---|
| 237 | `curl -# $HTTP/$DIR/$2 -o $2`
|
---|
| 238 | ;;
|
---|
| 239 | * )
|
---|
| 240 | echo "$DL not supported at this time."
|
---|
| 241 | ;;
|
---|
| 242 | esac
|
---|
[1236262] | 243 | elif ! echo "$MD5" | md5sum -c - >/dev/null 2>/dev/null ; then
|
---|
[557fe91] | 244 | case $DL in
|
---|
| 245 | wget )
|
---|
| 246 | wget -c $HTTP/$DIR/$2
|
---|
| 247 | ;;
|
---|
| 248 | curl )
|
---|
| 249 | `curl -# -C - $HTTP/$DIR/$2 -o $2`
|
---|
| 250 | ;;
|
---|
| 251 | * )
|
---|
| 252 | echo "$DL not supported at this time."
|
---|
| 253 | ;;
|
---|
| 254 | esac
|
---|
[1236262] | 255 | fi
|
---|
| 256 | if [ $2 != MD5SUMS ] && ! echo "$MD5" | md5sum -c - ; then
|
---|
| 257 | exit 1
|
---|
| 258 | fi
|
---|
| 259 | }
|
---|
| 260 |
|
---|
| 261 | get_sources() {
|
---|
| 262 |
|
---|
[07f47df] | 263 | # Test if the packages must be downloaded
|
---|
[d310939] | 264 | if [ "$HPKG" = "1" ] ; then
|
---|
[1236262] | 265 |
|
---|
[07f47df] | 266 | # This variable is necessary to make sure the `cat $JHALFSDIR/packages`
|
---|
| 267 | # separates each iteration by lines. It is necessary to have the second
|
---|
| 268 | # ' on the next line.
|
---|
| 269 | IFS='
|
---|
| 270 | '
|
---|
[1236262] | 271 |
|
---|
[07f47df] | 272 | if [ ! -d $BUILDDIR/sources ] ; then mkdir $BUILDDIR/sources ; fi
|
---|
| 273 | cd $BUILDDIR/sources
|
---|
| 274 | if [ -f MD5SUMS ] ; then rm MD5SUMS ; fi
|
---|
| 275 |
|
---|
| 276 | download "" MD5SUMS
|
---|
| 277 |
|
---|
| 278 | # Iterate through each package and grab it, along with any patches it needs.
|
---|
| 279 | for i in `cat $JHALFSDIR/packages` ; do
|
---|
| 280 | PKG=`echo $i | sed 's/-version.*//'`
|
---|
| 281 |
|
---|
| 282 | # Someone used some silly entities right next to the valid package entities.
|
---|
| 283 | if [ "$PKG" = "expect-lib" -o "$PKG" = "linux-dl" ] ; then continue ; fi
|
---|
| 284 |
|
---|
| 285 | VRS=`echo $i | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 286 | if [ "$PKG" = "tcl" ] ; then
|
---|
| 287 | FILE="$PKG$VRS-src.tar.bz2"
|
---|
| 288 | else
|
---|
| 289 | FILE="$PKG-$VRS.tar.bz2"
|
---|
| 290 | fi
|
---|
| 291 | download $PKG $FILE
|
---|
| 292 | for patch in `grep "$PKG-&$PKG" $JHALFSDIR/patches` ; do
|
---|
| 293 | PATCH=`echo $patch | sed 's@&'$PKG'-version;@'$VRS'@'`
|
---|
| 294 | download $PKG $PATCH
|
---|
| 295 | done
|
---|
[fbb6b78] | 296 | done
|
---|
[07f47df] | 297 | fi
|
---|
[1236262] | 298 | }
|
---|
| 299 |
|
---|
[f8de156] | 300 | build_Makefile() {
|
---|
[9e406b5] | 301 | echo -n "Creating Makefile... "
|
---|
[f8de156] | 302 | cd $JHALFSDIR/commands
|
---|
[fbb6b78] | 303 |
|
---|
[f8de156] | 304 | # Start with a clean Makefile.tmp file
|
---|
| 305 | >$MKFILE.tmp
|
---|
| 306 |
|
---|
[0bad6ba] | 307 | for file in chapter05/* ; do
|
---|
[71642ef] | 308 | # Keep the script file name
|
---|
| 309 | i=`basename $file`
|
---|
[63b2859] | 310 |
|
---|
[71642ef] | 311 | # First append each name of the script files to a list (this will become
|
---|
| 312 | # the names of the targets in the Makefile
|
---|
| 313 | chapter5="$chapter5 $i"
|
---|
[557fe91] | 314 |
|
---|
[71642ef] | 315 | # Grab the name of the target (minus the -pass1 or -pass2 in the case of gcc
|
---|
| 316 | # and binutils in chapter 5)
|
---|
| 317 | name=`echo $i | sed -e 's@[0-9]\{3\}-@@' -e 's@-pass[0-9]\{1\}@@'`
|
---|
[557fe91] | 318 |
|
---|
[e909d9d] | 319 | # Set the dependency for the first target.
|
---|
| 320 | if [ -z $PREV ] ; then PREV=022-settingenvironment ; fi
|
---|
| 321 |
|
---|
| 322 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 323 | # as a dependency.
|
---|
| 324 | echo -e "\n$i: $PREV" >> $MKFILE.tmp
|
---|
[557fe91] | 325 |
|
---|
[71642ef] | 326 | # Find the version of the command files, if it corresponds with the building of
|
---|
| 327 | # a specific package
|
---|
| 328 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
[557fe91] | 329 |
|
---|
[71642ef] | 330 | # If $vrs isn't empty, we've got a package...
|
---|
| 331 | if [ "$vrs" != "" ] ; then
|
---|
| 332 | if [ "$name" = "tcl" ] ; then
|
---|
| 333 | FILE="$name$vrs-src.tar.bz2"
|
---|
| 334 | else
|
---|
| 335 | FILE="$name-$vrs.tar.bz2"
|
---|
| 336 | fi
|
---|
[557fe91] | 337 |
|
---|
[71642ef] | 338 | # Insert instructions for unpacking the package and to set
|
---|
| 339 | # the PKGDIR variable.
|
---|
| 340 | echo -e "\t\$(call unpack-lfs,$FILE)" >> $MKFILE.tmp
|
---|
| 341 | echo -e "\t-ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
| 342 | echo -e "\tchown -R lfs \$(LFS)\$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
|
---|
| 343 | echo -e "\techo \"PKGDIR=\$(LFS)\$(SRC)/\$\$ROOT\" > envars && \\" >> $MKFILE.tmp
|
---|
| 344 | echo -e "\techo \"export PKGDIR\" >> envars && \\" >> $MKFILE.tmp
|
---|
| 345 | fi
|
---|
[557fe91] | 346 |
|
---|
[97a3ffc] | 347 | # Dump the path to the Binutils pass1 or TCL sources directory.
|
---|
| 348 | if [ "$i" = "027-binutils-pass1" -o "$i" = "032-tcl" ] ; then
|
---|
[71642ef] | 349 | echo -e "\techo \"\$(LFS)\$(SRC)/\$\$ROOT\" > sources-dir && \\" >> $MKFILE.tmp
|
---|
| 350 | fi
|
---|
[88dcce5] | 351 |
|
---|
[97a3ffc] | 352 | # Dump the path to the Binutils pass2 sources directory.
|
---|
| 353 | if [ "$i" = "036-binutils-pass2" ] ; then
|
---|
| 354 | echo -e "\techo \"\$(SRC)/\$\$ROOT\" > sources-dir && \\" >> $MKFILE.tmp
|
---|
| 355 | fi
|
---|
| 356 |
|
---|
[71642ef] | 357 | # Inser date and disk usage at the top of the log file.
|
---|
[97a3ffc] | 358 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >\$(LFS)\$(LOGDIR)/$i && \\" >> $MKFILE.tmp
|
---|
[88dcce5] | 359 |
|
---|
[71642ef] | 360 | # For the Adjusting phase we must to cd to the binutils-build directory.
|
---|
| 361 | if [ "$i" = "031-adjusting" ] ; then
|
---|
[d310939] | 362 | echo -e "\techo \"PKGDIR=\$(LFS)\$(SRC)/binutils-build\" > envars && \\" >> $MKFILE.tmp
|
---|
[71642ef] | 363 | echo -e "\techo \"export PKGDIR\" >> envars && \\" >> $MKFILE.tmp
|
---|
| 364 | fi
|
---|
[0209bb7] | 365 |
|
---|
[97a3ffc] | 366 | # For the Expect build we need to set the TCLPATH envar.
|
---|
[71642ef] | 367 | if [ "$i" = "033-expect" ] ; then
|
---|
| 368 | echo -e "\techo \"TCLPATH=\`cat sources-dir\`\" >> envars && \\" >> $MKFILE.tmp
|
---|
| 369 | echo -e "\techo \"export TCLPATH\" >> envars && \\" >> $MKFILE.tmp
|
---|
| 370 | fi
|
---|
[557fe91] | 371 |
|
---|
[71642ef] | 372 | # Insert the script run
|
---|
[97a3ffc] | 373 | echo -e "\tsu - lfs -c \". /home/lfs/.bashrc && $JHALFSDIR/commands/$file\" >>\$(LFS)\$(LOGDIR)/$i 2>&1 && \\" >> $MKFILE.tmp
|
---|
[71642ef] | 374 |
|
---|
| 375 | # Inser date and disk usage at the bottom of the log file.
|
---|
[97a3ffc] | 376 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>\$(LFS)\$(LOGDIR)/$i && \\" >> $MKFILE.tmp
|
---|
[71642ef] | 377 |
|
---|
| 378 | # Include a touch of the target name so make can check
|
---|
| 379 | # if it's already been made.
|
---|
| 380 | echo -e "\ttouch \$@" >> $MKFILE.tmp
|
---|
| 381 |
|
---|
| 382 | # Remove the build directory(ies) even if the package build fails, except for
|
---|
[d310939] | 383 | # Binutils and TCL. In that cases the sources directories are removed
|
---|
[71642ef] | 384 | # only if the build fails.
|
---|
| 385 | if [ "$vrs" != "" ] ; then
|
---|
[d310939] | 386 | if [ "$i" != "027-binutils-pass1" ] && [ "$i" != "032-tcl" ] && [ "$i" != "036-binutils-pass2" ] ; then
|
---|
[71642ef] | 387 | echo -e "\tROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
| 388 | echo -e "\trm -r \$(LFS)\$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
|
---|
[d310939] | 389 | echo -e "\tif [ -e \$(LFS)\$(SRC)/$name-build ]; then \\" >> $MKFILE.tmp
|
---|
| 390 | echo -e "\t\trm -r \$(LFS)\$(SRC)/$name-build; \\" >> $MKFILE.tmp
|
---|
[71642ef] | 391 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 392 | fi
|
---|
| 393 | fi
|
---|
[d310939] | 394 | if [ "$i" = "027-binutils-pass1" -o "$i" = "036-binutils-pass2" ] ; then
|
---|
[71642ef] | 395 | echo -e "\tif [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp
|
---|
| 396 | echo -e "\t\tROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
| 397 | echo -e "\t\trm -r \$(LFS)\$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
|
---|
[d310939] | 398 | echo -e "\t\trm -r \$(LFS)\$(SRC)/binutils-build; \\" >> $MKFILE.tmp
|
---|
| 399 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 400 | fi
|
---|
| 401 | if [ "$i" = "032-tcl" ] ; then
|
---|
| 402 | echo -e "\tif [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp
|
---|
| 403 | echo -e "\t\tROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
| 404 | echo -e "\t\trm -r \$(LFS)\$(SRC)/\$\$ROOT; \\" >> $MKFILE.tmp
|
---|
[71642ef] | 405 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 406 | fi
|
---|
[44f88e3] | 407 |
|
---|
[d310939] | 408 | # Remove the Binutils pass 1 sources after a sucessfull Adjusting phase.
|
---|
[71642ef] | 409 | if [ "$i" = "031-adjusting" ] ; then
|
---|
| 410 | echo -e "\tif [ -e \$@ ] ; then \\" >> $MKFILE.tmp
|
---|
| 411 | echo -e "\t\trm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp
|
---|
[d310939] | 412 | echo -e "\t\trm -r \$(LFS)\$(SRC)/binutils-build && \\" >> $MKFILE.tmp
|
---|
| 413 | echo -e "\t\trm sources-dir; \\" >> $MKFILE.tmp
|
---|
[71642ef] | 414 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 415 | fi
|
---|
[0209bb7] | 416 |
|
---|
[71642ef] | 417 | # Remove the TCL sources after a sucessfull Expect build.
|
---|
| 418 | if [ "$i" = "033-expect" ] ; then
|
---|
| 419 | echo -e "\tif [ -e \$@ ] ; then \\" >> $MKFILE.tmp
|
---|
| 420 | echo -e "\t\trm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp
|
---|
[d310939] | 421 | echo -e "\t\trm sources-dir; \\" >> $MKFILE.tmp
|
---|
[71642ef] | 422 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 423 | fi
|
---|
[a5e49c6] | 424 |
|
---|
[71642ef] | 425 | # Check if the package has been sucessfully build.
|
---|
| 426 | echo -e "\tif [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp
|
---|
| 427 | echo -e "\t\techo \"The build of \$@ has failed\" && exit 1; \\" >> $MKFILE.tmp
|
---|
| 428 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
[e909d9d] | 429 |
|
---|
| 430 | # Keep the script file name for Makefile dependencies.
|
---|
| 431 | PREV=$i
|
---|
[f8de156] | 432 | done
|
---|
[9e406b5] | 433 |
|
---|
[97a3ffc] | 434 | for file in chapter06/* ; do
|
---|
| 435 | # Keep the script file name
|
---|
| 436 | i=`basename $file`
|
---|
| 437 |
|
---|
| 438 | # First append each name of the script files to a list (this will become
|
---|
| 439 | # the names of the targets in the Makefile
|
---|
| 440 | chapter6="$chapter6 $i"
|
---|
| 441 |
|
---|
| 442 | # Grab the name of the target
|
---|
| 443 | name=`echo $i | sed -e 's@[0-9]\{3\}-@@'`
|
---|
| 444 |
|
---|
| 445 | # Set the dependency for the first target.
|
---|
| 446 | if [ -z $PREV ] ; then PREV=055-stripping ; fi
|
---|
| 447 |
|
---|
| 448 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 449 | # as a dependency.
|
---|
| 450 | echo -e "\n$i: $PREV" >> $MKFILE.tmp
|
---|
| 451 |
|
---|
| 452 | # Find the version of the command files, if it corresponds with the building of
|
---|
| 453 | # a specific package
|
---|
| 454 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 455 |
|
---|
| 456 | # If $vrs isn't empty, we've got a package...
|
---|
| 457 | if [ "$vrs" != "" ] ; then
|
---|
| 458 | FILE="$name-$vrs.tar.bz2"
|
---|
| 459 |
|
---|
| 460 | # Insert instructions for unpacking the package and changing directories
|
---|
| 461 | echo -e "\t\$(call unpack,$FILE)" >> $MKFILE.tmp
|
---|
| 462 | echo -e "\t-ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
[56dd1e2] | 463 | echo -e "\techo \"PKGDIR=\$(SRC)/\$\$ROOT\" > envars && \\" >> $MKFILE.tmp
|
---|
| 464 | echo -e "\techo \"export PKGDIR\" >> envars && \\" >> $MKFILE.tmp
|
---|
[97a3ffc] | 465 | fi
|
---|
| 466 |
|
---|
| 467 | # Inser date and disk usage at the top of the log file.
|
---|
| 468 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* /\`\\\n\" >\$(LOGDIR)/$i && \\" >> $MKFILE.tmp
|
---|
| 469 |
|
---|
| 470 | # For the Re-Adjusting phase we must to cd to the binutils-build directory.
|
---|
| 471 | if [ "$i" = "067-readjusting" ] ; then
|
---|
[56dd1e2] | 472 | echo -e "\techo \"PKGDIR=\$(SRC)/binutils-build\" > envars && \\" >> $MKFILE.tmp
|
---|
| 473 | echo -e "\techo \"export PKGDIR\" >> envars && \\" >> $MKFILE.tmp
|
---|
[97a3ffc] | 474 | fi
|
---|
| 475 |
|
---|
| 476 | # Insert the script run
|
---|
| 477 | echo -e "\t/jhalfs/commands/$file >>\$(LOGDIR)/$i 2>&1 && \\" >> $MKFILE.tmp
|
---|
| 478 |
|
---|
| 479 | # Inser date and disk usage at the bottom of the log file.
|
---|
| 480 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>\$(LOGDIR)/$i && \\" >> $MKFILE.tmp
|
---|
| 481 |
|
---|
| 482 | # Include a touch of the target name so make can check
|
---|
| 483 | # if it's already been made.
|
---|
| 484 | echo -e "\ttouch \$@" >> $MKFILE.tmp
|
---|
| 485 |
|
---|
[6299c11] | 486 | # Remove the build directory(ies) even if the package build fails.
|
---|
[97a3ffc] | 487 | if [ "$vrs" != "" ] ; then
|
---|
| 488 | echo -e "\tROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
| 489 | echo -e "\trm -r \$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
|
---|
| 490 | echo -e "\tif [ -e \$(SRC)/$name-build ]; then \\" >> $MKFILE.tmp
|
---|
| 491 | echo -e "\t\trm -r \$(SRC)/$name-build; \\" >> $MKFILE.tmp
|
---|
| 492 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 493 | fi
|
---|
| 494 |
|
---|
| 495 | # Remove the Binutils pass 2 sources after a sucessfull Re-Adjusting phase.
|
---|
[6299c11] | 496 | if [ "$i" = "067-readjusting" ] ; then
|
---|
[97a3ffc] | 497 | echo -e "\tif [ -e \$@ ] ; then \\" >> $MKFILE.tmp
|
---|
| 498 | echo -e "\t\trm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp
|
---|
| 499 | echo -e "\t\trm -r \$(SRC)/binutils-build && \\" >> $MKFILE.tmp
|
---|
| 500 | echo -e "\t\trm sources-dir; \\" >> $MKFILE.tmp
|
---|
| 501 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 502 | fi
|
---|
| 503 |
|
---|
| 504 | # Check if the package has been sucessfully build.
|
---|
| 505 | echo -e "\tif [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp
|
---|
| 506 | echo -e "\t\techo \"The build of \$@ has failed\" && exit 1; \\" >> $MKFILE.tmp
|
---|
| 507 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
| 508 |
|
---|
| 509 | # Keep the script file name for Makefile dependencies.
|
---|
| 510 | PREV=$i
|
---|
| 511 | done
|
---|
| 512 |
|
---|
[a5e49c6] | 513 | # Stick variables and some defines at the top of the real makefile
|
---|
[9e406b5] | 514 | echo "export SRC := /sources" > $MKFILE
|
---|
| 515 | echo "export LFS := $BUILDDIR" >> $MKFILE
|
---|
[a5e49c6] | 516 | echo -e "export LOGDIR := $LOGDIR\n" >> $MKFILE
|
---|
[0bad6ba] | 517 | echo "define unpack-lfs" >> $MKFILE
|
---|
| 518 | echo -e "\t@cd \$(LFS)\$(SRC) ; tar -xvjf \$(1) > /tmp/unpacked" >> $MKFILE
|
---|
| 519 | echo -e "endef\n" >> $MKFILE
|
---|
[9e406b5] | 520 | echo "define unpack" >> $MKFILE
|
---|
| 521 | echo -e "\t@cd \$(SRC) ; tar -xvf \$(1) > /tmp/unpacked" >> $MKFILE
|
---|
| 522 | echo -e "endef\n" >> $MKFILE
|
---|
| 523 |
|
---|
[0bad6ba] | 524 | # Drop in the main target 'all:' and the chapter targets with each sub-target
|
---|
| 525 | # as a dependency.
|
---|
[6299c11] | 526 | echo "all: chapter4 chapter5" >> $MKFILE
|
---|
| 527 | echo -e "\techo -e \"\\\n\\\tYour new LFS system has been sucessfully build\"\n" >> $MKFILE
|
---|
[0bad6ba] | 528 | echo -e "chapter4: 020-creatingtoolsdir 021-addinguser 022-settingenvironment\n" >> $MKFILE
|
---|
[97a3ffc] | 529 | echo -e "chapter5: chapter4 $chapter5\n" >> $MKFILE >> $MKFILE
|
---|
| 530 | echo -e "chapter6: chapter5 $chapter6\n" >> $MKFILE
|
---|
[0bad6ba] | 531 |
|
---|
| 532 | # Clean targets
|
---|
[0209bb7] | 533 | echo "clean-all: clean" >> $MKFILE
|
---|
| 534 | echo -e "\trm -rfv ./*\n" >> $MKFILE
|
---|
| 535 |
|
---|
| 536 | echo -e "clean: clean-chapter5 clean-chapter4\n" >> $MKFILE
|
---|
[44f88e3] | 537 |
|
---|
[0bad6ba] | 538 | echo "clean-chapter4:" >> $MKFILE
|
---|
[0209bb7] | 539 | echo -e "\t-userdel lfs" >> $MKFILE
|
---|
| 540 | echo -e "\trm -rfv /home/lfs" >> $MKFILE
|
---|
| 541 | echo -e "\trm -rfv \$(LFS)/tools" >> $MKFILE
|
---|
| 542 | echo -e "\trm -fv /tools" >> $MKFILE
|
---|
| 543 | echo -e "\trm -fv envars" >> $MKFILE
|
---|
| 544 | echo -e "\trm -fv 02* logs/02*.log\n" >> $MKFILE
|
---|
[44f88e3] | 545 |
|
---|
| 546 | echo "clean-chapter5:" >> $MKFILE
|
---|
[0209bb7] | 547 | echo -e "\trm -rfv \$(LFS)/tools/*" >> $MKFILE
|
---|
| 548 | echo -e "\trm -fv envars" >> $MKFILE
|
---|
| 549 | echo -e "\trm -fv $chapter5" >> $MKFILE
|
---|
| 550 | echo -e "\tcd logs && rm -fv $chapter5 && cd ..\n" >> $MKFILE
|
---|
[0bad6ba] | 551 |
|
---|
[44f88e3] | 552 | # The chapter4 sub-targets are hard-coded to can create the lfs user,
|
---|
| 553 | # to make the scripts executables, and to create a clean environment
|
---|
| 554 | # for the lfs user.
|
---|
[0bad6ba] | 555 | echo "020-creatingtoolsdir:" >> $MKFILE
|
---|
[a5e49c6] | 556 | echo -e "\tmkdir -v \$(LFS)/tools && \\" >> $MKFILE
|
---|
| 557 | echo -e "\tln -sv \$(LFS)/tools / && \\" >> $MKFILE
|
---|
[0bad6ba] | 558 | echo -e "\ttouch \$@\n" >> $MKFILE
|
---|
| 559 |
|
---|
[e909d9d] | 560 | echo "021-addinguser: 020-creatingtoolsdir" >> $MKFILE
|
---|
[0bad6ba] | 561 | echo -e "\tgroupadd lfs && \\" >> $MKFILE
|
---|
| 562 | echo -e "\tuseradd -s /bin/bash -g lfs -m -k /dev/null lfs && \\" >> $MKFILE
|
---|
| 563 | echo -e "\tchown lfs \$(LFS)/tools && \\" >> $MKFILE
|
---|
| 564 | echo -e "\tchown lfs \$(LFS)/sources && \\" >> $MKFILE
|
---|
| 565 | # Make the scripts executables
|
---|
| 566 | echo -e "\tchmod -R +x $JHALFSDIR/commands && \\" >> $MKFILE
|
---|
| 567 | echo -e "\ttouch \$@\n" >> $MKFILE
|
---|
| 568 |
|
---|
[e909d9d] | 569 | echo "022-settingenvironment: 021-addinguser" >> $MKFILE
|
---|
[0bad6ba] | 570 | echo -e "\techo \"exec env -i HOME=\\\$\$HOME TERM=\\\$\$TERM PS1='\u:\w\$$ ' /bin/bash\" > /home/lfs/.bash_profile && \\" >> $MKFILE
|
---|
| 571 | echo -e "\techo \"set +h\" > /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
| 572 | echo -e "\techo \"umask 022\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
| 573 | echo -e "\techo \"LFS=/mnt/lfs\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
| 574 | echo -e "\techo \"LC_ALL=POSIX\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
| 575 | echo -e "\techo \"PATH=/tools/bin:/bin:/usr/bin\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
| 576 | echo -e "\techo \"export LFS LC_ALL PATH\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
[44f88e3] | 577 | # Source the file where we place changing variables.
|
---|
| 578 | echo -e "\techo \". $JHALFSDIR/envars\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
[88dcce5] | 579 | echo -e "\tchown lfs:lfs /home/lfs/.bash* && \\" >> $MKFILE
|
---|
[44f88e3] | 580 | echo -e "\ttouch envars && \\" >> $MKFILE
|
---|
[88dcce5] | 581 | echo -e "\ttouch \$@" >> $MKFILE
|
---|
[0bad6ba] | 582 |
|
---|
[9e406b5] | 583 | # Bring over the items from the Makefile.tmp
|
---|
| 584 | cat $MKFILE.tmp >> $MKFILE
|
---|
| 585 | rm $MKFILE.tmp
|
---|
| 586 | echo -ne "done\n"
|
---|
[f8de156] | 587 | }
|
---|
| 588 |
|
---|
[88dcce5] | 589 | run_make() {
|
---|
[d310939] | 590 | # Test if make must be run.
|
---|
| 591 | if [ "$RUNMAKE" = "1" ] ; then
|
---|
| 592 | # Build the system
|
---|
| 593 | if [ -e $MKFILE ] ; then
|
---|
| 594 | echo -ne "Building the LFS system\n"
|
---|
| 595 | cd $JHALFSDIR && make
|
---|
| 596 | echo -ne "done\n"
|
---|
| 597 | fi
|
---|
[88dcce5] | 598 | fi
|
---|
| 599 | }
|
---|
[1236262] | 600 |
|
---|
[4dafc45] | 601 | if [ ! -d $JHALFSDIR ] ; then
|
---|
[557fe91] | 602 | mkdir -p $JHALFSDIR
|
---|
[1236262] | 603 | fi
|
---|
| 604 |
|
---|
[97a3ffc] | 605 | if [ ! -d $BUILDDIR$LOGDIR ] ; then
|
---|
| 606 | mkdir $BUILDDIR$LOGDIR
|
---|
[a5e49c6] | 607 | fi
|
---|
| 608 |
|
---|
[97a3ffc] | 609 | >$BUILDDIR$LOGDIR/$LOG
|
---|
[409488e] | 610 |
|
---|
| 611 | if [ "$PWD" != "$JHALFSDIR" ] ; then
|
---|
| 612 | cp $0 $XSL $JHALFSDIR/
|
---|
| 613 | fi
|
---|
| 614 |
|
---|
[1236262] | 615 | get_book
|
---|
[f8de156] | 616 | build_Makefile
|
---|
[71642ef] | 617 | run_make
|
---|