source: jhalfs@ 24530379

0.2 1.0 2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 24530379 was 24530379, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Added support for local book's sources.

  • Property mode set to 100755
File size: 19.8 KB
RevLine 
[fbb6b78]1#!/bin/sh
[1236262]2
3version="
[63b2859]4jhalfs development
5
[db9cec6]6Originally written by Jeremy Huntwork.
[557fe91]7Maintained by Manuel Canales Esparcia.
[1236262]8
9This program is published under the \
[557fe91]10Gnu General Public License, Version 2.
11"
[1236262]12
13usage="\
14Usage: $0 [OPTION]
15
16Options:
[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
40help="\
41Try '$0 --help' for more information."
42
43exit_missing_arg="\
44echo \"Option '\$1' requires an argument\" >&2
45echo \"\$help\" >&2
46exit 1"
47
48no_dl_client="\
49echo \"Could not find a way to download the LFS sources.\" >&2
50echo \"Attempting to continue.\" >&2"
51
52while 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]121done
122
123# Test to make sure we're running the build as root
124
125if [ "$UID" != "0" ] ; then
[557fe91]126 echo "You must be logged in as root to successfully build LFS."
127 exit 1
[1236262]128fi
129
130# Find the download client to use, if not already specified.
131
132if [ -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
140fi
141
142SVN="svn://svn.linuxfromscratch.org"
143HTTP=http://ftp.lfs-matrix.net/pub/lfs/lfs-packages/conglomeration
[48d7968]144if [ -z $BUILDDIR ] ; then BUILDDIR=/mnt/lfs ; fi
[4dafc45]145JHALFSDIR=$BUILDDIR/jhalfs
[97a3ffc]146LOGDIR=/jhalfs/logs
[a5e49c6]147LOG=000-jhalfs.log
[f8de156]148MKFILE=$JHALFSDIR/Makefile
[3cfe871]149XSL=dump-lfs-scripts.xsl
[db9cec6]150if [ -z $TEST ] ; then TEST=0 ; fi
[1236262]151
152get_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
161 # Set the book's soures directory
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
195extract_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
221download() {
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
261get_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]300build_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
463 echo -e "\tcd \$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
464 fi
465
466 # Inser date and disk usage at the top of the log file.
467 echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* /\`\\\n\" >\$(LOGDIR)/$i && \\" >> $MKFILE.tmp
468
469 # For the Re-Adjusting phase we must to cd to the binutils-build directory.
470 if [ "$i" = "067-readjusting" ] ; then
471 echo -e "\tcd \$(SRC)/binutils-build && \\" >> $MKFILE.tmp
472 fi
473
474 # Insert the script run
475 echo -e "\t/jhalfs/commands/$file >>\$(LOGDIR)/$i 2>&1 && \\" >> $MKFILE.tmp
476
477 # Inser date and disk usage at the bottom of the log file.
478 echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>\$(LOGDIR)/$i && \\" >> $MKFILE.tmp
479
480 # Include a touch of the target name so make can check
481 # if it's already been made.
482 echo -e "\ttouch \$@" >> $MKFILE.tmp
483
[6299c11]484 # Remove the build directory(ies) even if the package build fails.
[97a3ffc]485 if [ "$vrs" != "" ] ; then
486 echo -e "\tROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
487 echo -e "\trm -r \$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
488 echo -e "\tif [ -e \$(SRC)/$name-build ]; then \\" >> $MKFILE.tmp
489 echo -e "\t\trm -r \$(SRC)/$name-build; \\" >> $MKFILE.tmp
490 echo -e "\tfi;" >> $MKFILE.tmp
491 fi
492
493 # Remove the Binutils pass 2 sources after a sucessfull Re-Adjusting phase.
[6299c11]494 if [ "$i" = "067-readjusting" ] ; then
[97a3ffc]495 echo -e "\tif [ -e \$@ ] ; then \\" >> $MKFILE.tmp
496 echo -e "\t\trm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp
497 echo -e "\t\trm -r \$(SRC)/binutils-build && \\" >> $MKFILE.tmp
498 echo -e "\t\trm sources-dir; \\" >> $MKFILE.tmp
499 echo -e "\tfi;" >> $MKFILE.tmp
500 fi
501
502 # Check if the package has been sucessfully build.
503 echo -e "\tif [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp
504 echo -e "\t\techo \"The build of \$@ has failed\" && exit 1; \\" >> $MKFILE.tmp
505 echo -e "\tfi;" >> $MKFILE.tmp
506
507 # Keep the script file name for Makefile dependencies.
508 PREV=$i
509 done
510
[a5e49c6]511 # Stick variables and some defines at the top of the real makefile
[9e406b5]512 echo "export SRC := /sources" > $MKFILE
513 echo "export LFS := $BUILDDIR" >> $MKFILE
[a5e49c6]514 echo -e "export LOGDIR := $LOGDIR\n" >> $MKFILE
[0bad6ba]515 echo "define unpack-lfs" >> $MKFILE
516 echo -e "\t@cd \$(LFS)\$(SRC) ; tar -xvjf \$(1) > /tmp/unpacked" >> $MKFILE
517 echo -e "endef\n" >> $MKFILE
[9e406b5]518 echo "define unpack" >> $MKFILE
519 echo -e "\t@cd \$(SRC) ; tar -xvf \$(1) > /tmp/unpacked" >> $MKFILE
520 echo -e "endef\n" >> $MKFILE
521
[0bad6ba]522 # Drop in the main target 'all:' and the chapter targets with each sub-target
523 # as a dependency.
[6299c11]524 echo "all: chapter4 chapter5" >> $MKFILE
525 echo -e "\techo -e \"\\\n\\\tYour new LFS system has been sucessfully build\"\n" >> $MKFILE
[0bad6ba]526 echo -e "chapter4: 020-creatingtoolsdir 021-addinguser 022-settingenvironment\n" >> $MKFILE
[97a3ffc]527 echo -e "chapter5: chapter4 $chapter5\n" >> $MKFILE >> $MKFILE
528 echo -e "chapter6: chapter5 $chapter6\n" >> $MKFILE
[0bad6ba]529
530 # Clean targets
[0209bb7]531 echo "clean-all: clean" >> $MKFILE
532 echo -e "\trm -rfv ./*\n" >> $MKFILE
533
534 echo -e "clean: clean-chapter5 clean-chapter4\n" >> $MKFILE
[44f88e3]535
[0bad6ba]536 echo "clean-chapter4:" >> $MKFILE
[0209bb7]537 echo -e "\t-userdel lfs" >> $MKFILE
538 echo -e "\trm -rfv /home/lfs" >> $MKFILE
539 echo -e "\trm -rfv \$(LFS)/tools" >> $MKFILE
540 echo -e "\trm -fv /tools" >> $MKFILE
541 echo -e "\trm -fv envars" >> $MKFILE
542 echo -e "\trm -fv 02* logs/02*.log\n" >> $MKFILE
[44f88e3]543
544 echo "clean-chapter5:" >> $MKFILE
[0209bb7]545 echo -e "\trm -rfv \$(LFS)/tools/*" >> $MKFILE
546 echo -e "\trm -fv envars" >> $MKFILE
547 echo -e "\trm -fv $chapter5" >> $MKFILE
548 echo -e "\tcd logs && rm -fv $chapter5 && cd ..\n" >> $MKFILE
[0bad6ba]549
[44f88e3]550 # The chapter4 sub-targets are hard-coded to can create the lfs user,
551 # to make the scripts executables, and to create a clean environment
552 # for the lfs user.
[0bad6ba]553 echo "020-creatingtoolsdir:" >> $MKFILE
[a5e49c6]554 echo -e "\tmkdir -v \$(LFS)/tools && \\" >> $MKFILE
555 echo -e "\tln -sv \$(LFS)/tools / && \\" >> $MKFILE
[0bad6ba]556 echo -e "\ttouch \$@\n" >> $MKFILE
557
[e909d9d]558 echo "021-addinguser: 020-creatingtoolsdir" >> $MKFILE
[0bad6ba]559 echo -e "\tgroupadd lfs && \\" >> $MKFILE
560 echo -e "\tuseradd -s /bin/bash -g lfs -m -k /dev/null lfs && \\" >> $MKFILE
561 echo -e "\tchown lfs \$(LFS)/tools && \\" >> $MKFILE
562 echo -e "\tchown lfs \$(LFS)/sources && \\" >> $MKFILE
563 # Make the scripts executables
564 echo -e "\tchmod -R +x $JHALFSDIR/commands && \\" >> $MKFILE
565 echo -e "\ttouch \$@\n" >> $MKFILE
566
[e909d9d]567 echo "022-settingenvironment: 021-addinguser" >> $MKFILE
[0bad6ba]568 echo -e "\techo \"exec env -i HOME=\\\$\$HOME TERM=\\\$\$TERM PS1='\u:\w\$$ ' /bin/bash\" > /home/lfs/.bash_profile && \\" >> $MKFILE
569 echo -e "\techo \"set +h\" > /home/lfs/.bashrc && \\" >> $MKFILE
570 echo -e "\techo \"umask 022\" >> /home/lfs/.bashrc && \\" >> $MKFILE
571 echo -e "\techo \"LFS=/mnt/lfs\" >> /home/lfs/.bashrc && \\" >> $MKFILE
572 echo -e "\techo \"LC_ALL=POSIX\" >> /home/lfs/.bashrc && \\" >> $MKFILE
573 echo -e "\techo \"PATH=/tools/bin:/bin:/usr/bin\" >> /home/lfs/.bashrc && \\" >> $MKFILE
574 echo -e "\techo \"export LFS LC_ALL PATH\" >> /home/lfs/.bashrc && \\" >> $MKFILE
[44f88e3]575 # Source the file where we place changing variables.
576 echo -e "\techo \". $JHALFSDIR/envars\" >> /home/lfs/.bashrc && \\" >> $MKFILE
[88dcce5]577 echo -e "\tchown lfs:lfs /home/lfs/.bash* && \\" >> $MKFILE
[44f88e3]578 echo -e "\ttouch envars && \\" >> $MKFILE
[88dcce5]579 echo -e "\ttouch \$@" >> $MKFILE
[0bad6ba]580
[9e406b5]581 # Bring over the items from the Makefile.tmp
582 cat $MKFILE.tmp >> $MKFILE
583 rm $MKFILE.tmp
584 echo -ne "done\n"
[f8de156]585}
586
[88dcce5]587run_make() {
[d310939]588 # Test if make must be run.
589 if [ "$RUNMAKE" = "1" ] ; then
590 # Build the system
591 if [ -e $MKFILE ] ; then
592 echo -ne "Building the LFS system\n"
593 cd $JHALFSDIR && make
594 echo -ne "done\n"
595 fi
[88dcce5]596 fi
597}
[1236262]598
[4dafc45]599if [ ! -d $JHALFSDIR ] ; then
[557fe91]600 mkdir -p $JHALFSDIR
[1236262]601fi
602
[97a3ffc]603if [ ! -d $BUILDDIR$LOGDIR ] ; then
604 mkdir $BUILDDIR$LOGDIR
[a5e49c6]605fi
606
[97a3ffc]607>$BUILDDIR$LOGDIR/$LOG
[409488e]608
609if [ "$PWD" != "$JHALFSDIR" ] ; then
610 cp $0 $XSL $JHALFSDIR/
611fi
612
[1236262]613get_book
[f8de156]614build_Makefile
[71642ef]615run_make
Note: See TracBrowser for help on using the repository browser.