source: LFS/master.sh@ 57ef0c1

2.4 ablfs-more legacy new_features trunk
Last change on this file since 57ef0c1 was abc8b27, checked in by Pierre Labastie <pierre@…>, 10 years ago

Change the command to create the CHROOT$i variables so that it looks better.
Thanks to "amakarov" for the patch.

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