source: LFS/master.sh@ 2cf28dc

2.4 ablfs-more legacy trunk
Last change on this file since 2cf28dc was d601cfc, checked in by Pierre Labastie <pierre@…>, 8 years ago

Fix logic for copying fstab. That stupid bug wanted to copy fstab when
FSTAB was empty!

  • Property mode set to 100644
File size: 20.6 KB
RevLine 
[91ff6a9]1#!/bin/bash
[877cc6a]2
3# $Id$
4
5###################################
6### FUNCTIONS ###
7###################################
8
9
[045b2dc]10#############################################################
11
12
[877cc6a]13#----------------------------#
[045b2dc]14chapter4_Makefiles() { #
[877cc6a]15#----------------------------#
[045b2dc]16 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter4 ( SETUP ) ${R_arrow}"
[877cc6a]17
[962793a]18# If $LUSER_HOME is already present in the host, we asume that the
[877cc6a]19# lfs user and group are also presents in the host, and a backup
20# of their bash init files is made.
21(
22 cat << EOF
23020-creatingtoolsdir:
24 @\$(call echo_message, Building)
[cee9568]25 @mkdir \$(MOUNT_PT)/tools && \\
26 rm -f /tools && \\
[dbcdfd7]27 ln -s \$(MOUNT_PT)/tools /
28 @\$(call housekeeping)
[877cc6a]29
30021-addinguser: 020-creatingtoolsdir
31 @\$(call echo_message, Building)
[1849935]32 @-if [ ! -d \$(LUSER_HOME) ]; then \\
[6ad5a2f]33 groupadd \$(LGROUP); \\
34 useradd -s /bin/bash -g \$(LGROUP) -m -k /dev/null \$(LUSER); \\
[877cc6a]35 else \\
[6ad5a2f]36 touch luser-exist; \\
[877cc6a]37 fi;
[6ad5a2f]38 @chown \$(LUSER) \$(MOUNT_PT)/tools && \\
[ac35c8e]39 chmod -R a+wt \$(MOUNT_PT)/\$(SCRIPT_ROOT) && \\
[dbcdfd7]40 chmod a+wt \$(SRCSDIR)
41 @\$(call housekeeping)
[877cc6a]42
43022-settingenvironment: 021-addinguser
44 @\$(call echo_message, Building)
[962793a]45 @if [ -f \$(LUSER_HOME)/.bashrc -a ! -f \$(LUSER_HOME)/.bashrc.XXX ]; then \\
46 mv \$(LUSER_HOME)/.bashrc \$(LUSER_HOME)/.bashrc.XXX; \\
[877cc6a]47 fi;
[962793a]48 @if [ -f \$(LUSER_HOME)/.bash_profile -a ! -f \$(LUSER_HOME)/.bash_profile.XXX ]; then \\
49 mv \$(LUSER_HOME)/.bash_profile \$(LUSER_HOME)/.bash_profile.XXX; \\
[877cc6a]50 fi;
[962793a]51 @echo "set +h" > \$(LUSER_HOME)/.bashrc && \\
52 echo "umask 022" >> \$(LUSER_HOME)/.bashrc && \\
53 echo "LFS=\$(MOUNT_PT)" >> \$(LUSER_HOME)/.bashrc && \\
54 echo "LC_ALL=POSIX" >> \$(LUSER_HOME)/.bashrc && \\
[0850553]55 echo "LFS_TGT=`uname -m`-lfs-linux-gnu" >> \$(LUSER_HOME)/.bashrc && \\
[962793a]56 echo "PATH=/tools/bin:/bin:/usr/bin" >> \$(LUSER_HOME)/.bashrc && \\
[0850553]57 echo "export LFS LC_ALL LFS_TGT PATH" >> \$(LUSER_HOME)/.bashrc && \\
[962793a]58 echo "source $JHALFSDIR/envars" >> \$(LUSER_HOME)/.bashrc && \\
59 chown \$(LUSER):\$(LGROUP) \$(LUSER_HOME)/.bashrc && \\
[877cc6a]60 touch envars && \\
[dbcdfd7]61 chown \$(LUSER) envars
62 @\$(call housekeeping)
[877cc6a]63EOF
[045b2dc]64) > $MKFILE.tmp
65
66 chapter4=" 020-creatingtoolsdir 021-addinguser 022-settingenvironment"
[877cc6a]67}
68
[045b2dc]69
70
[877cc6a]71#----------------------------#
72chapter5_Makefiles() {
73#----------------------------#
[045b2dc]74 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter5 ( LUSER ) ${R_arrow}"
[877cc6a]75
76 for file in chapter05/* ; do
77 # Keep the script file name
78 this_script=`basename $file`
79
[7831c79]80 # If no testsuites are run, then TCL, Expect, DejaGNU and Check
[de84c00]81 # aren't needed (but building them does not hurt).
[a241c33]82 # Fix also locales creation when running chapter05 testsuites (ugly)
[877cc6a]83 case "${this_script}" in
[de84c00]84# *tcl) [[ "${TEST}" = "0" ]] && continue ;;
85# *expect) [[ "${TEST}" = "0" ]] && continue ;;
86# *dejagnu) [[ "${TEST}" = "0" ]] && continue ;;
87# *check) [[ "${TEST}" = "0" ]] && continue ;;
[401f81e]88 *stripping) [[ "${STRIP}" = "n" ]] && continue ;;
[a241c33]89 *glibc) [[ "${TEST}" = "3" ]] && \
[d46a46e]90 sed -i 's@/usr/lib/locale@/tools/lib/locale@' $file ;;
[877cc6a]91 esac
92
93 # First append each name of the script files to a list (this will become
94 # the names of the targets in the Makefile
[4eba1ea]95 # DO NOT append the changingowner script, it need be run as root.
[045b2dc]96 # A hack is necessary: create script in chap5 BUT run as a dependency for
[4eba1ea]97 # SUDO target
[045b2dc]98 case "${this_script}" in
[4eba1ea]99 *changingowner) runasroot="$runasroot ${this_script}" ;;
[045b2dc]100 *) chapter5="$chapter5 ${this_script}" ;;
101 esac
[877cc6a]102
103 # Grab the name of the target (minus the -pass1 or -pass2 in the case of gcc
104 # and binutils in chapter 5)
[1849935]105 name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@' \
106 -e 's@-pass[0-9]\{1\}@@' \
107 -e 's@-libstdc++@@'`
[877cc6a]108
109 # Set the dependency for the first target.
110 if [ -z $PREV ] ; then PREV=022-settingenvironment ; fi
111
112 #--------------------------------------------------------------------#
113 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
114 #--------------------------------------------------------------------#
115 #
[3cb4ef5b]116 # Find the name of the tarball and the version of the package
117 pkg_tarball=$(get_package_tarball_name $name)
118 pkg_version=$(get_package_version $pkg_tarball)
119
[877cc6a]120 # Drop in the name of the target on a new line, and the previous target
121 # as a dependency. Also call the echo_message function.
[3cb4ef5b]122 LUSER_wrt_target "${this_script}" "$PREV" "$pkg_version"
[b7faa5a]123
[a160d86]124 # If $pkg_tarball isn't empty, we've got a package...
125 if [ "$pkg_tarball" != "" ] ; then
[877cc6a]126 # Insert instructions for unpacking the package and to set the PKGDIR variable.
[045b2dc]127 LUSER_wrt_unpack "$pkg_tarball"
[a229600]128 # If the testsuites must be run, initialize the log file
[3cb4ef5b]129 [[ "$TEST" = "3" ]] && LUSER_wrt_test_log "${this_script}" "$pkg_version"
[a229600]130 # If using optimizations, write the instructions
[1b65a84]131 [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
[877cc6a]132 fi
133
134 # Insert date and disk usage at the top of the log file, the script run
135 # and date and disk usage again at the bottom of the log file.
[a241c33]136 # The changingowner script must be run as root.
137 case "${this_script}" in
[3cb4ef5b]138 *changingowner) wrt_RunAsRoot "$file" "$pkg_version" ;;
139 *) LUSER_wrt_RunAsUser "$file" "$pkg_version" ;;
[a241c33]140 esac
[877cc6a]141
142 # Remove the build directory(ies) except if the package build fails
143 # (so we can review config.cache, config.log, etc.)
[a160d86]144 if [ "$pkg_tarball" != "" ] ; then
[4b54394]145 case "${name}" in
146 *xz-utils) LUSER_RemoveBuildDirs "xz" ;;
147 *) LUSER_RemoveBuildDirs "$name" ;;
148 esac
[877cc6a]149 fi
150
151 # Include a touch of the target name so make can check
152 # if it's already been made.
[e2ef100]153 wrt_touch
[877cc6a]154 #
155 #--------------------------------------------------------------------#
156 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
157 #--------------------------------------------------------------------#
158
159 # Keep the script file name for Makefile dependencies.
160 PREV=${this_script}
161 done # end for file in chapter05/*
162}
163
[045b2dc]164
[877cc6a]165#----------------------------#
166chapter6_Makefiles() {
167#----------------------------#
[045b2dc]168
[45f82718]169 # Set envars and scripts for iteration targets
170 if [[ -z "$1" ]] ; then
171 local N=""
172 else
173 local N=-build_$1
174 local chapter6=""
175 mkdir chapter06$N
176 cp chapter06/* chapter06$N
177 for script in chapter06$N/* ; do
178 # Overwrite existing symlinks, files, and dirs
[93fd2d0]179 sed -e 's/ln *-sv/&f/g' \
180 -e 's/mv *-v/&f/g' \
181 -e 's/mkdir *-v/&p/g' -i ${script}
182 # Suppress the mod of "test-installation.pl" because now
183 # the library path points to /usr/lib
184 if [[ ${script} =~ glibc ]]; then
185 sed '/DL=/,/unset DL/d' -i ${script}
186 fi
[10c8b78]187 # Rename the scripts
188 mv ${script} ${script}$N
[45f82718]189 done
[a5f52ba]190 # Remove Bzip2 binaries before make install (LFS-6.2 compatibility)
191 sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i chapter06$N/*-bzip2$N
[45f82718]192 fi
193
[045b2dc]194 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter6$N ( CHROOT ) ${R_arrow}"
[45f82718]195
196 for file in chapter06$N/* ; do
[877cc6a]197 # Keep the script file name
198 this_script=`basename $file`
199
[d68eb1b]200 # Skip the "stripping" scripts if the user does not want to strip.
[8426d1f]201 # Skip also linux-headers in iterative builds.
[877cc6a]202 case "${this_script}" in
[401f81e]203 *stripping*) [[ "${STRIP}" = "n" ]] && continue ;;
[8426d1f]204 *linux-headers*) [[ -n "$N" ]] && continue ;;
[877cc6a]205 esac
206
[4eba1ea]207 # Grab the name of the target.
[10c8b78]208 name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@' -e 's,'$N',,'`
[877cc6a]209
[d68eb1b]210 # Find the tarball corresponding to our script.
211 # If it doesn't, we skip it in iterations rebuilds (except stripping).
[a160d86]212 pkg_tarball=$(get_package_tarball_name $name)
[3cb4ef5b]213 pkg_version=$(get_package_version $pkg_tarball)
[45f82718]214
[a160d86]215 if [[ "$pkg_tarball" = "" ]] && [[ -n "$N" ]] ; then
[45f82718]216 case "${this_script}" in
217 *stripping*) ;;
218 *) continue ;;
219 esac
220 fi
221
222 # Append each name of the script files to a list (this will become
223 # the names of the targets in the Makefile)
[4eba1ea]224 # The kernfs script must be run as part of SUDO target.
225 case "${this_script}" in
226 *kernfs) runasroot="$runasroot ${this_script}" ;;
[10c8b78]227 *) chapter6="$chapter6 ${this_script}" ;;
[4eba1ea]228 esac
[45f82718]229
[877cc6a]230 #--------------------------------------------------------------------#
231 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
232 #--------------------------------------------------------------------#
233 #
234 # Drop in the name of the target on a new line, and the previous target
235 # as a dependency. Also call the echo_message function.
[8bea2c8]236 # In the mount of kernel filesystems we need to set LFS
237 # and not to use chroot.
238 case "${this_script}" in
[3cb4ef5b]239 *kernfs) LUSER_wrt_target "${this_script}" "$PREV" "$pkg_version" ;;
240 *) CHROOT_wrt_target "${this_script}" "$PREV" "$pkg_version" ;;
[8bea2c8]241 esac
[877cc6a]242
[a160d86]243 # If $pkg_tarball isn't empty, we've got a package...
[877cc6a]244 # Insert instructions for unpacking the package and changing directories
[a160d86]245 if [ "$pkg_tarball" != "" ] ; then
[38d2de6]246 # Touch timestamp file if installed files logs will be created.
[81fca31]247 # But only for the firt build when running iterative builds.
248 if [ "${INSTALL_LOG}" = "y" ] && [ "x${N}" = "x" ] ; then
[93346ee]249 CHROOT_wrt_TouchTimestamp
250 fi
[045b2dc]251 CHROOT_Unpack "$pkg_tarball"
[a229600]252 # If the testsuites must be run, initialize the log file
253 case $name in
[7072e1f]254 binutils | gcc | glibc | gmp | mpfr )
[d68eb1b]255 [[ "$TEST" != "0" ]] &&
256 CHROOT_wrt_test_log "${this_script}" "$pkg_version"
[a229600]257 ;;
258 * )
[d68eb1b]259 [[ "$TEST" = "2" ]] || [[ "$TEST" = "3" ]] &&
260 CHROOT_wrt_test_log "${this_script}" "$pkg_version"
[a229600]261 ;;
262 esac
263 # If using optimizations, write the instructions
[1b65a84]264 [[ "$OPTIMIZE" != "0" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
[877cc6a]265 fi
266
267 # In the mount of kernel filesystems we need to set LFS
268 # and not to use chroot.
269 case "${this_script}" in
[3cb4ef5b]270 *kernfs) wrt_RunAsRoot "$file" "$pkg_version" ;;
271 *) CHROOT_wrt_RunAsRoot "$file" "$pkg_version" ;;
[877cc6a]272 esac
273
[93346ee]274 # Write installed files log and remove the build directory(ies)
275 # except if the package build fails.
[a160d86]276 if [ "$pkg_tarball" != "" ] ; then
[4b54394]277 case "${name}" in
278 *xz-utils) CHROOT_wrt_RemoveBuildDirs "xz" ;;
279 *) CHROOT_wrt_RemoveBuildDirs "$name" ;;
280 esac
[81fca31]281 if [ "${INSTALL_LOG}" = "y" ] && [ "x${N}" = "x" ] ; then
[93346ee]282 CHROOT_wrt_LogNewFiles "$name"
283 fi
[877cc6a]284 fi
285
286 # Include a touch of the target name so make can check
287 # if it's already been made.
[e2ef100]288 wrt_touch
[877cc6a]289 #
290 #--------------------------------------------------------------------#
291 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
292 #--------------------------------------------------------------------#
293
294 # Keep the script file name for Makefile dependencies.
[10c8b78]295 PREV=${this_script}
[45f82718]296 # Set system_build envar for iteration targets
297 system_build=$chapter6
[877cc6a]298 done # end for file in chapter06/*
299}
300
301#----------------------------#
[14eaa9f]302chapter78_Makefiles() {
[877cc6a]303#----------------------------#
[b11c10b]304 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter7/8 ( BOOT ) ${R_arrow}"
[877cc6a]305
[14eaa9f]306 for file in chapter0{7,8}/* ; do
[877cc6a]307 # Keep the script file name
308 this_script=`basename $file`
309
310 # Grub must be configured manually.
[14eaa9f]311 # Handle fstab creation.
[877cc6a]312 # If no .config file is supplied, the kernel build is skipped
313 case ${this_script} in
314 *grub) continue ;;
[d601cfc]315 *fstab) [[ -z "${FSTAB}" ]] ||
[85506da]316 [[ ${FSTAB} == $BUILDDIR/sources/fstab ]] ||
317 cp ${FSTAB} $BUILDDIR/sources/fstab ;;
[877cc6a]318 *kernel) [[ -z ${CONFIG} ]] && continue
[85506da]319 [[ ${CONFIG} == $BUILDDIR/sources/kernel-config ]] ||
[877cc6a]320 cp ${CONFIG} $BUILDDIR/sources/kernel-config ;;
321 esac
322
323 # First append each name of the script files to a list (this will become
324 # the names of the targets in the Makefile
[14eaa9f]325 chapter78="$chapter78 ${this_script}"
[877cc6a]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.
[045b2dc]333 CHROOT_wrt_target "${this_script}" "$PREV"
[877cc6a]334
[532ede6]335 # Find the bootscripts or networkscripts (for systemd)
336 # and kernel package names
[877cc6a]337 case "${this_script}" in
338 *bootscripts)
[a160d86]339 name="lfs-bootscripts"
340 pkg_tarball=$(get_package_tarball_name $name)
[93346ee]341 if [ "${INSTALL_LOG}" = "y" ] ; then
342 CHROOT_wrt_TouchTimestamp
343 fi
[81fca31]344 CHROOT_Unpack "$pkg_tarball"
[877cc6a]345 ;;
[532ede6]346 *network-scripts)
347 name="lfs-network-scripts"
348 pkg_tarball=$(get_package_tarball_name $name)
349 if [ "${INSTALL_LOG}" = "y" ] ; then
350 CHROOT_wrt_TouchTimestamp
351 fi
352 CHROOT_Unpack "$pkg_tarball"
353 ;;
[877cc6a]354 *kernel)
[a160d86]355 name="linux"
356 pkg_tarball=$(get_package_tarball_name $name)
[93346ee]357 if [ "${INSTALL_LOG}" = "y" ] ; then
358 CHROOT_wrt_TouchTimestamp
359 fi
[81fca31]360 CHROOT_Unpack "$pkg_tarball"
[93fd2d0]361 # If using optimizations, use MAKEFLAGS (unless blacklisted)
362 # no setting of CFLAGS and friends.
363 [[ "$OPTIMIZE" != "0" ]] && wrt_makeflags "$name"
[877cc6a]364 ;;
365 esac
366
367 # Check if we have a real /etc/fstab file
368 case "${this_script}" in
[d601cfc]369 *fstab) if [[ -n "$FSTAB" ]]; then
[045b2dc]370 CHROOT_wrt_CopyFstab
[877cc6a]371 else
[045b2dc]372 CHROOT_wrt_RunAsRoot "$file"
[877cc6a]373 fi
374 ;;
[045b2dc]375 *) CHROOT_wrt_RunAsRoot "$file"
[877cc6a]376 ;;
377 esac
378
379 case "${this_script}" in
[532ede6]380 *bootscripts) CHROOT_wrt_RemoveBuildDirs "dummy"
381 if [ "${INSTALL_LOG}" = "y" ] ; then
382 CHROOT_wrt_LogNewFiles "$name"
383 fi ;;
384 *network-scripts) CHROOT_wrt_RemoveBuildDirs "dummy"
385 if [ "${INSTALL_LOG}" = "y" ] ; then
386 CHROOT_wrt_LogNewFiles "$name"
387 fi ;;
388 *kernel) CHROOT_wrt_RemoveBuildDirs "dummy"
389 if [ "${INSTALL_LOG}" = "y" ] ; then
390 CHROOT_wrt_LogNewFiles "$name"
391 fi ;;
[877cc6a]392 esac
393
394 # Include a touch of the target name so make can check
395 # if it's already been made.
[e2ef100]396 wrt_touch
[877cc6a]397 #
398 #--------------------------------------------------------------------#
399 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
400 #--------------------------------------------------------------------#
401
402 # Keep the script file name for Makefile dependencies.
403 PREV=${this_script}
[14eaa9f]404 done # for file in chapter0{7,8}/*
[453bef0]405
[877cc6a]406}
407
408
[045b2dc]409
[877cc6a]410#----------------------------#
[045b2dc]411build_Makefile() { #
[877cc6a]412#----------------------------#
[045b2dc]413
[c7c5a53]414 echo "Creating Makefile... ${BOLD}START${OFF}"
[045b2dc]415
[877cc6a]416 cd $JHALFSDIR/${PROGNAME}-commands
417
418 # Start with a clean Makefile.tmp file
[045b2dc]419 >$MKFILE
[877cc6a]420
421 chapter4_Makefiles
422 chapter5_Makefiles
423 chapter6_Makefiles
[45f82718]424 # Add the iterations targets, if needed
[401f81e]425 [[ "$COMPARE" = "y" ]] && wrt_compare_targets
[14eaa9f]426 chapter78_Makefiles
[3e7ceed]427 # Add the CUSTOM_TOOLS targets, if needed
428 [[ "$CUSTOM_TOOLS" = "y" ]] && wrt_CustomTools_target
[877cc6a]429
430 # Add a header, some variables and include the function file
431 # to the top of the real Makefile.
[195ed9f]432 wrt_Makefile_header
[877cc6a]433
434 # Add chroot commands
[6ad5a2f]435 CHROOT_LOC="`whereis -b chroot | cut -d " " -f2`"
[877cc6a]436 i=1
[d68eb1b]437 for file in ../chroot-scripts/*chroot* ; do
[6ad5a2f]438 chroot=`cat $file | \
[abc8b27]439 perl -pe 's|\\\\\n||g' | \
440 tr -s [:space:] | \
441 grep chroot | \
442 sed -e "s|chroot|$CHROOT_LOC|" \
[6ad5a2f]443 -e 's|\\$|&&|g' \
[abc8b27]444 -e 's|"$$LFS"|$(MOUNT_PT)|'`
[877cc6a]445 echo -e "CHROOT$i= $chroot\n" >> $MKFILE
446 i=`expr $i + 1`
447 done
448
449 # Drop in the main target 'all:' and the chapter targets with each sub-target
450 # as a dependency.
451(
452 cat << EOF
[045b2dc]453
[ac9bdc7]454all: ck_UID mk_SETUP mk_LUSER mk_SUDO mk_CHROOT mk_BOOT create-sbu_du-report mk_BLFS_TOOL mk_CUSTOM_TOOLS
[045b2dc]455 @sudo make do_housekeeping
[df97e68]456EOF
457) >> $MKFILE
458if [ "$INITSYS" = systemd ]; then
459(
460 cat << EOF
461 @/bin/echo -e -n \\
462 NAME=\\"Linux From Scratch\\"\\\\n\\
463 VERSION=\\"$VERSION\\"\\\\n\\
464 ID=lfs\\\\n\\
465 PRETTY_NAME=\\"Linux From Scratch $VERSION\\"\\\\n\\
466 VERSION_CODENAME=\\"$(whoami)-jhalfs\\"\\\\n\\
467 > os-release && \\
468 sudo mv os-release \$(MOUNT_PT)/etc && \\
469 sudo chown root:root \$(MOUNT_PT)/etc/os-release
470EOF
471) >> $MKFILE
472fi
473(
474 cat << EOF
[e1fc855]475 @echo $VERSION > lfs-release && \\
[9096853]476 sudo mv lfs-release \$(MOUNT_PT)/etc && \\
477 sudo chown root:root \$(MOUNT_PT)/etc/lfs-release
[e1fc855]478 @/bin/echo -e -n \\
479 DISTRIB_ID=\\"Linux From Scratch\\"\\\\n\\
480 DISTRIB_RELEASE=\\"$VERSION\\"\\\\n\\
481 DISTRIB_CODENAME=\\"$(whoami)-jhalfs\\"\\\\n\\
482 DISTRIB_DESCRIPTION=\\"Linux From Scratch\\"\\\\n\\
483 > lsb-release && \\
484 sudo mv lsb-release \$(MOUNT_PT)/etc && \\
485 sudo chown root:root \$(MOUNT_PT)/etc/lsb-release
[877cc6a]486 @\$(call echo_finished,$VERSION)
487
[045b2dc]488ck_UID:
489 @if [ \`id -u\` = "0" ]; then \\
490 echo "--------------------------------------------------"; \\
491 echo "You cannot run this makefile from the root account"; \\
492 echo "--------------------------------------------------"; \\
493 exit 1; \\
494 fi
495
496mk_SETUP:
497 @\$(call echo_SU_request)
[dbcdfd7]498 @sudo make BREAKPOINT=\$(BREAKPOINT) SETUP
[045b2dc]499 @touch \$@
500
501mk_LUSER: mk_SETUP
502 @\$(call echo_SULUSER_request)
[ef32ce5]503 @( \$(SU_LUSER) "make -C \$(MOUNT_PT)/\$(SCRIPT_ROOT) BREAKPOINT=\$(BREAKPOINT) LUSER" )
[045b2dc]504 @sudo make restore-luser-env
505 @touch \$@
506
507mk_SUDO: mk_LUSER
[dbcdfd7]508 @sudo make BREAKPOINT=\$(BREAKPOINT) SUDO
[1330ebc]509 @touch \$@
510
[045b2dc]511mk_CHROOT: mk_SUDO
512 @\$(call echo_CHROOT_request)
[d68eb1b]513 @( sudo \$(CHROOT1) -c "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) CHROOT")
[045b2dc]514 @touch \$@
[877cc6a]515
[045b2dc]516mk_BOOT: mk_CHROOT
517 @\$(call echo_CHROOT_request)
[d68eb1b]518 @( sudo \$(CHROOT2) -c "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) BOOT")
[045b2dc]519 @touch \$@
[877cc6a]520
[ac9bdc7]521mk_BLFS_TOOL: create-sbu_du-report
522 @if [ "\$(ADD_BLFS_TOOLS)" = "y" ]; then \\
523 \$(call sh_echo_PHASE,Building BLFS_TOOL); \\
[d68eb1b]524 (sudo \$(CHROOT2) -c "make -C $BLFS_ROOT/work"); \\
[ac9bdc7]525 fi;
526 @touch \$@
527
528mk_CUSTOM_TOOLS: mk_BLFS_TOOL
[3e7ceed]529 @if [ "\$(ADD_CUSTOM_TOOLS)" = "y" ]; then \\
[3bc6078]530 \$(call sh_echo_PHASE,Building CUSTOM_TOOLS); \\
[3e7ceed]531 sudo mkdir -p ${BUILDDIR}${TRACKING_DIR}; \\
[d68eb1b]532 (sudo \$(CHROOT2) -c "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) CUSTOM_TOOLS"); \\
[3e7ceed]533 fi;
534 @touch \$@
535
[f60a8b7]536devices: ck_UID
537 sudo mount -v --bind /dev \$(MOUNT_PT)/dev
538 sudo mount -vt devpts devpts \$(MOUNT_PT)/dev/pts
539 sudo mount -vt proc proc \$(MOUNT_PT)/proc
540 sudo mount -vt sysfs sysfs \$(MOUNT_PT)/sys
[d954e9c]541 sudo mount -vt tmpfs tmpfs \$(MOUNT_PT)/run
[f60a8b7]542 if [ -h \$(MOUNT_PT)/dev/shm ]; then \\
[d954e9c]543 sudo mkdir -p \$(MOUNT_PT)/\$\$(readlink \$(MOUNT_PT)/dev/shm); \\
[72f2f82]544 fi
[7c17066]545
[f60a8b7]546teardown:
547 sudo umount -v \$(MOUNT_PT)/sys
548 sudo umount -v \$(MOUNT_PT)/proc
549 sudo umount -v \$(MOUNT_PT)/dev/pts
[5f6a6b4]550 if mountpoint -q \$(MOUNT_PT)/run; then \\
551 sudo umount -v \$(MOUNT_PT)/run; \\
[d954e9c]552 elif [ -h \$(MOUNT_PT)/dev/shm ]; then \\
[f60a8b7]553 link=\$\$(readlink \$(MOUNT_PT)/dev/shm); \\
554 sudo umount -v \$(MOUNT_PT)/\$\$link; \\
[72f2f82]555 unset link; \\
556 else \\
[f60a8b7]557 sudo umount -v \$(MOUNT_PT)/dev/shm; \\
[72f2f82]558 fi
[f60a8b7]559 sudo umount -v \$(MOUNT_PT)/dev
[7c17066]560
561chroot: devices
[d68eb1b]562 sudo \$(CHROOT2)
[7c17066]563 \$(MAKE) teardown
[877cc6a]564
[3e7ceed]565SETUP: $chapter4
566LUSER: $chapter5
567SUDO: $runasroot
[aec4483]568CHROOT: SHELL=/tools/bin/bash
[3e7ceed]569CHROOT: $chapter6
570BOOT: $chapter78
571CUSTOM_TOOLS: $custom_list
[fe24ca6]572
[045b2dc]573
[1838bc7]574create-sbu_du-report: mk_BOOT
575 @\$(call echo_message, Building)
576 @if [ "\$(ADD_REPORT)" = "y" ]; then \\
[ac9bdc7]577 sudo ./create-sbu_du-report.sh logs $VERSION; \\
[1838bc7]578 \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
579 fi;
580 @touch \$@
[045b2dc]581
[6ad5a2f]582restore-luser-env:
[877cc6a]583 @\$(call echo_message, Building)
[962793a]584 @if [ -f \$(LUSER_HOME)/.bashrc.XXX ]; then \\
585 mv -f \$(LUSER_HOME)/.bashrc.XXX \$(LUSER_HOME)/.bashrc; \\
[877cc6a]586 fi;
[962793a]587 @if [ -f \$(LUSER_HOME)/.bash_profile.XXX ]; then \\
588 mv \$(LUSER_HOME)/.bash_profile.XXX \$(LUSER_HOME)/.bash_profile; \\
[877cc6a]589 fi;
[962793a]590 @chown \$(LUSER):\$(LGROUP) \$(LUSER_HOME)/.bash*
[dbcdfd7]591 @\$(call housekeeping)
[a858a78]592
[7d9a82d]593do_housekeeping:
[4524fb2]594 @-umount \$(MOUNT_PT)/sys
595 @-umount \$(MOUNT_PT)/proc
[d954e9c]596 @-if mountpoint -q \$(MOUNT_PT)/run; then \\
597 umount \$(MOUNT_PT)/run; \\
598 elif [ -h \$(MOUNT_PT)/dev/shm ]; then \\
[72f2f82]599 link=\$\$(readlink \$(MOUNT_PT)/dev/shm); \\
600 umount \$(MOUNT_PT)/\$\$link; \\
601 unset link; \\
602 else \\
603 umount \$(MOUNT_PT)/dev/shm; \\
604 fi
[4524fb2]605 @-umount \$(MOUNT_PT)/dev/pts
606 @-umount \$(MOUNT_PT)/dev
[045b2dc]607 @-rm /tools
[6ad5a2f]608 @-if [ ! -f luser-exist ]; then \\
609 userdel \$(LUSER); \\
[962793a]610 rm -rf \$(LUSER_HOME); \\
[7d9a82d]611 fi;
[a858a78]612
[fe24ca6]613
[877cc6a]614EOF
615) >> $MKFILE
616
617 # Bring over the items from the Makefile.tmp
618 cat $MKFILE.tmp >> $MKFILE
619 rm $MKFILE.tmp
[c7c5a53]620 echo "Creating Makefile... ${BOLD}DONE${OFF}"
621}
Note: See TracBrowser for help on using the repository browser.