source: LFS/master.sh@ 775945f

1.0 2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 775945f was 775945f, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Small code fix.

  • Property mode set to 100755
File size: 12.6 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&@' $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 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter6${R_arrow}"
149
150 for file in chapter06/* ; do
151 # Keep the script file name
152 this_script=`basename $file`
153
154 # We'll run the chroot commands differently than the others, so skip them in the
155 # dependencies and target creation.
156 case "${this_script}" in
157 *chroot) continue ;;
158 *stripping*) [[ "${STRIP}" = "0" ]] && continue ;;
159 esac
160
161 # First append each name of the script files to a list (this will become
162 # the names of the targets in the Makefile
163 chapter6="$chapter6 ${this_script}"
164
165 # Grab the name of the target
166 name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@'`
167
168 #--------------------------------------------------------------------#
169 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
170 #--------------------------------------------------------------------#
171 #
172 # Drop in the name of the target on a new line, and the previous target
173 # as a dependency. Also call the echo_message function.
174 wrt_target "${this_script}" "$PREV"
175
176 # Find the version of the command files, if it corresponds with the building of
177 # a specific package
178 vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
179
180 # If $vrs isn't empty, we've got a package...
181 # Insert instructions for unpacking the package and changing directories
182 if [ "$vrs" != "" ] ; then
183 FILE="$name-$vrs.tar.*"
184 wrt_unpack2 "$FILE"
185 fi
186
187 # In the mount of kernel filesystems we need to set LFS
188 # and not to use chroot.
189 case "${this_script}" in
190 *kernfs) wrt_run_as_root "${this_script}" "$file" ;;
191 *) wrt_run_as_chroot1 "${this_script}" "$file" ;;
192 esac
193
194 # Remove the build directory(ies) except if the package build fails.
195 if [ "$vrs" != "" ] ; then
196 wrt_remove_build_dirs "$name"
197 fi
198
199 # Include a touch of the target name so make can check
200 # if it's already been made.
201 echo -e '\t@touch $@' >> $MKFILE.tmp
202 #
203 #--------------------------------------------------------------------#
204 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
205 #--------------------------------------------------------------------#
206
207 # Keep the script file name for Makefile dependencies.
208 PREV=${this_script}
209 done # end for file in chapter06/*
210}
211
212#----------------------------#
213chapter789_Makefiles() {
214#----------------------------#
215 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter7/8/9${R_arrow}"
216
217 for file in chapter0{7,8,9}/* ; do
218 # Keep the script file name
219 this_script=`basename $file`
220
221 # Grub must be configured manually.
222 # The filesystems can't be unmounted via Makefile and the user
223 # should enter the chroot environment to create the root
224 # password, edit several files and setup Grub.
225 #
226 # If no .config file is supplied, the kernel build is skipped
227 #
228 case ${this_script} in
229 *grub) continue ;;
230 *reboot) continue ;;
231 *console) continue ;; # Use the file generated by lfs-bootscripts
232 *kernel) [[ -z ${CONFIG} ]] && continue
233 cp ${CONFIG} $BUILDDIR/sources/kernel-config ;;
234 esac
235
236 # First append each name of the script files to a list (this will become
237 # the names of the targets in the Makefile
238 chapter789="$chapter789 ${this_script}"
239
240 #--------------------------------------------------------------------#
241 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
242 #--------------------------------------------------------------------#
243 #
244 # Drop in the name of the target on a new line, and the previous target
245 # as a dependency. Also call the echo_message function.
246 wrt_target "${this_script}" "$PREV"
247
248 # Find the bootscripts and kernel package names
249 case "${this_script}" in
250 *bootscripts)
251 vrs=`grep "^lfs-bootscripts-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
252 FILE="lfs-bootscripts-$vrs.tar.*"
253 wrt_unpack2 "$FILE"
254 ;;
255 *kernel)
256 vrs=`grep "^linux-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
257 FILE="linux-$vrs.tar.*"
258 wrt_unpack2 "$FILE"
259 ;;
260 esac
261
262 # Check if we have a real /etc/fstab file
263 case "${this_script}" in
264 *fstab) if [[ -n $FSTAB ]]; then
265 wrt_copy_fstab "${this_script}"
266 else
267 wrt_run_as_chroot2 "$this_script" "$file"
268 fi
269 ;;
270 *) wrt_run_as_chroot2 "$this_script" "$file"
271 ;;
272 esac
273
274 case "${this_script}" in
275 *bootscripts) wrt_remove_build_dirs "dummy" ;;
276 *kernel) wrt_remove_build_dirs "dummy" ;;
277 esac
278
279 # Include a touch of the target name so make can check
280 # if it's already been made.
281 echo -e '\t@touch $@' >> $MKFILE.tmp
282 #
283 #--------------------------------------------------------------------#
284 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
285 #--------------------------------------------------------------------#
286
287 # Keep the script file name for Makefile dependencies.
288 PREV=${this_script}
289 done # for file in chapter0{7,8,9}/*
290}
291
292
293#----------------------------#
294build_Makefile() {
295#----------------------------#
296 echo "Creating Makefile... "
297 cd $JHALFSDIR/${PROGNAME}-commands
298
299 # Start with a clean Makefile.tmp file
300 >$MKFILE.tmp
301
302 chapter4_Makefiles
303 chapter5_Makefiles
304 chapter6_Makefiles
305 chapter789_Makefiles
306
307
308 # Add a header, some variables and include the function file
309 # to the top of the real Makefile.
310(
311 cat << EOF
312$HEADER
313
314SRC= /sources
315MOUNT_PT= $BUILDDIR
316
317include makefile-functions
318
319EOF
320) > $MKFILE
321
322
323 # Add chroot commands
324 i=1
325 for file in chapter06/*chroot* ; do
326 chroot=`cat $file | sed -e '/#!\/bin\/sh/d' -e 's@ \\\@ @g' | tr -d '\n' | sed \
327 -e 's/ */ /g' -e 's|\\$|&&|g' -e 's|exit||g' -e 's|$| -c|' \
328 -e 's|"$$LFS"|$(MOUNT_PT)|' -e 's|set -e||'`
329 echo -e "CHROOT$i= $chroot\n" >> $MKFILE
330 i=`expr $i + 1`
331 done
332
333 # Drop in the main target 'all:' and the chapter targets with each sub-target
334 # as a dependency.
335(
336 cat << EOF
337all: chapter4 chapter5 chapter6 chapter789
338 @\$(call echo_finished,$VERSION)
339
340chapter4: 020-creatingtoolsdir 021-addinguser 022-settingenvironment
341
342chapter5: chapter4 $chapter5 restore-lfs-env
343
344chapter6: chapter5 $chapter6
345
346chapter789: chapter6 $chapter789
347
348clean-all: clean
349 rm -rf ./{lfs-commands,logs,Makefile,*.xsl,makefile-functions,packages,patches}
350
351clean: clean-chapter789 clean-chapter6 clean-chapter5 clean-chapter4
352
353clean-chapter4:
354 -if [ ! -f user-lfs-exist ]; then \\
355 userdel lfs; \\
356 rm -rf /home/lfs; \\
357 fi;
358 rm -rf \$(MOUNT_PT)/tools
359 rm -f /tools
360 rm -f envars user-lfs-exist
361 rm -f 02* logs/02*.log
362
363clean-chapter5:
364 rm -rf \$(MOUNT_PT)/tools/*
365 rm -f $chapter5 restore-lfs-env sources-dir
366 cd logs && rm -f $chapter5 && cd ..
367
368clean-chapter6:
369 -umount \$(MOUNT_PT)/sys
370 -umount \$(MOUNT_PT)/proc
371 -umount \$(MOUNT_PT)/dev/shm
372 -umount \$(MOUNT_PT)/dev/pts
373 -umount \$(MOUNT_PT)/dev
374 rm -rf \$(MOUNT_PT)/{bin,boot,dev,etc,home,lib,media,mnt,opt,proc,root,sbin,srv,sys,tmp,usr,var}
375 rm -f $chapter6
376 cd logs && rm -f $chapter6 && cd ..
377
378clean-chapter789:
379 rm -f $chapter789
380 cd logs && rm -f $chapter789 && cd ..
381
382restore-lfs-env:
383 @\$(call echo_message, Building)
384 @if [ -f /home/lfs/.bashrc.XXX ]; then \\
385 mv -fv /home/lfs/.bashrc.XXX /home/lfs/.bashrc; \\
386 fi;
387 @if [ -f /home/lfs/.bash_profile.XXX ]; then \\
388 mv -v /home/lfs/.bash_profile.XXX /home/lfs/.bash_profile; \\
389 fi;
390 @chown lfs:lfs /home/lfs/.bash* && \\
391 touch \$@
392
393EOF
394) >> $MKFILE
395
396 # Bring over the items from the Makefile.tmp
397 cat $MKFILE.tmp >> $MKFILE
398 rm $MKFILE.tmp
399 echo "done"
400}
401
402
Note: See TracBrowser for help on using the repository browser.