source: HLFS/master.sh@ f546320

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

Ported INSTALL_LOG support to all books.

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