source: HLFS/master.sh@ a8ceefc

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since a8ceefc was a8ceefc, checked in by George Boudreau <georgeb@…>, 17 years ago

Remove unnecessary text messages

  • Property mode set to 100644
File size: 20.9 KB
Line 
1#!/bin/bash
2set -e # Enable error trapping
3
4# $Id$
5
6###################################
7### FUNCTIONS ###
8###################################
9
10
11#----------------------------#
12process_toolchain() { # embryo,cocoon and butterfly need special handling
13#----------------------------#
14 local toolchain=$1
15 local this_file=$2
16 local tc_phase
17 local binutil_tarball
18 local gcc_core_tarball
19 local TC_MountPT
20 local remove_existing
21
22 tc_phase=`echo $toolchain | sed -e 's@[0-9]\{3\}-@@' -e 's@-toolchain@@' -e 's,'$N',,'`
23 case $tc_phase in
24 embryo | \
25 cocoon) # Vars for LUSER phase
26 remove_existing="remove_existing_dirs"
27 TC_MountPT="\$(MOUNT_PT)\$(SRC)"
28 ;;
29 butterfly) # Vars for CHROOT phase
30 remove_existing="remove_existing_dirs2"
31 TC_MountPT="\$(SRC)"
32 ;;
33 esac
34
35 #
36 # Safe method to remove existing toolchain dirs
37 binutil_tarball=$(get_package_tarball_name "binutils")
38 gcc_core_tarball=$(get_package_tarball_name "gcc-core")
39(
40cat << EOF
41 @\$(call ${remove_existing},$binutil_tarball)
42 @\$(call ${remove_existing},$gcc_core_tarball)
43EOF
44) >> $MKFILE.tmp
45
46 #
47 # Manually remove the toolchain directories..
48(
49cat << EOF
50 @rm -rf ${TC_MountPT}/${tc_phase}-toolchain && \\
51 rm -rf ${TC_MountPT}/${tc_phase}-build
52EOF
53) >> $MKFILE.tmp
54
55
56(
57cat << EOF
58 @echo "export PKGDIR=${TC_MountPT}" > envars
59EOF
60) >> $MKFILE.tmp
61
62 case ${tc_phase} in
63 butterfly)
64 [[ "$TEST" != "0" ]] && CHROOT_wrt_test_log "${toolchain}"
65 CHROOT_wrt_RunAsRoot "$this_file"
66 ;;
67 *) LUSER_wrt_RunAsUser "$this_file"
68 ;;
69 esac
70 #
71(
72cat << EOF
73 @\$(call ${remove_existing},$binutil_tarball)
74 @\$(call ${remove_existing},$gcc_core_tarball)
75EOF
76) >> $MKFILE.tmp
77
78 #
79 # Manually remove the toolchain directories..
80(
81cat << EOF
82 @rm -rf ${TC_MountPT}/${tc_phase}-toolchain && \\
83 rm -rf ${TC_MountPT}/${tc_phase}-build
84EOF
85) >> $MKFILE.tmp
86
87}
88
89
90#----------------------------#
91chapter3_Makefiles() { # Initialization of the system
92#----------------------------#
93
94 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter3 ( SETUP ) ${R_arrow}"
95
96 # Define a few model dependant variables
97 if [[ ${MODEL} = "uclibc" ]]; then
98 TARGET="pc-linux-gnu"; LOADER="ld-uClibc.so.0"
99 else
100 TARGET="pc-linux-gnu"; LOADER="ld-linux.so.2"
101 fi
102
103 # If /home/$LUSER is already present in the host, we asume that the
104 # hlfs user and group are also presents in the host, and a backup
105 # of their bash init files is made.
106(
107cat << EOF
108020-creatingtoolsdir:
109 @\$(call echo_message, Building)
110 @mkdir \$(MOUNT_PT)/tools && \\
111 rm -f /tools && \\
112 ln -s \$(MOUNT_PT)/tools / && \\
113 touch \$@ && \\
114 echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
115 echo --------------------------------------------------------------------------------\$(WHITE)
116
117021-addinguser: 020-creatingtoolsdir
118 @\$(call echo_message, Building)
119 @if [ ! -d /home/\$(LUSER) ]; then \\
120 groupadd \$(LGROUP); \\
121 useradd -s /bin/bash -g \$(LGROUP) -m -k /dev/null \$(LUSER); \\
122 else \\
123 touch luser-exist; \\
124 fi;
125 @chown \$(LUSER) \$(MOUNT_PT)/tools && \\
126 chmod -R a+wt \$(MOUNT_PT)/\$(SCRIPT_ROOT) && \\
127 chmod a+wt \$(SRCSDIR) && \\
128 touch \$@ && \\
129 echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
130 echo --------------------------------------------------------------------------------\$(WHITE)
131
132022-settingenvironment: 021-addinguser
133 @\$(call echo_message, Building)
134 @if [ -f /home/\$(LUSER)/.bashrc -a ! -f /home/\$(LUSER)/.bashrc.XXX ]; then \\
135 mv /home/\$(LUSER)/.bashrc /home/\$(LUSER)/.bashrc.XXX; \\
136 fi;
137 @if [ -f /home/\$(LUSER)/.bash_profile -a ! -f /home/\$(LUSER)/.bash_profile.XXX ]; then \\
138 mv /home/\$(LUSER)/.bash_profile /home/\$(LUSER)/.bash_profile.XXX; \\
139 fi;
140 @echo "set +h" > /home/\$(LUSER)/.bashrc && \\
141 echo "umask 022" >> /home/\$(LUSER)/.bashrc && \\
142 echo "HLFS=\$(MOUNT_PT)" >> /home/\$(LUSER)/.bashrc && \\
143 echo "LC_ALL=POSIX" >> /home/\$(LUSER)/.bashrc && \\
144 echo "PATH=/tools/bin:/bin:/usr/bin" >> /home/\$(LUSER)/.bashrc && \\
145 echo "export HLFS LC_ALL PATH" >> /home/\$(LUSER)/.bashrc && \\
146 echo "" >> /home/\$(LUSER)/.bashrc && \\
147 echo "target=$(uname -m)-${TARGET}" >> /home/\$(LUSER)/.bashrc && \\
148 echo "ldso=/tools/lib/${LOADER}" >> /home/\$(LUSER)/.bashrc && \\
149 echo "export target ldso" >> /home/\$(LUSER)/.bashrc && \\
150 echo "source $JHALFSDIR/envars" >> /home/\$(LUSER)/.bashrc && \\
151 chown \$(LUSER):\$(LGROUP) /home/\$(LUSER)/.bashrc && \\
152 chmod -R a+wt \$(MOUNT_PT) && \\
153 touch envars && \\
154 chown \$(LUSER) envars && \\
155 touch \$@ && \\
156 echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
157 echo --------------------------------------------------------------------------------\$(WHITE)
158EOF
159) >> $MKFILE.tmp
160 chapter3=" 020-creatingtoolsdir 021-addinguser 022-settingenvironment"
161}
162
163#----------------------------#
164chapter5_Makefiles() { # Bootstrap or temptools phase
165#----------------------------#
166 local file
167 local this_script
168
169 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter5 ( LUSER ) ${R_arrow}"
170
171 for file in chapter05/* ; do
172 # Keep the script file name
173 this_script=`basename $file`
174
175 # Skip this script depending on jhalfs.conf flags set.
176 case $this_script in
177 # If no testsuites will be run, then TCL, Expect and DejaGNU aren't needed
178 *tcl* ) [[ "$TEST" = "0" ]] && continue; ;;
179 *expect* ) [[ "$TEST" = "0" ]] && continue; ;;
180 *dejagnu* ) [[ "$TEST" = "0" ]] && continue; ;;
181 # Nothing interestin in this script
182 *introduction* ) continue ;;
183 # Test if the stripping phase must be skipped
184 *stripping* ) [[ "$STRIP" = "n" ]] && continue ;;
185 *) ;;
186 esac
187
188 # First append each name of the script files to a list (this will become
189 # the names of the targets in the Makefile
190 chapter5="$chapter5 $this_script"
191
192 # Grab the name of the target
193 name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' -e 's@-pass[0-9]\{1\}@@'`
194
195 # Adjust 'name'
196 case $name in
197 uclibc) name="uClibc" ;;
198 esac
199
200 # Set the dependency for the first target.
201 if [ -z $PREV ] ; then PREV=022-settingenvironment ; fi
202
203 #--------------------------------------------------------------------#
204 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
205 #--------------------------------------------------------------------#
206 #
207 # Drop in the name of the target on a new line, and the previous target
208 # as a dependency. Also call the echo_message function.
209
210 # This is a very special script and requires manual processing
211 # NO Optimization allowed
212 if [[ ${name} = "embryo-toolchain" ]] || \
213 [[ ${name} = "cocoon-toolchain" ]]; then
214 LUSER_wrt_target "$this_script" "$PREV"
215 process_toolchain "${this_script}" "${file}"
216 wrt_touch
217 PREV=$this_script
218 continue
219 fi
220 #
221 LUSER_wrt_target "$this_script" "$PREV"
222 # Find the version of the command files, if it corresponds with the building of
223 # a specific package. Fix GCC tarball name for 2.4-branch.
224 case $name in
225 gcc ) pkg_tarball=$(get_package_tarball_name gcc-core) ;;
226 * ) pkg_tarball=$(get_package_tarball_name $name) ;;
227 esac
228 # If $pkg_tarball isn't empty, we've got a package...
229 if [ "$pkg_tarball" != "" ] ; then
230 # Insert instructions for unpacking the package and to set the PKGDIR variable.
231 LUSER_wrt_unpack "$pkg_tarball"
232 # If using optimizations, write the instructions
233 [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
234 fi
235 # Insert date and disk usage at the top of the log file, the script run
236 # and date and disk usage again at the bottom of the log file.
237 LUSER_wrt_RunAsUser "${file}"
238
239 # Remove the build directory(ies) except if the package build fails
240 # (so we can review config.cache, config.log, etc.)
241 if [ "$pkg_tarball" != "" ] ; then
242 LUSER_RemoveBuildDirs "$name"
243 fi
244
245 # Include a touch of the target name so make can check if it's already been made.
246 wrt_touch
247 #
248 #--------------------------------------------------------------------#
249 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
250 #--------------------------------------------------------------------#
251
252 # Keep the script file name for Makefile dependencies.
253 PREV=$this_script
254 done # end for file in chapter05/*
255}
256
257
258#----------------------------#
259chapter6_Makefiles() { # sysroot or chroot build phase
260#----------------------------#
261 local file
262 local this_script
263 # Set envars and scripts for iteration targets
264 if [[ -z "$1" ]] ; then
265 local N=""
266 else
267 local N=-build_$1
268 local chapter6=""
269 mkdir chapter06$N
270 cp chapter06/* chapter06$N
271 for script in chapter06$N/* ; do
272 # Overwrite existing symlinks, files, and dirs
273 sed -e 's/ln -s /ln -sf /g' \
274 -e 's/^mv /&-f /g' \
275 -e 's/mkdir -v/&p/g' -i ${script}
276 # Rename the scripts
277 mv ${script} ${script}$N
278 done
279 # Remove Bzip2 binaries before make install
280 sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i chapter06$N/*-bzip2$N
281 # Fix how Module-Init-Tools do the install target
282 sed -e 's@make install@make INSTALL=install install@' -i chapter06$N/*-module-init-tools$N
283 # Don't readd already existing groups
284 sed -e '/groupadd/d' -i chapter06$N/*-udev$N
285 fi
286
287 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter6$N ( CHROOT ) ${R_arrow}"
288
289 for file in chapter06$N/* ; do
290 # Keep the script file name
291 this_script=`basename $file`
292
293 # Skip this script depending on jhalfs.conf flags set.
294 case $this_script in
295 # We'll run the chroot commands differently than the others, so skip them in the
296 # dependencies and target creation.
297 *chroot* ) continue ;;
298 # Test if the stripping phase must be skipped
299 *-stripping* ) [[ "$STRIP" = "n" ]] && continue ;;
300 # Skip linux-headers in iterative builds
301 *linux-headers*) [[ -n "$N" ]] && continue ;;
302 esac
303
304 # Grab the name of the target
305 name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' -e 's,'$N',,'`
306
307 case $name in
308 uclibc) name="uClibc" ;;
309 esac
310
311 # Find the version of the command files, if it corresponds with the building of
312 # a specific package. Fix GCC tarball name for 2.4-branch.
313 case $name in
314 gcc ) pkg_tarball=$(get_package_tarball_name gcc-core) ;;
315 * ) pkg_tarball=$(get_package_tarball_name $name) ;;
316 esac
317
318 if [[ "$pkg_tarball" = "" ]] && [[ -n "$N" ]] ; then
319 case "${this_script}" in
320 *stripping*) ;;
321 *) continue ;;
322 esac
323 fi
324
325 # Append each name of the script files to a list (this will become
326 # the names of the targets in the Makefile
327 case "${this_script}" in
328 *kernfs* ) runasroot=" ${this_script}" ;;
329 * ) chapter6="$chapter6 ${this_script}" ;;
330 esac
331
332
333 #--------------------------------------------------------------------#
334 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
335 #--------------------------------------------------------------------#
336 #
337 # Drop in the name of the target on a new line, and the previous target
338 # as a dependency. Also call the echo_message function.
339 if [[ ${name} = "butterfly-toolchain" ]]; then
340 CHROOT_wrt_target "${this_script}" "$PREV"
341 process_toolchain "${this_script}" "${file}"
342 wrt_touch
343 PREV=$this_script
344 continue
345 fi
346 # kernfs is run in SUDO target
347 case "${this_script}" in
348 *kernfs* ) LUSER_wrt_target "${this_script}" "$PREV" ;;
349 * ) CHROOT_wrt_target "${this_script}" "$PREV" ;;
350 esac
351
352 # If $pkg_tarball isn't empty, we've got a package...
353 # Insert instructions for unpacking the package and changing directories
354 if [ "$pkg_tarball" != "" ] ; then
355 CHROOT_Unpack "$pkg_tarball"
356 # If the testsuites must be run, initialize the log file
357 # butterfly-toolchain tests are enabled in 'process_tookchain' function
358 # 2.4-branch toolchain is ernabled here.
359 case $name in
360 glibc | gcc | binutils)
361 [[ "$TEST" != "0" ]] && CHROOT_wrt_test_log "${this_script}" ;;
362 * ) [[ "$TEST" > "1" ]] && CHROOT_wrt_test_log "${this_script}" ;;
363 esac
364 # If using optimizations, write the instructions
365 [[ "$OPTIMIZE" != "0" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
366 fi
367
368 # In kernfs we need to set HLFS and not to use chroot.
369 case "${this_script}" in
370 *kernfs* ) wrt_RunAsRoot "${file}" ;;
371 * ) CHROOT_wrt_RunAsRoot "${file}" ;;
372 esac
373 #
374 # Remove the build directory(ies) except if the package build fails.
375 if [ "$pkg_tarball" != "" ] ; then
376 CHROOT_wrt_RemoveBuildDirs "$name"
377 fi
378 #
379 # Include a touch of the target name so make can check if it's already been made.
380 wrt_touch
381 #
382 #--------------------------------------------------------------------#
383 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
384 #--------------------------------------------------------------------#
385
386 # Keep the script file name for Makefile dependencies.
387 PREV=${this_script}
388 # Set system_build envar for iteration targets
389 system_build=$chapter6
390 done # end for file in chapter06/*
391
392}
393
394#----------------------------#
395chapter7_Makefiles() { # Create a bootable system.. kernel, bootscripts..etc
396#----------------------------#
397 local file
398 local this_script
399
400 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter7 ( BOOT ) ${R_arrow}"
401 for file in chapter07/*; do
402 # Keep the script file name
403 this_script=`basename $file`
404
405 # Grub must be configured manually.
406 # The filesystems can't be unmounted via Makefile and the user
407 # should enter the chroot environment to create the root
408 # password, edit several files and setup Grub.
409 case $this_script in
410 *usage) continue ;; # Contains example commands
411 *grub) continue ;;
412 *console) continue ;; # Use the file generated by lfs-bootscripts
413 *finished) continue ;; # Customized /etc/hlfs-release created in all target
414 *fstab) [[ ! -z ${FSTAB} ]] && cp ${FSTAB} $BUILDDIR/sources/fstab
415 ;;
416 *kernel) # If no .config file is supplied, the kernel build is skipped
417 [[ -z $CONFIG ]] && continue
418 cp $CONFIG $BUILDDIR/sources/kernel-config
419 ;;
420 esac
421
422 # First append then name of the script file to a list (this will become
423 # the names of the targets in the Makefile
424 chapter7="$chapter7 $this_script"
425
426 #--------------------------------------------------------------------#
427 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
428 #--------------------------------------------------------------------#
429 #
430 # Drop in the name of the target on a new line, and the previous target
431 # as a dependency. Also call the echo_message function.
432 CHROOT_wrt_target "$this_script" "$PREV"
433
434 case "${this_script}" in
435 *bootscripts*)
436 CHROOT_Unpack $(get_package_tarball_name "lfs-bootscripts")
437 blfs_bootscripts=$(get_package_tarball_name "blfs-bootscripts" | sed -e 's/.tar.*//' )
438 echo -e "\t@echo \"\$(MOUNT_PT)\$(SRC)/$blfs_bootscripts\" >> sources-dir" >> $MKFILE.tmp
439 ;;
440 esac
441
442 case "${this_script}" in
443 *fstab*) # Check if we have a real /etc/fstab file
444 if [[ -n "$FSTAB" ]] ; then
445 CHROOT_wrt_CopyFstab
446 else
447 CHROOT_wrt_RunAsRoot "$file"
448 fi
449 ;;
450 *) # All other scripts
451 CHROOT_wrt_RunAsRoot "${file}"
452 ;;
453 esac
454
455 # Remove the build directory except if the package build fails.
456 case "${this_script}" in
457 *bootscripts*)
458(
459cat << EOF
460 @ROOT=\`head -n1 \$(SRC)/\$(PKG_LST) | sed 's@^./@@;s@/.*@@'\` && \\
461 rm -r \$(SRC)/\$\$ROOT
462 @rm -r \`cat sources-dir\` && \\
463 rm sources-dir
464EOF
465) >> $MKFILE.tmp
466 ;;
467 esac
468
469 # Include a touch of the target name so make can check if it's already been made.
470 wrt_touch
471 #
472 #--------------------------------------------------------------------#
473 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
474 #--------------------------------------------------------------------#
475
476 # Keep the script file name for Makefile dependencies.
477 PREV=$this_script
478 done # for file in chapter07/*
479}
480
481
482#----------------------------#
483build_Makefile() { # Construct a Makefile from the book scripts
484#----------------------------#
485 echo "Creating Makefile... ${BOLD}START${OFF}"
486
487 cd $JHALFSDIR/${PROGNAME}-commands
488 # Start with a clean Makefile.tmp file
489 >$MKFILE.tmp
490
491 chapter3_Makefiles
492 chapter5_Makefiles
493 chapter6_Makefiles
494 # Add the iterations targets, if needed
495 [[ "$COMPARE" = "y" ]] && wrt_compare_targets
496 chapter7_Makefiles
497 # Add the CUSTOM_TOOLS targets, if needed
498 [[ "$CUSTOM_TOOLS" = "y" ]] && wrt_CustomTools_target
499 # Add the BLFS_TOOL targets, if needed
500 [[ "$BLFS_TOOL" = "y" ]] && wrt_blfs_tool_targets
501
502 # Add a header, some variables and include the function file
503 # to the top of the real Makefile.
504 wrt_Makefile_header
505
506 # Add chroot commands
507 CHROOT_LOC="`whereis -b chroot | cut -d " " -f2`"
508 i=1
509 for file in chapter06/*chroot* ; do
510 chroot=`cat $file | \
511 sed -e "s@chroot@$CHROOT_LOC@" \
512 -e '/#!\/bin\/bash/d' \
513 -e '/^export/d' \
514 -e '/^logout/d' \
515 -e 's@ \\\@ @g' | \
516 tr -d '\n' | \
517 sed -e 's/ */ /g' \
518 -e 's|\\$|&&|g' \
519 -e 's|exit||g' \
520 -e 's|$| -c|' \
521 -e 's|"$$HLFS"|$(MOUNT_PT)|'\
522 -e 's|set -e||' \
523 -e 's|set +h||'`
524 echo -e "CHROOT$i= $chroot\n" >> $MKFILE
525 i=`expr $i + 1`
526 done
527
528 # Drop in the main target 'all:' and the chapter targets with each sub-target
529 # as a dependency.
530(
531 cat << EOF
532
533all: ck_UID mk_SETUP mk_LUSER mk_SUDO mk_CHROOT mk_BOOT create-sbu_du-report mk_CUSTOM_TOOLS mk_BLFS_TOOL
534 @sudo make do-housekeeping
535 @echo "$VERSION - jhalfs build" > hlfs-release && \\
536 sudo install -m444 hlfs-release \$(MOUNT_PT)/etc/hlfs-release
537 @\$(call echo_finished,$VERSION)
538
539ck_UID:
540 @if [ \`id -u\` = "0" ]; then \\
541 echo "--------------------------------------------------"; \\
542 echo "You cannot run this makefile from the root account"; \\
543 echo "--------------------------------------------------"; \\
544 exit 1; \\
545 fi
546
547mk_SETUP:
548 @\$(call echo_SU_request)
549 @sudo make SETUP
550 @touch \$@
551
552mk_LUSER: mk_SETUP
553 @\$(call echo_SULUSER_request)
554 @(sudo \$(SU_LUSER) "source .bashrc && cd \$(MOUNT_PT)/\$(SCRIPT_ROOT) && make LUSER" )
555 @sudo make restore-luser-env
556 @touch \$@
557
558mk_SUDO: mk_LUSER
559 @sudo make SUDO
560 @touch \$@
561
562mk_CHROOT: mk_SUDO
563 @if [ ! -e \$(MOUNT_PT)/dev ]; then \\
564 mkdir \$(MOUNT_PT)/dev && \\
565 sudo mknod -m 666 \$(MOUNT_PT)/dev/null c 1 3 && \\
566 sudo mknod -m 600 \$(MOUNT_PT)/dev/console c 5 1 && \\
567 sudo chown -R 0:0 \$(MOUNT_PT)/dev;
568 fi;
569 @\$(call echo_CHROOT_request)
570 @( sudo \$(CHROOT1) "cd \$(SCRIPT_ROOT) && make CHROOT")
571 @touch \$@
572
573mk_BOOT: mk_CHROOT
574 @\$(call echo_CHROOT_request)
575 @( sudo \$(CHROOT2) "cd \$(SCRIPT_ROOT) && make BOOT")
576 @touch \$@
577
578mk_CUSTOM_TOOLS: create-sbu_du-report
579 @if [ "\$(ADD_CUSTOM_TOOLS)" = "y" ]; then \\
580 \$(call sh_echo_PHASE,Building CUSTOM_TOOLS); \\
581 sudo mkdir -p ${BUILDDIR}${TRACKING_DIR}; \\
582 (sudo \$(CHROOT2) "cd \$(SCRIPT_ROOT) && make CUSTOM_TOOLS"); \\
583 fi;
584 @touch \$@
585
586mk_BLFS_TOOL: mk_CUSTOM_TOOLS
587 @if [ "\$(ADD_BLFS_TOOLS)" = "y" ]; then \\
588 \$(call sh_echo_PHASE,Building BLFS_TOOL); \\
589 sudo mkdir -p $BUILDDIR$TRACKING_DIR; \\
590 (sudo \$(CHROOT2) "cd \$(SCRIPT_ROOT) && make BLFS_TOOL"); \\
591 fi;
592 @touch \$@
593
594
595SETUP: $chapter3
596LUSER: $chapter5
597SUDO: $runasroot
598CHROOT: SHELL=/tools/bin/bash
599CHROOT: $chapter6
600BOOT: $chapter7
601CUSTOM_TOOLS: $custom_list
602BLFS_TOOL: $blfs_tool
603
604
605create-sbu_du-report: mk_BOOT
606 @\$(call echo_message, Building)
607 @if [ "\$(ADD_REPORT)" = "y" ]; then \\
608 ./create-sbu_du-report.sh logs $VERSION; \\
609 \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
610 fi;
611 @touch \$@
612
613restore-luser-env:
614 @\$(call echo_message, Building)
615 @if [ -f /home/\$(LUSER)/.bashrc.XXX ]; then \\
616 mv -f /home/\$(LUSER)/.bashrc.XXX /home/\$(LUSER)/.bashrc; \\
617 fi;
618 @if [ -f /home/\$(LUSER)/.bash_profile.XXX ]; then \\
619 mv /home/\$(LUSER)/.bash_profile.XXX /home/\$(LUSER)/.bash_profile; \\
620 fi;
621 @chown \$(LUSER):\$(LGROUP) /home/\$(LUSER)/.bash* && \\
622 touch \$@ && \\
623 echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
624 echo --------------------------------------------------------------------------------\$(WHITE)
625
626do-housekeeping:
627 @-umount \$(MOUNT_PT)/dev/pts
628 @-umount \$(MOUNT_PT)/dev/shm
629 @-umount \$(MOUNT_PT)/dev
630 @-umount \$(MOUNT_PT)/sys
631 @-umount \$(MOUNT_PT)/proc
632 @-rm /tools
633 @-if [ ! -f luser-exist ]; then \\
634 userdel \$(LUSER); \\
635 rm -rf /home/\$(LUSER); \\
636 fi;
637
638
639
640EOF
641) >> $MKFILE
642
643 # Bring over the items from the Makefile.tmp
644 cat $MKFILE.tmp >> $MKFILE
645 rm $MKFILE.tmp
646 echo "Creating Makefile... ${BOLD}DONE${OFF}"
647
648}
Note: See TracBrowser for help on using the repository browser.