source: LFS/master.sh@ c58f330

experimental
Last change on this file since c58f330 was a702b4d, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Merged r2592 from trunk.

  • Property mode set to 100755
File size: 14.3 KB
RevLine 
[0170229]1#!/bin/sh
2
[a46ada0]3# $Id$
[0170229]4
5###################################
6### FUNCTIONS ###
7###################################
8
9
10
11#----------------------------#
12chapter4_Makefiles() {
13#----------------------------#
[e10232b]14 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter4${R_arrow}"
[0170229]15
16# If /home/lfs is already present in the host, we asume that the
17# lfs user and group are also presents in the host, and a backup
18# of their bash init files is made.
19(
20 cat << EOF
21020-creatingtoolsdir:
22 @\$(call echo_message, Building)
23 @mkdir -v \$(MOUNT_PT)/tools && \\
24 rm -fv /tools && \\
25 ln -sv \$(MOUNT_PT)/tools / && \\
26 touch \$@
27
28021-addinguser: 020-creatingtoolsdir
29 @\$(call echo_message, Building)
30 @if [ ! -d /home/lfs ]; then \\
31 groupadd lfs; \\
32 useradd -s /bin/bash -g lfs -m -k /dev/null lfs; \\
33 else \\
34 touch user-lfs-exist; \\
35 fi;
36 @chown lfs \$(MOUNT_PT)/tools && \\
[dacaa85]37 chmod a+wt \$(MOUNT_PT)/sources && \\
[0170229]38 touch \$@
39
40022-settingenvironment: 021-addinguser
41 @\$(call echo_message, Building)
42 @if [ -f /home/lfs/.bashrc -a ! -f /home/lfs/.bashrc.XXX ]; then \\
43 mv -v /home/lfs/.bashrc /home/lfs/.bashrc.XXX; \\
44 fi;
45 @if [ -f /home/lfs/.bash_profile -a ! -f /home/lfs/.bash_profile.XXX ]; then \\
46 mv -v /home/lfs/.bash_profile /home/lfs/.bash_profile.XXX; \\
47 fi;
48 @echo "set +h" > /home/lfs/.bashrc && \\
49 echo "umask 022" >> /home/lfs/.bashrc && \\
50 echo "LFS=/mnt/lfs" >> /home/lfs/.bashrc && \\
51 echo "LC_ALL=POSIX" >> /home/lfs/.bashrc && \\
52 echo "PATH=/tools/bin:/bin:/usr/bin" >> /home/lfs/.bashrc && \\
53 echo "export LFS LC_ALL PATH" >> /home/lfs/.bashrc && \\
54 echo "source $JHALFSDIR/envars" >> /home/lfs/.bashrc && \\
55 chown lfs:lfs /home/lfs/.bashrc && \\
56 touch envars && \\
57 touch \$@
58EOF
59) >> $MKFILE.tmp
60}
61
62#----------------------------#
63chapter5_Makefiles() {
64#----------------------------#
[12a5707]65 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter5${R_arrow}"
66
[0170229]67 for file in chapter05/* ; do
68 # Keep the script file name
69 this_script=`basename $file`
70
71 # If no testsuites will be run, then TCL, Expect and DejaGNU aren't needed
[fed9756]72 # Fix also locales creation when running chapter05 testsuites (ugly)
[af4c7b1]73 case "${this_script}" in
74 *tcl) [[ "${TEST}" = "0" ]] && continue ;;
75 *expect) [[ "${TEST}" = "0" ]] && continue ;;
76 *dejagnu) [[ "${TEST}" = "0" ]] && continue ;;
77 *stripping) [[ "${STRIP}" = "0" ]] && continue ;;
[fed9756]78 *glibc) [[ "${TEST}" = "3" ]] && \
79 sed -i 's@/usr/lib/locale@/tools/lib/locale@' $file ;;
[af4c7b1]80 esac
[6b1576a]81
[0170229]82 # First append each name of the script files to a list (this will become
83 # the names of the targets in the Makefile
84 chapter5="$chapter5 ${this_script}"
85
86 # Grab the name of the target (minus the -pass1 or -pass2 in the case of gcc
87 # and binutils in chapter 5)
88 name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@' -e 's@-pass[0-9]\{1\}@@'`
89
90 # Set the dependency for the first target.
91 if [ -z $PREV ] ; then PREV=022-settingenvironment ; fi
92
[3f858ca]93 #--------------------------------------------------------------------#
94 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
95 #--------------------------------------------------------------------#
96 #
[0170229]97 # Drop in the name of the target on a new line, and the previous target
98 # as a dependency. Also call the echo_message function.
99 wrt_target "${this_script}" "$PREV"
100
101 # Find the version of the command files, if it corresponds with the building of
102 # a specific package
103 vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
104
105 # If $vrs isn't empty, we've got a package...
106 if [ "$vrs" != "" ] ; then
107 if [ "$name" = "tcl" ] ; then
[c3c4e1d]108 FILE="$name$vrs-src.tar.*"
[0170229]109 else
[c3c4e1d]110 FILE="$name-$vrs.tar.*"
[0170229]111 fi
112
[3f858ca]113 # Insert instructions for unpacking the package and to set the PKGDIR variable.
[0170229]114 wrt_unpack "$FILE"
115 fi
116
117 # Insert date and disk usage at the top of the log file, the script run
118 # and date and disk usage again at the bottom of the log file.
[fed9756]119 # The changingowner script must be run as root.
120 case "${this_script}" in
121 *changingowner) wrt_run_as_root "${this_script}" "$file" ;;
122 *) wrt_run_as_su "${this_script}" "$file" ;;
123 esac
[0170229]124
125 # Remove the build directory(ies) except if the package build fails
126 # (so we can review config.cache, config.log, etc.)
127 if [ "$vrs" != "" ] ; then
128 wrt_remove_build_dirs "$name"
129 fi
130
131 # Include a touch of the target name so make can check
132 # if it's already been made.
133 echo -e '\t@touch $@' >> $MKFILE.tmp
[3f858ca]134 #
135 #--------------------------------------------------------------------#
136 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
137 #--------------------------------------------------------------------#
[0170229]138
139 # Keep the script file name for Makefile dependencies.
140 PREV=${this_script}
141 done # end for file in chapter05/*
142}
143
144#----------------------------#
145chapter6_Makefiles() {
146#----------------------------#
[615e37d]147 # Set envars and scripts for iteration targets
[4edbc92]148 LOGS="" # Start with an empty global LOGS envar
[b242136]149 if [[ -z "$1" ]] ; then
[aa08925]150 local N=""
151 else
152 local N=-build_$1
153 local chapter6=""
[615e37d]154 mkdir chapter06$N
155 cp chapter06/* chapter06$N
156 for script in chapter06$N/* ; do
[7aee0dd]157 # Overwrite existing symlinks, files, and dirs
[615e37d]158 sed -e 's/ln -sv/&f/g' \
159 -e 's/mv -v/&f/g' \
[7aee0dd]160 -e 's/mkdir -v/&p/g' -i ${script}
[615e37d]161 done
[3135831]162 # Remove Bzip2 binaries before make install
[c2fdc03]163 sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i chapter06$N/*-bzip2
[944d69d]164 # Fix how Module-Init-Tools do the install target
[79439ec]165 sed -e 's@make install@make INSTALL=install install@' -i chapter06$N/*-module-init-tools
[944d69d]166 # Delete *old Readline libraries just after make install
167 sed -e 's@make install@&\nrm -v /lib/lib{history,readline}*old@' -i chapter06$N/*-readline
[7aee0dd]168 # Let some Udev pre-installation commands to fail
169 sed -e 's@/lib/udev/devices/fd@& || true@' \
170 -e 's/mknod -m.*/& || true/' -i chapter06$N/*-udev
[aa08925]171 fi
172
173 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter6$N${R_arrow}"
[af4c7b1]174
[615e37d]175 for file in chapter06$N/* ; do
[0170229]176 # Keep the script file name
177 this_script=`basename $file`
178
179 # We'll run the chroot commands differently than the others, so skip them in the
180 # dependencies and target creation.
[af4c7b1]181 case "${this_script}" in
182 *chroot) continue ;;
[eb024db]183 *stripping*) [[ "${STRIP}" = "0" ]] && continue ;;
[af4c7b1]184 esac
[0170229]185
[b242136]186 # Grab the name of the target
187 name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@'`
188
189 # Find the version of the command files, if it corresponds with the building of
190 # a specific package. We need this here to can skip scripts not needed for
191 # iterations rebuilds
192 vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
193
194 if [[ "$vrs" = "" ]] && [[ -n "$N" ]] ; then
195 case "${this_script}" in
196 *stripping*) ;;
197 *) continue ;;
198 esac
199 fi
200
[4edbc92]201 # Append each name of the script files to a list (this will become
202 # the names of the targets in the Makefile)
[aa08925]203 chapter6="$chapter6 ${this_script}${N}"
[0170229]204
[4edbc92]205 # Append each name of the script files to a list (this will become
206 # the names of the logs to be moved for each iteration)
207 LOGS="$LOGS ${this_script}"
208
[3f858ca]209 #--------------------------------------------------------------------#
210 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
211 #--------------------------------------------------------------------#
212 #
[0170229]213 # Drop in the name of the target on a new line, and the previous target
214 # as a dependency. Also call the echo_message function.
[aa08925]215 wrt_target "${this_script}${N}" "$PREV"
[0170229]216
217 # If $vrs isn't empty, we've got a package...
218 # Insert instructions for unpacking the package and changing directories
219 if [ "$vrs" != "" ] ; then
220 FILE="$name-$vrs.tar.*"
221 wrt_unpack2 "$FILE"
222 fi
223
224 # In the mount of kernel filesystems we need to set LFS
225 # and not to use chroot.
[af4c7b1]226 case "${this_script}" in
227 *kernfs) wrt_run_as_root "${this_script}" "$file" ;;
228 *) wrt_run_as_chroot1 "${this_script}" "$file" ;;
229 esac
[0170229]230
231 # Remove the build directory(ies) except if the package build fails.
232 if [ "$vrs" != "" ] ; then
[a46ada0]233 wrt_remove_build_dirs "$name"
[0170229]234 fi
235
236 # Include a touch of the target name so make can check
237 # if it's already been made.
238 echo -e '\t@touch $@' >> $MKFILE.tmp
[3f858ca]239 #
240 #--------------------------------------------------------------------#
241 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
242 #--------------------------------------------------------------------#
[0170229]243
244 # Keep the script file name for Makefile dependencies.
[aa08925]245 PREV=${this_script}${N}
246 # Set system_build envar for iteration targets
247 system_build=$chapter6
[0170229]248 done # end for file in chapter06/*
249}
250
251#----------------------------#
252chapter789_Makefiles() {
253#----------------------------#
[c0613fe]254 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter7/8/9${R_arrow}"
[af4c7b1]255
[0170229]256 for file in chapter0{7,8,9}/* ; do
257 # Keep the script file name
258 this_script=`basename $file`
259
260 # Grub must be configured manually.
261 # The filesystems can't be unmounted via Makefile and the user
262 # should enter the chroot environment to create the root
263 # password, edit several files and setup Grub.
[0271c0c]264 #
[0170229]265 # If no .config file is supplied, the kernel build is skipped
[0271c0c]266 #
267 case ${this_script} in
268 *grub) continue ;;
269 *reboot) continue ;;
[6b1576a]270 *console) continue ;; # Use the file generated by lfs-bootscripts
[0271c0c]271 *kernel) [[ -z ${CONFIG} ]] && continue
272 cp ${CONFIG} $BUILDDIR/sources/kernel-config ;;
273 esac
[0170229]274
275 # First append each name of the script files to a list (this will become
276 # the names of the targets in the Makefile
277 chapter789="$chapter789 ${this_script}"
278
[3f858ca]279 #--------------------------------------------------------------------#
280 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
281 #--------------------------------------------------------------------#
282 #
[0170229]283 # Drop in the name of the target on a new line, and the previous target
284 # as a dependency. Also call the echo_message function.
285 wrt_target "${this_script}" "$PREV"
286
287 # Find the bootscripts and kernel package names
[af4c7b1]288 case "${this_script}" in
289 *bootscripts)
290 vrs=`grep "^lfs-bootscripts-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
291 FILE="lfs-bootscripts-$vrs.tar.*"
292 wrt_unpack2 "$FILE"
293 ;;
294 *kernel)
295 vrs=`grep "^linux-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
296 FILE="linux-$vrs.tar.*"
297 wrt_unpack2 "$FILE"
298 ;;
299 esac
[6b1576a]300
[0170229]301 # Check if we have a real /etc/fstab file
[af4c7b1]302 case "${this_script}" in
303 *fstab) if [[ -n $FSTAB ]]; then
304 wrt_copy_fstab "${this_script}"
305 else
306 wrt_run_as_chroot2 "$this_script" "$file"
307 fi
308 ;;
309 *) wrt_run_as_chroot2 "$this_script" "$file"
310 ;;
311 esac
[0170229]312
[af4c7b1]313 case "${this_script}" in
314 *bootscripts) wrt_remove_build_dirs "dummy" ;;
315 *kernel) wrt_remove_build_dirs "dummy" ;;
316 esac
[6b1576a]317
[0170229]318 # Include a touch of the target name so make can check
319 # if it's already been made.
320 echo -e '\t@touch $@' >> $MKFILE.tmp
[3f858ca]321 #
322 #--------------------------------------------------------------------#
323 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
324 #--------------------------------------------------------------------#
[0170229]325
326 # Keep the script file name for Makefile dependencies.
327 PREV=${this_script}
328 done # for file in chapter0{7,8,9}/*
[9e4b9a1]329
330 # Add SBU-disk_usage report target if required
331 if [[ "$REPORT" = "1" ]] ; then wrt_report ; fi
[0170229]332}
333
334
335#----------------------------#
336build_Makefile() {
337#----------------------------#
[a702b4d]338 echo "Creating Makefile... ${BOLD}START${OFF}"
[0170229]339 cd $JHALFSDIR/${PROGNAME}-commands
340
341 # Start with a clean Makefile.tmp file
342 >$MKFILE.tmp
343
344 chapter4_Makefiles
345 chapter5_Makefiles
346 chapter6_Makefiles
[4edbc92]347 # Add the iterations targets, if needed
[d27c9ca]348 [[ "$COMPARE" != "0" ]] && wrt_compare_targets
[0170229]349 chapter789_Makefiles
350
351
352 # Add a header, some variables and include the function file
353 # to the top of the real Makefile.
354(
355 cat << EOF
356$HEADER
357
358SRC= /sources
359MOUNT_PT= $BUILDDIR
360
361include makefile-functions
362
363EOF
364) > $MKFILE
365
366
367 # Add chroot commands
368 i=1
369 for file in chapter06/*chroot* ; do
370 chroot=`cat $file | sed -e '/#!\/bin\/sh/d' -e 's@ \\\@ @g' | tr -d '\n' | sed \
371 -e 's/ */ /g' -e 's|\\$|&&|g' -e 's|exit||g' -e 's|$| -c|' \
372 -e 's|"$$LFS"|$(MOUNT_PT)|' -e 's|set -e||'`
373 echo -e "CHROOT$i= $chroot\n" >> $MKFILE
374 i=`expr $i + 1`
375 done
376
377 # Drop in the main target 'all:' and the chapter targets with each sub-target
378 # as a dependency.
379(
380 cat << EOF
381all: chapter4 chapter5 chapter6 chapter789
382 @\$(call echo_finished,$VERSION)
383
384chapter4: 020-creatingtoolsdir 021-addinguser 022-settingenvironment
385
386chapter5: chapter4 $chapter5 restore-lfs-env
387
388chapter6: chapter5 $chapter6
389
390chapter789: chapter6 $chapter789
391
392clean-all: clean
[db187c74]393 rm -rf ./{lfs-commands,logs,Makefile,*.xsl,makefile-functions,packages,patches}
[0170229]394
395clean: clean-chapter789 clean-chapter6 clean-chapter5 clean-chapter4
396
397clean-chapter4:
398 -if [ ! -f user-lfs-exist ]; then \\
399 userdel lfs; \\
400 rm -rf /home/lfs; \\
401 fi;
402 rm -rf \$(MOUNT_PT)/tools
403 rm -f /tools
404 rm -f envars user-lfs-exist
405 rm -f 02* logs/02*.log
406
407clean-chapter5:
408 rm -rf \$(MOUNT_PT)/tools/*
409 rm -f $chapter5 restore-lfs-env sources-dir
410 cd logs && rm -f $chapter5 && cd ..
411
412clean-chapter6:
413 -umount \$(MOUNT_PT)/sys
414 -umount \$(MOUNT_PT)/proc
415 -umount \$(MOUNT_PT)/dev/shm
416 -umount \$(MOUNT_PT)/dev/pts
417 -umount \$(MOUNT_PT)/dev
418 rm -rf \$(MOUNT_PT)/{bin,boot,dev,etc,home,lib,media,mnt,opt,proc,root,sbin,srv,sys,tmp,usr,var}
419 rm -f $chapter6
420 cd logs && rm -f $chapter6 && cd ..
421
422clean-chapter789:
423 rm -f $chapter789
424 cd logs && rm -f $chapter789 && cd ..
425
426restore-lfs-env:
427 @\$(call echo_message, Building)
428 @if [ -f /home/lfs/.bashrc.XXX ]; then \\
429 mv -fv /home/lfs/.bashrc.XXX /home/lfs/.bashrc; \\
430 fi;
431 @if [ -f /home/lfs/.bash_profile.XXX ]; then \\
432 mv -v /home/lfs/.bash_profile.XXX /home/lfs/.bash_profile; \\
433 fi;
434 @chown lfs:lfs /home/lfs/.bash* && \\
435 touch \$@
436
[42346b2]437EOF
438) >> $MKFILE
439
[0170229]440 # Bring over the items from the Makefile.tmp
441 cat $MKFILE.tmp >> $MKFILE
442 rm $MKFILE.tmp
[a702b4d]443 echo "Creating Makefile... ${BOLD}DONE${OFF}"
[0170229]444
[a702b4d]445}
[0170229]446
Note: See TracBrowser for help on using the repository browser.