source: LFS/master.sh@ dda2496

ablfs
Last change on this file since dda2496 was 5130b3a, checked in by Pierre Labastie <pierre@…>, 11 years ago

Merge trunk r3750-3760

  • Property mode set to 100644
File size: 19.9 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 # We'll run the chroot commands differently than the others, so skip them in the
201 # dependencies and target creation.
202 # Skip also linux-headers in iterative builds.
203 case "${this_script}" in
204 *chroot) continue ;;
205 *stripping*) [[ "${STRIP}" = "n" ]] && continue ;;
206 *linux-headers*) [[ -n "$N" ]] && continue ;;
207 esac
208
209 # Grab the name of the target.
210 name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@' -e 's,'$N',,'`
211
212 # Find the version of the command files, if it corresponds with the building of
213 # a specific package. We need this here to can skip scripts not needed for
214 # iterations rebuilds
215 pkg_tarball=$(get_package_tarball_name $name)
216 pkg_version=$(get_package_version $pkg_tarball)
217
218 if [[ "$pkg_tarball" = "" ]] && [[ -n "$N" ]] ; then
219 case "${this_script}" in
220 *stripping*) ;;
221 *) continue ;;
222 esac
223 fi
224
225 # Append each name of the script files to a list (this will become
226 # the names of the targets in the Makefile)
227 # The kernfs script must be run as part of SUDO target.
228 case "${this_script}" in
229 *kernfs) runasroot="$runasroot ${this_script}" ;;
230 *) chapter6="$chapter6 ${this_script}" ;;
231 esac
232
233 #--------------------------------------------------------------------#
234 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
235 #--------------------------------------------------------------------#
236 #
237 # Drop in the name of the target on a new line, and the previous target
238 # as a dependency. Also call the echo_message function.
239 # In the mount of kernel filesystems we need to set LFS
240 # and not to use chroot.
241 case "${this_script}" in
242 *kernfs) LUSER_wrt_target "${this_script}" "$PREV" "$pkg_version" ;;
243 *) CHROOT_wrt_target "${this_script}" "$PREV" "$pkg_version" ;;
244 esac
245
246 # If $pkg_tarball isn't empty, we've got a package...
247 # Insert instructions for unpacking the package and changing directories
248 if [ "$pkg_tarball" != "" ] ; then
249 # Touch timestamp file if installed files logs will be created.
250 # But only for the firt build when running iterative builds.
251 if [ "${INSTALL_LOG}" = "y" ] && [ "x${N}" = "x" ] ; then
252 CHROOT_wrt_TouchTimestamp
253 fi
254 CHROOT_Unpack "$pkg_tarball"
255 # If the testsuites must be run, initialize the log file
256 case $name in
257 binutils | gcc | glibc | gmp | mpfr )
258 [[ "$TEST" != "0" ]] && CHROOT_wrt_test_log "${this_script}" "$pkg_version"
259 ;;
260 * )
261 [[ "$TEST" = "2" ]] || [[ "$TEST" = "3" ]] && CHROOT_wrt_test_log "${this_script}" "$pkg_version"
262 ;;
263 esac
264 # If using optimizations, write the instructions
265 [[ "$OPTIMIZE" != "0" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
266 fi
267
268 # In the mount of kernel filesystems we need to set LFS
269 # and not to use chroot.
270 case "${this_script}" in
271 *kernfs) wrt_RunAsRoot "$file" "$pkg_version" ;;
272 *) CHROOT_wrt_RunAsRoot "$file" "$pkg_version" ;;
273 esac
274
275 # Write installed files log and remove the build directory(ies)
276 # except if the package build fails.
277 if [ "$pkg_tarball" != "" ] ; then
278 case "${name}" in
279 *xz-utils) CHROOT_wrt_RemoveBuildDirs "xz" ;;
280 *) CHROOT_wrt_RemoveBuildDirs "$name" ;;
281 esac
282 if [ "${INSTALL_LOG}" = "y" ] && [ "x${N}" = "x" ] ; then
283 CHROOT_wrt_LogNewFiles "$name"
284 fi
285 fi
286
287 # Include a touch of the target name so make can check
288 # if it's already been made.
289 wrt_touch
290 #
291 #--------------------------------------------------------------------#
292 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
293 #--------------------------------------------------------------------#
294
295 # Keep the script file name for Makefile dependencies.
296 PREV=${this_script}
297 # Set system_build envar for iteration targets
298 system_build=$chapter6
299 done # end for file in chapter06/*
300}
301
302#----------------------------#
303chapter78_Makefiles() {
304#----------------------------#
305 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter7/8 ( BOOT ) ${R_arrow}"
306
307 for file in chapter0{7,8}/* ; do
308 # Keep the script file name
309 this_script=`basename $file`
310
311 # Grub must be configured manually.
312 # Handle fstab creation.
313 # If no .config file is supplied, the kernel build is skipped
314 case ${this_script} in
315 *grub) continue ;;
316 *fstab) [[ ! -z ${FSTAB} ]] && cp ${FSTAB} $BUILDDIR/sources/fstab ;;
317 *kernel) [[ -z ${CONFIG} ]] && continue
318 cp ${CONFIG} $BUILDDIR/sources/kernel-config ;;
319 esac
320
321 # First append each name of the script files to a list (this will become
322 # the names of the targets in the Makefile
323 chapter78="$chapter78 ${this_script}"
324
325 #--------------------------------------------------------------------#
326 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
327 #--------------------------------------------------------------------#
328 #
329 # Drop in the name of the target on a new line, and the previous target
330 # as a dependency. Also call the echo_message function.
331 CHROOT_wrt_target "${this_script}" "$PREV"
332
333 # Find the bootscripts 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 *kernel)
344 name="linux"
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 # If using optimizations, use MAKEFLAGS (unless blacklisted)
351 # no setting of CFLAGS and friends.
352 [[ "$OPTIMIZE" != "0" ]] && wrt_makeflags "$name"
353 ;;
354 esac
355
356 # Check if we have a real /etc/fstab file
357 case "${this_script}" in
358 *fstab) if [[ -n $FSTAB ]]; then
359 CHROOT_wrt_CopyFstab
360 else
361 CHROOT_wrt_RunAsRoot "$file"
362 fi
363 ;;
364 *) CHROOT_wrt_RunAsRoot "$file"
365 ;;
366 esac
367
368 case "${this_script}" in
369 *bootscripts) CHROOT_wrt_RemoveBuildDirs "dummy"
370 if [ "${INSTALL_LOG}" = "y" ] ; then
371 CHROOT_wrt_LogNewFiles "$name"
372 fi ;;
373 *kernel) CHROOT_wrt_RemoveBuildDirs "dummy"
374 if [ "${INSTALL_LOG}" = "y" ] ; then
375 CHROOT_wrt_LogNewFiles "$name"
376 fi ;;
377 esac
378
379 # Include a touch of the target name so make can check
380 # if it's already been made.
381 wrt_touch
382 #
383 #--------------------------------------------------------------------#
384 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
385 #--------------------------------------------------------------------#
386
387 # Keep the script file name for Makefile dependencies.
388 PREV=${this_script}
389 done # for file in chapter0{7,8}/*
390
391}
392
393
394
395#----------------------------#
396build_Makefile() { #
397#----------------------------#
398
399 echo "Creating Makefile... ${BOLD}START${OFF}"
400
401 cd $JHALFSDIR/${PROGNAME}-commands
402
403 # Start with a clean Makefile.tmp file
404 >$MKFILE
405
406 chapter4_Makefiles
407 chapter5_Makefiles
408 chapter6_Makefiles
409 # Add the iterations targets, if needed
410 [[ "$COMPARE" = "y" ]] && wrt_compare_targets
411 chapter78_Makefiles
412 # Add the CUSTOM_TOOLS targets, if needed
413 [[ "$CUSTOM_TOOLS" = "y" ]] && wrt_CustomTools_target
414
415 # Add a header, some variables and include the function file
416 # to the top of the real Makefile.
417 wrt_Makefile_header
418
419 # Add chroot commands
420 CHROOT_LOC="`whereis -b chroot | cut -d " " -f2`"
421 i=1
422 for file in chapter06/*chroot* ; do
423 chroot=`cat $file | \
424 sed -e "s@chroot@$CHROOT_LOC@" \
425 -e '/#!\/bin\/bash/d' \
426 -e 's@ \\\@ @g' | \
427 tr -d '\n' | \
428 sed -e 's/ */ /g' \
429 -e 's|\\$|&&|g' \
430 -e 's|exit||g' \
431 -e 's|$| -c|' \
432 -e 's|"$$LFS"|$(MOUNT_PT)|' \
433 -e 's|set -e||' \
434 -e 's|set +h||'`
435 echo -e "CHROOT$i= $chroot\n" >> $MKFILE
436 i=`expr $i + 1`
437 done
438
439 # Drop in the main target 'all:' and the chapter targets with each sub-target
440 # as a dependency.
441(
442 cat << EOF
443
444all: ck_UID mk_SETUP mk_LUSER mk_SUDO mk_CHROOT mk_BOOT create-sbu_du-report mk_BLFS_TOOL mk_CUSTOM_TOOLS
445 @sudo make do_housekeeping
446 @echo $VERSION > lfs-release && \\
447 sudo mv lfs-release \$(MOUNT_PT)/etc && \\
448 sudo chown root:root \$(MOUNT_PT)/etc/lfs-release
449 @/bin/echo -e -n \\
450 DISTRIB_ID=\\"Linux From Scratch\\"\\\\n\\
451 DISTRIB_RELEASE=\\"$VERSION\\"\\\\n\\
452 DISTRIB_CODENAME=\\"$(whoami)-jhalfs\\"\\\\n\\
453 DISTRIB_DESCRIPTION=\\"Linux From Scratch\\"\\\\n\\
454 > lsb-release && \\
455 sudo mv lsb-release \$(MOUNT_PT)/etc && \\
456 sudo chown root:root \$(MOUNT_PT)/etc/lsb-release
457 @\$(call echo_finished,$VERSION)
458
459ck_UID:
460 @if [ \`id -u\` = "0" ]; then \\
461 echo "--------------------------------------------------"; \\
462 echo "You cannot run this makefile from the root account"; \\
463 echo "--------------------------------------------------"; \\
464 exit 1; \\
465 fi
466
467mk_SETUP:
468 @\$(call echo_SU_request)
469 @sudo make BREAKPOINT=\$(BREAKPOINT) SETUP
470 @touch \$@
471
472mk_LUSER: mk_SETUP
473 @\$(call echo_SULUSER_request)
474 @( \$(SU_LUSER) "make -C \$(MOUNT_PT)/\$(SCRIPT_ROOT) BREAKPOINT=\$(BREAKPOINT) LUSER" )
475 @sudo make restore-luser-env
476 @touch \$@
477
478mk_SUDO: mk_LUSER
479 @sudo make BREAKPOINT=\$(BREAKPOINT) SUDO
480 @touch \$@
481
482mk_CHROOT: mk_SUDO
483 @\$(call echo_CHROOT_request)
484 @( sudo \$(CHROOT1) "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) CHROOT")
485 @touch \$@
486
487mk_BOOT: mk_CHROOT
488 @\$(call echo_CHROOT_request)
489 @( sudo \$(CHROOT2) "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) BOOT")
490 @touch \$@
491
492mk_BLFS_TOOL: create-sbu_du-report
493 @if [ "\$(ADD_BLFS_TOOLS)" = "y" ]; then \\
494 \$(call sh_echo_PHASE,Building BLFS_TOOL); \\
495 (sudo \$(CHROOT2) "make -C $BLFS_ROOT/work"); \\
496 fi;
497 @touch \$@
498
499mk_CUSTOM_TOOLS: mk_BLFS_TOOL
500 @if [ "\$(ADD_CUSTOM_TOOLS)" = "y" ]; then \\
501 \$(call sh_echo_PHASE,Building CUSTOM_TOOLS); \\
502 sudo mkdir -p ${BUILDDIR}${TRACKING_DIR}; \\
503 (sudo \$(CHROOT2) "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) CUSTOM_TOOLS"); \\
504 fi;
505 @touch \$@
506
507devices: ck_UID
508 sudo mount -v --bind /dev \$(MOUNT_PT)/dev
509 sudo mount -vt devpts devpts \$(MOUNT_PT)/dev/pts
510 sudo mount -vt proc proc \$(MOUNT_PT)/proc
511 sudo mount -vt sysfs sysfs \$(MOUNT_PT)/sys
512 if [ -h \$(MOUNT_PT)/dev/shm ]; then \\
513 link=\$\$(readlink \$(MOUNT_PT)/dev/shm); \\
514 sudo mkdir -p \$(MOUNT_PT)/\$\$link; \\
515 sudo mount -vt tmpfs shm \$(MOUNT_PT)/\$\$link; \\
516 unset link; \\
517 else \\
518 sudo mount -vt tmpfs shm \$(MOUNT_PT)/dev/shm; \\
519 fi
520
521teardown:
522 sudo umount -v \$(MOUNT_PT)/sys
523 sudo umount -v \$(MOUNT_PT)/proc
524 sudo umount -v \$(MOUNT_PT)/dev/pts
525 if [ -h \$(MOUNT_PT)/dev/shm ]; then \\
526 link=\$\$(readlink \$(MOUNT_PT)/dev/shm); \\
527 sudo umount -v \$(MOUNT_PT)/\$\$link; \\
528 unset link; \\
529 else \\
530 sudo umount -v \$(MOUNT_PT)/dev/shm; \\
531 fi
532 sudo umount -v \$(MOUNT_PT)/dev
533
534chroot: devices
535 sudo /usr/sbin/chroot \$(MOUNT_PT) /tools/bin/env -i \\
536 HOME=/root TERM=\$(TERM) PS1='\\u:\\w\\\$\$ ' \\
537 PATH=/bin:/usr/bin:/sbin:/usr/sbin \\
538 /tools/bin/bash --login
539 \$(MAKE) teardown
540
541SETUP: $chapter4
542LUSER: $chapter5
543SUDO: $runasroot
544CHROOT: SHELL=/tools/bin/bash
545CHROOT: $chapter6
546BOOT: $chapter78
547CUSTOM_TOOLS: $custom_list
548
549
550create-sbu_du-report: mk_BOOT
551 @\$(call echo_message, Building)
552 @if [ "\$(ADD_REPORT)" = "y" ]; then \\
553 sudo ./create-sbu_du-report.sh logs $VERSION; \\
554 \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
555 fi;
556 @touch \$@
557
558restore-luser-env:
559 @\$(call echo_message, Building)
560 @if [ -f \$(LUSER_HOME)/.bashrc.XXX ]; then \\
561 mv -f \$(LUSER_HOME)/.bashrc.XXX \$(LUSER_HOME)/.bashrc; \\
562 fi;
563 @if [ -f \$(LUSER_HOME)/.bash_profile.XXX ]; then \\
564 mv \$(LUSER_HOME)/.bash_profile.XXX \$(LUSER_HOME)/.bash_profile; \\
565 fi;
566 @chown \$(LUSER):\$(LGROUP) \$(LUSER_HOME)/.bash*
567 @\$(call housekeeping)
568
569do_housekeeping:
570 @-umount \$(MOUNT_PT)/sys
571 @-umount \$(MOUNT_PT)/proc
572 @-if [ -h \$(MOUNT_PT)/dev/shm ]; then \\
573 link=\$\$(readlink \$(MOUNT_PT)/dev/shm); \\
574 umount \$(MOUNT_PT)/\$\$link; \\
575 unset link; \\
576 else \\
577 umount \$(MOUNT_PT)/dev/shm; \\
578 fi
579 @-umount \$(MOUNT_PT)/dev/pts
580 @-umount \$(MOUNT_PT)/dev
581 @-rm /tools
582 @-if [ ! -f luser-exist ]; then \\
583 userdel \$(LUSER); \\
584 rm -rf \$(LUSER_HOME); \\
585 fi;
586
587
588EOF
589) >> $MKFILE
590
591 # Bring over the items from the Makefile.tmp
592 cat $MKFILE.tmp >> $MKFILE
593 rm $MKFILE.tmp
594 echo "Creating Makefile... ${BOLD}DONE${OFF}"
595}
Note: See TracBrowser for help on using the repository browser.