1 | #!/bin/sh
|
---|
2 |
|
---|
3 | version="
|
---|
4 | jhalfs development
|
---|
5 |
|
---|
6 | Originally written by Jeremy Huntwork.
|
---|
7 | Maintained by Manuel Canales Esparcia.
|
---|
8 |
|
---|
9 | This program is published under the \
|
---|
10 | Gnu General Public License, Version 2.
|
---|
11 | "
|
---|
12 |
|
---|
13 | usage="\
|
---|
14 | Usage: $0 [OPTION]
|
---|
15 |
|
---|
16 | Options:
|
---|
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 |
|
---|
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
|
---|
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
|
---|
121 | done
|
---|
122 |
|
---|
123 | # Test to make sure we're running the build as root
|
---|
124 |
|
---|
125 | if [ "$UID" != "0" ] ; then
|
---|
126 | echo "You must be logged in as root to successfully build LFS."
|
---|
127 | exit 1
|
---|
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
|
---|
134 | DL=wget
|
---|
135 | elif [ `type -p curl` ] ; then
|
---|
136 | DL=curl
|
---|
137 | else
|
---|
138 | eval "$no_dl_client"
|
---|
139 | fi
|
---|
140 | fi
|
---|
141 |
|
---|
142 | SVN="svn://svn.linuxfromscratch.org"
|
---|
143 | HTTP=http://ftp.lfs-matrix.net/pub/lfs/lfs-packages/conglomeration
|
---|
144 | if [ -z $BUILDDIR ] ; then BUILDDIR=/mnt/lfs ; fi
|
---|
145 | JHALFSDIR=$BUILDDIR/jhalfs
|
---|
146 | LOGDIR=/jhalfs/logs
|
---|
147 | LOG=000-jhalfs.log
|
---|
148 | MKFILE=$JHALFSDIR/Makefile
|
---|
149 | XSL=dump-lfs-scripts.xsl
|
---|
150 | FNC=functions
|
---|
151 | if [ -z $TEST ] ; then TEST=0 ; fi
|
---|
152 |
|
---|
153 | get_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 |
|
---|
196 | extract_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 |
|
---|
222 | download() {
|
---|
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 |
|
---|
262 | get_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 |
|
---|
301 | build_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 | echo -e "\n$i: $PREV" >> $MKFILE.tmp
|
---|
449 |
|
---|
450 | # Find the version of the command files, if it corresponds with the building of
|
---|
451 | # a specific package
|
---|
452 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
453 |
|
---|
454 | # If $vrs isn't empty, we've got a package...
|
---|
455 | if [ "$vrs" != "" ] ; then
|
---|
456 | FILE="$name-$vrs.tar.bz2"
|
---|
457 |
|
---|
458 | # Insert instructions for unpacking the package and changing directories
|
---|
459 | echo -e "\t@\$(call unpack,$FILE)" >> $MKFILE.tmp
|
---|
460 | echo -e "\t@ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
461 | echo -e "\techo \"PKGDIR=\$(SRC)/\$\$ROOT\" > envars && \\" >> $MKFILE.tmp
|
---|
462 | echo -e "\techo \"export PKGDIR\" >> envars && \\" >> $MKFILE.tmp
|
---|
463 | fi
|
---|
464 |
|
---|
465 | # For the Re-Adjusting phase we must to cd to the binutils-build directory.
|
---|
466 | if [ "$i" = "067-readjusting" ] ; then
|
---|
467 | echo -e "\techo \"PKGDIR=\$(SRC)/binutils-build\" > envars && \\" >> $MKFILE.tmp
|
---|
468 | echo -e "\techo \"export PKGDIR\" >> envars" >> $MKFILE.tmp
|
---|
469 |
|
---|
470 | # Insert the script run
|
---|
471 | # For the mount of kernel filesystems we need to set LFS.
|
---|
472 | elif [ "$i" = "057-kernfs" ] ; then
|
---|
473 | echo -e "\techo \"LFS=\$(LFS)\" > envars && \\" >> $MKFILE.tmp
|
---|
474 | echo -e "\techo \"export LFS\" >> envars && \\" >> $MKFILE.tmp
|
---|
475 | # Insert date and disk usage at the top of the log file.
|
---|
476 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp
|
---|
477 | echo -e "\t. envars && commands/$file >>logs/$i 2>&1 && \\" >> $MKFILE.tmp
|
---|
478 | # Insert date and disk usage at the bottom of the log file.
|
---|
479 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i" >> $MKFILE.tmp
|
---|
480 | else
|
---|
481 | # Insert date and disk usage at the top of the log file.
|
---|
482 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* /\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp
|
---|
483 | echo -e "\t. envars && commands/$file >>logs/$i 2>&1 && \\" >> $MKFILE.tmp
|
---|
484 | # Insert date and disk usage at the bottom of the log file.
|
---|
485 | echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* /\`\\\n\" >>logs/$i" >> $MKFILE.tmp
|
---|
486 | fi
|
---|
487 |
|
---|
488 | # Remove the build directory(ies) even if the package build fails.
|
---|
489 | if [ "$vrs" != "" ] ; then
|
---|
490 | echo -e "\t@ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
491 | echo -e "\trm -r \$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
|
---|
492 | echo -e "\tif [ -e \$(SRC)/$name-build ]; then \\" >> $MKFILE.tmp
|
---|
493 | echo -e "\t\trm -r \$(SRC)/$name-build; \\" >> $MKFILE.tmp
|
---|
494 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
495 | fi
|
---|
496 |
|
---|
497 | # Remove the Binutils pass 2 sources after a successful Re-Adjusting phase.
|
---|
498 | if [ "$i" = "067-readjusting" ] ; then
|
---|
499 | echo -e "\t@if [ -e \$@ ] ; then \\" >> $MKFILE.tmp
|
---|
500 | echo -e "\t\trm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp
|
---|
501 | echo -e "\t\trm -r \$(SRC)/binutils-build && \\" >> $MKFILE.tmp
|
---|
502 | echo -e "\t\trm sources-dir; \\" >> $MKFILE.tmp
|
---|
503 | echo -e "\tfi;" >> $MKFILE.tmp
|
---|
504 | fi
|
---|
505 |
|
---|
506 | # Include a touch of the target name so make can check
|
---|
507 | # if it's already been made.
|
---|
508 | echo -e "\t@touch \$@" >> $MKFILE.tmp
|
---|
509 |
|
---|
510 | # Keep the script file name for Makefile dependencies.
|
---|
511 | PREV=$i
|
---|
512 | done
|
---|
513 |
|
---|
514 | # Stick variables and some defines at the top of the real makefile
|
---|
515 | echo "export SRC := /sources" > $MKFILE
|
---|
516 | echo "export LFS := $BUILDDIR" >> $MKFILE
|
---|
517 | echo -e "export LOGDIR := $LOGDIR\n" >> $MKFILE
|
---|
518 | echo "include functions" >> $MKFILE
|
---|
519 |
|
---|
520 | # Drop in the main target 'all:' and the chapter targets with each sub-target
|
---|
521 | # as a dependency.
|
---|
522 | echo "all: chapter4 chapter5" >> $MKFILE
|
---|
523 | echo -e "\t@echo -e \"\\\n\\\tYour new LFS system has been successfully built\"\n" >> $MKFILE
|
---|
524 | echo -e "chapter4: 020-creatingtoolsdir 021-addinguser 022-settingenvironment\n" >> $MKFILE
|
---|
525 | echo -e "chapter5: chapter4 $chapter5\n" >> $MKFILE >> $MKFILE
|
---|
526 | echo -e "chapter6: chapter5 $chapter6\n" >> $MKFILE
|
---|
527 |
|
---|
528 | # Clean targets
|
---|
529 | echo "clean-all: clean" >> $MKFILE
|
---|
530 | echo -e "\trm -rf ./*\n" >> $MKFILE
|
---|
531 |
|
---|
532 | echo -e "clean: clean-chapter5 clean-chapter4\n" >> $MKFILE
|
---|
533 |
|
---|
534 | echo "clean-chapter4:" >> $MKFILE
|
---|
535 | echo -e "\t-userdel lfs" >> $MKFILE
|
---|
536 | echo -e "\trm -rf /home/lfs" >> $MKFILE
|
---|
537 | echo -e "\trm -rf \$(LFS)/tools" >> $MKFILE
|
---|
538 | echo -e "\trm -f /tools" >> $MKFILE
|
---|
539 | echo -e "\trm -f envars" >> $MKFILE
|
---|
540 | echo -e "\trm -f 02* logs/02*.log\n" >> $MKFILE
|
---|
541 |
|
---|
542 | echo "clean-chapter5:" >> $MKFILE
|
---|
543 | echo -e "\trm -rf \$(LFS)/tools/*" >> $MKFILE
|
---|
544 | echo -e "\trm -f envars" >> $MKFILE
|
---|
545 | echo -e "\trm -f $chapter5" >> $MKFILE
|
---|
546 | echo -e "\tcd logs && rm -f $chapter5 && cd ..\n" >> $MKFILE
|
---|
547 |
|
---|
548 | # The chapter4 sub-targets are hard-coded to create the lfs user,
|
---|
549 | # to make the scripts executable, and to create a clean environment
|
---|
550 | # for the lfs user.
|
---|
551 | echo "020-creatingtoolsdir:" >> $MKFILE
|
---|
552 | echo -e "\t@\$(call echo_message, Building)" >> $MKFILE
|
---|
553 | echo -e "\t@mkdir -v \$(LFS)/tools && \\" >> $MKFILE
|
---|
554 | echo -e "\tln -sv \$(LFS)/tools / && \\" >> $MKFILE
|
---|
555 | echo -e "\ttouch \$@\n" >> $MKFILE
|
---|
556 |
|
---|
557 | echo "021-addinguser: 020-creatingtoolsdir" >> $MKFILE
|
---|
558 | echo -e "\t@\$(call echo_message, Building)" >> $MKFILE
|
---|
559 | echo -e "\t@groupadd 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 executable
|
---|
564 | echo -e "\tchmod -R +x $JHALFSDIR/commands && \\" >> $MKFILE
|
---|
565 | echo -e "\ttouch \$@\n" >> $MKFILE
|
---|
566 |
|
---|
567 | echo "022-settingenvironment: 021-addinguser" >> $MKFILE
|
---|
568 | echo -e "\t@\$(call echo_message, Building)" >> $MKFILE
|
---|
569 | echo -e "\t@echo \"exec env -i HOME=\\\$\$HOME TERM=\\\$\$TERM PS1='\u:\w\$$ ' /bin/bash\" > /home/lfs/.bash_profile && \\" >> $MKFILE
|
---|
570 | echo -e "\techo \"set +h\" > /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
571 | echo -e "\techo \"umask 022\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
572 | echo -e "\techo \"LFS=/mnt/lfs\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
573 | echo -e "\techo \"LC_ALL=POSIX\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
574 | echo -e "\techo \"PATH=/tools/bin:/bin:/usr/bin\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
575 | echo -e "\techo \"export LFS LC_ALL PATH\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
576 | # Source the file where we place changing variables.
|
---|
577 | echo -e "\techo \". $JHALFSDIR/envars\" >> /home/lfs/.bashrc && \\" >> $MKFILE
|
---|
578 | echo -e "\tchown lfs:lfs /home/lfs/.bash* && \\" >> $MKFILE
|
---|
579 | echo -e "\ttouch envars && \\" >> $MKFILE
|
---|
580 | echo -e "\ttouch \$@" >> $MKFILE
|
---|
581 |
|
---|
582 | # Bring over the items from the Makefile.tmp
|
---|
583 | cat $MKFILE.tmp >> $MKFILE
|
---|
584 | rm $MKFILE.tmp
|
---|
585 | echo -ne "done\n"
|
---|
586 | }
|
---|
587 |
|
---|
588 | run_make() {
|
---|
589 | # Test if make must be run.
|
---|
590 | if [ "$RUNMAKE" = "1" ] ; then
|
---|
591 | # Build the system
|
---|
592 | if [ -e $MKFILE ] ; then
|
---|
593 | echo -ne "Building the LFS system...\n"
|
---|
594 | cd $JHALFSDIR && make
|
---|
595 | echo -ne "done\n"
|
---|
596 | fi
|
---|
597 | fi
|
---|
598 | }
|
---|
599 |
|
---|
600 | if [ ! -d $JHALFSDIR ] ; then
|
---|
601 | mkdir -p $JHALFSDIR
|
---|
602 | fi
|
---|
603 |
|
---|
604 | if [ ! -d $BUILDDIR$LOGDIR ] ; then
|
---|
605 | mkdir $BUILDDIR$LOGDIR
|
---|
606 | fi
|
---|
607 |
|
---|
608 | >$BUILDDIR$LOGDIR/$LOG
|
---|
609 |
|
---|
610 | if [ "$PWD" != "$JHALFSDIR" ] ; then
|
---|
611 | cp $0 $XSL $FNC $JHALFSDIR/
|
---|
612 | fi
|
---|
613 |
|
---|
614 | get_book
|
---|
615 | build_Makefile
|
---|
616 | run_make
|
---|