source: HLFS/master.sh@ 80f0ea1

experimental
Last change on this file since 80f0ea1 was 80f0ea1, checked in by George Boudreau <georgeb@…>, 18 years ago

Added PATH variable to generated Makefile. /usr/sbin may not be in builders PATH

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