source: LFS/master.sh@ 9b5d069

experimental
Last change on this file since 9b5d069 was 7aee0dd, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Let some Udev pre-installation commands to fail.

  • Property mode set to 100755
File size: 13.7 KB
Line 
1#!/bin/sh
2
3# $Id$
4
5###################################
6### FUNCTIONS ###
7###################################
8
9
10
11#----------------------------#
12chapter4_Makefiles() {
13#----------------------------#
14 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter4${R_arrow}"
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 && \\
37 chmod a+wt \$(MOUNT_PT)/sources && \\
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#----------------------------#
65 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter5${R_arrow}"
66
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
72 # Fix also locales creation when running chapter05 testsuites (ugly)
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 ;;
78 *glibc) [[ "${TEST}" = "3" ]] && \
79 sed -i 's@/usr/lib/locale@/tools/lib/locale@' $file ;;
80 esac
81
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
93 #--------------------------------------------------------------------#
94 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
95 #--------------------------------------------------------------------#
96 #
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
108 FILE="$name$vrs-src.tar.*"
109 else
110 FILE="$name-$vrs.tar.*"
111 fi
112
113 # Insert instructions for unpacking the package and to set the PKGDIR variable.
114 wrt_unpack "$FILE"
115 echo -e '\ttrue' >> $MKFILE.tmp
116 fi
117
118 # Insert date and disk usage at the top of the log file, the script run
119 # and date and disk usage again at the bottom of the log file.
120 # The changingowner script must be run as root.
121 case "${this_script}" in
122 *changingowner) wrt_run_as_root "${this_script}" "$file" ;;
123 *) wrt_run_as_su "${this_script}" "$file" ;;
124 esac
125
126 # Remove the build directory(ies) except if the package build fails
127 # (so we can review config.cache, config.log, etc.)
128 if [ "$vrs" != "" ] ; then
129 wrt_remove_build_dirs "$name"
130 fi
131
132 # Include a touch of the target name so make can check
133 # if it's already been made.
134 echo -e '\t@touch $@' >> $MKFILE.tmp
135 #
136 #--------------------------------------------------------------------#
137 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
138 #--------------------------------------------------------------------#
139
140 # Keep the script file name for Makefile dependencies.
141 PREV=${this_script}
142 done # end for file in chapter05/*
143}
144
145#----------------------------#
146chapter6_Makefiles() {
147#----------------------------#
148 # Set envars and scripts for iteration targets
149 if [[ -z "$1" ]] ; then
150 local N=""
151 else
152 local N=-build_$1
153 local chapter6=""
154 mkdir chapter06$N
155 cp chapter06/* chapter06$N
156 for script in chapter06$N/* ; do
157 # Overwrite existing symlinks, files, and dirs
158 sed -e 's/ln -sv/&f/g' \
159 -e 's/mv -v/&f/g' \
160 -e 's/mkdir -v/&p/g' -i ${script}
161 done
162 # Remove bzip2 binaries before make install
163 sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i chapter06$N/*-bzip2
164 # Let some Udev pre-installation commands to fail
165 sed -e 's@/lib/udev/devices/fd@& || true@' \
166 -e 's/mknod -m.*/& || true/' -i chapter06$N/*-udev
167 fi
168
169 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter6$N${R_arrow}"
170
171 for file in chapter06$N/* ; do
172 # Keep the script file name
173 this_script=`basename $file`
174
175 # We'll run the chroot commands differently than the others, so skip them in the
176 # dependencies and target creation.
177 case "${this_script}" in
178 *chroot) continue ;;
179 *stripping*) [[ "${STRIP}" = "0" ]] && continue ;;
180 esac
181
182 # Grab the name of the target
183 name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@'`
184
185 # Find the version of the command files, if it corresponds with the building of
186 # a specific package. We need this here to can skip scripts not needed for
187 # iterations rebuilds
188 vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
189
190 if [[ "$vrs" = "" ]] && [[ -n "$N" ]] ; then
191 case "${this_script}" in
192 *stripping*) ;;
193 *) continue ;;
194 esac
195 fi
196
197 # First append each name of the script files to a list (this will become
198 # the names of the targets in the Makefile
199 chapter6="$chapter6 ${this_script}${N}"
200
201 #--------------------------------------------------------------------#
202 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
203 #--------------------------------------------------------------------#
204 #
205 # Drop in the name of the target on a new line, and the previous target
206 # as a dependency. Also call the echo_message function.
207 wrt_target "${this_script}${N}" "$PREV"
208
209 # If $vrs isn't empty, we've got a package...
210 # Insert instructions for unpacking the package and changing directories
211 if [ "$vrs" != "" ] ; then
212 FILE="$name-$vrs.tar.*"
213 wrt_unpack2 "$FILE"
214 fi
215
216 # In the mount of kernel filesystems we need to set LFS
217 # and not to use chroot.
218 case "${this_script}" in
219 *kernfs) wrt_run_as_root "${this_script}" "$file" ;;
220 *) wrt_run_as_chroot1 "${this_script}" "$file" ;;
221 esac
222
223 # Remove the build directory(ies) except if the package build fails.
224 if [ "$vrs" != "" ] ; then
225 wrt_remove_build_dirs "$name"
226 fi
227
228 # Include a touch of the target name so make can check
229 # if it's already been made.
230 echo -e '\t@touch $@' >> $MKFILE.tmp
231 #
232 #--------------------------------------------------------------------#
233 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
234 #--------------------------------------------------------------------#
235
236 # Keep the script file name for Makefile dependencies.
237 PREV=${this_script}${N}
238 # Set system_build envar for iteration targets
239 system_build=$chapter6
240 done # end for file in chapter06/*
241}
242
243#----------------------------#
244chapter789_Makefiles() {
245#----------------------------#
246 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter7/8/9${R_arrow}"
247
248 for file in chapter0{7,8,9}/* ; do
249 # Keep the script file name
250 this_script=`basename $file`
251
252 # Grub must be configured manually.
253 # The filesystems can't be unmounted via Makefile and the user
254 # should enter the chroot environment to create the root
255 # password, edit several files and setup Grub.
256 #
257 # If no .config file is supplied, the kernel build is skipped
258 #
259 case ${this_script} in
260 *grub) continue ;;
261 *reboot) continue ;;
262 *console) continue ;; # Use the file generated by lfs-bootscripts
263 *kernel) [[ -z ${CONFIG} ]] && continue
264 cp ${CONFIG} $BUILDDIR/sources/kernel-config ;;
265 esac
266
267 # First append each name of the script files to a list (this will become
268 # the names of the targets in the Makefile
269 chapter789="$chapter789 ${this_script}"
270
271 #--------------------------------------------------------------------#
272 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
273 #--------------------------------------------------------------------#
274 #
275 # Drop in the name of the target on a new line, and the previous target
276 # as a dependency. Also call the echo_message function.
277 wrt_target "${this_script}" "$PREV"
278
279 # Find the bootscripts and kernel package names
280 case "${this_script}" in
281 *bootscripts)
282 vrs=`grep "^lfs-bootscripts-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
283 FILE="lfs-bootscripts-$vrs.tar.*"
284 wrt_unpack2 "$FILE"
285 ;;
286 *kernel)
287 vrs=`grep "^linux-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
288 FILE="linux-$vrs.tar.*"
289 wrt_unpack2 "$FILE"
290 ;;
291 esac
292
293 # Check if we have a real /etc/fstab file
294 case "${this_script}" in
295 *fstab) if [[ -n $FSTAB ]]; then
296 wrt_copy_fstab "${this_script}"
297 else
298 wrt_run_as_chroot2 "$this_script" "$file"
299 fi
300 ;;
301 *) wrt_run_as_chroot2 "$this_script" "$file"
302 ;;
303 esac
304
305 case "${this_script}" in
306 *bootscripts) wrt_remove_build_dirs "dummy" ;;
307 *kernel) wrt_remove_build_dirs "dummy" ;;
308 esac
309
310 # Include a touch of the target name so make can check
311 # if it's already been made.
312 echo -e '\t@touch $@' >> $MKFILE.tmp
313 #
314 #--------------------------------------------------------------------#
315 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
316 #--------------------------------------------------------------------#
317
318 # Keep the script file name for Makefile dependencies.
319 PREV=${this_script}
320 done # for file in chapter0{7,8,9}/*
321}
322
323
324#----------------------------#
325build_Makefile() {
326#----------------------------#
327 echo "Creating Makefile... "
328 cd $JHALFSDIR/${PROGNAME}-commands
329
330 # Start with a clean Makefile.tmp file
331 >$MKFILE.tmp
332
333 chapter4_Makefiles
334 chapter5_Makefiles
335 chapter6_Makefiles
336 # Add the ICA/farce targets, if needed
337 [[ "$COMPARE" != "0" ]] && wrt_compare_targets
338 chapter789_Makefiles
339
340
341 # Add a header, some variables and include the function file
342 # to the top of the real Makefile.
343(
344 cat << EOF
345$HEADER
346
347SRC= /sources
348MOUNT_PT= $BUILDDIR
349
350include makefile-functions
351
352EOF
353) > $MKFILE
354
355
356 # Add chroot commands
357 i=1
358 for file in chapter06/*chroot* ; do
359 chroot=`cat $file | sed -e '/#!\/bin\/sh/d' -e 's@ \\\@ @g' | tr -d '\n' | sed \
360 -e 's/ */ /g' -e 's|\\$|&&|g' -e 's|exit||g' -e 's|$| -c|' \
361 -e 's|"$$LFS"|$(MOUNT_PT)|' -e 's|set -e||'`
362 echo -e "CHROOT$i= $chroot\n" >> $MKFILE
363 i=`expr $i + 1`
364 done
365
366 # Drop in the main target 'all:' and the chapter targets with each sub-target
367 # as a dependency.
368(
369 cat << EOF
370all: chapter4 chapter5 chapter6 chapter789
371 @\$(call echo_finished,$VERSION)
372
373chapter4: 020-creatingtoolsdir 021-addinguser 022-settingenvironment
374
375chapter5: chapter4 $chapter5 restore-lfs-env
376
377chapter6: chapter5 $chapter6
378
379chapter789: chapter6 $chapter789
380
381clean-all: clean
382 rm -rf ./{lfs-commands,logs,Makefile,*.xsl,makefile-functions,packages,patches}
383
384clean: clean-chapter789 clean-chapter6 clean-chapter5 clean-chapter4
385
386clean-chapter4:
387 -if [ ! -f user-lfs-exist ]; then \\
388 userdel lfs; \\
389 rm -rf /home/lfs; \\
390 fi;
391 rm -rf \$(MOUNT_PT)/tools
392 rm -f /tools
393 rm -f envars user-lfs-exist
394 rm -f 02* logs/02*.log
395
396clean-chapter5:
397 rm -rf \$(MOUNT_PT)/tools/*
398 rm -f $chapter5 restore-lfs-env sources-dir
399 cd logs && rm -f $chapter5 && cd ..
400
401clean-chapter6:
402 -umount \$(MOUNT_PT)/sys
403 -umount \$(MOUNT_PT)/proc
404 -umount \$(MOUNT_PT)/dev/shm
405 -umount \$(MOUNT_PT)/dev/pts
406 -umount \$(MOUNT_PT)/dev
407 rm -rf \$(MOUNT_PT)/{bin,boot,dev,etc,home,lib,media,mnt,opt,proc,root,sbin,srv,sys,tmp,usr,var}
408 rm -f $chapter6
409 cd logs && rm -f $chapter6 && cd ..
410
411clean-chapter789:
412 rm -f $chapter789
413 cd logs && rm -f $chapter789 && cd ..
414
415restore-lfs-env:
416 @\$(call echo_message, Building)
417 @if [ -f /home/lfs/.bashrc.XXX ]; then \\
418 mv -fv /home/lfs/.bashrc.XXX /home/lfs/.bashrc; \\
419 fi;
420 @if [ -f /home/lfs/.bash_profile.XXX ]; then \\
421 mv -v /home/lfs/.bash_profile.XXX /home/lfs/.bash_profile; \\
422 fi;
423 @chown lfs:lfs /home/lfs/.bash* && \\
424 touch \$@
425
426EOF
427) >> $MKFILE
428
429 # Bring over the items from the Makefile.tmp
430 cat $MKFILE.tmp >> $MKFILE
431 rm $MKFILE.tmp
432 echo "done"
433}
434
435
Note: See TracBrowser for help on using the repository browser.