source: jhalfs@ 1936487

0.2 1.0 2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 1936487 was 1936487, checked in by Jeremy Huntwork <jhuntwork@…>, 19 years ago

Fixed issue with kernfs section trying to chroot

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