source: LFS/master.sh@ 63190e6

ablfs-more trunk
Last change on this file since 63190e6 was 63190e6, checked in by Pierre Labastie <pierre.labastie@…>, 11 months ago

Only pass MAKEFLAGS and NINJAJOBS to old books

Also pass them to binutils-pass1 if calculating the SBU

  • Property mode set to 100644
File size: 17.0 KB
Line 
1#!/bin/bash
2
3###################################
4### FUNCTIONS ###
5###################################
6
7
8#############################################################
9
10
11#-------------------------#
12chapter_targets() { #
13#-------------------------#
14# $1 is the chapter number. Pad it with 0 to the left to obtain a 2-digit
15# number:
16 printf -v dir chapter%02d $1
17
18# $2 contains the build number if rebuilding for ICA
19 if [[ -z "$2" ]] ; then
20 local N=""
21 else
22 local N=-build_$2
23 local CHROOT_TGT=""
24 mkdir ${dir}$N
25 cp ${dir}/* ${dir}$N
26 for script in ${dir}$N/* ; do
27 # Overwrite existing symlinks, files, and dirs
28 sed -e 's/ln *-sv/&f/g' \
29 -e 's/mv *-v/&f/g' \
30 -e 's/mkdir *-v/&p/g' -i ${script}
31 # Rename the scripts
32 mv ${script} ${script}$N
33 done
34 # Remove Bzip2 binaries before make install (LFS-6.2 compatibility)
35 sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i ${dir}$N/*-bzip2$N
36 # Remove openssl-<version> from /usr/share/doc (LFS-9.x), because
37 # otherwise the mv command creates an openssl directory.
38 sed -e 's@mv -v@rm -rfv /usr/share/doc/openssl-*\n&@' \
39 -i ${dir}$N/*-openssl$N
40 fi
41
42 echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter $1$N${R_arrow}"
43
44 for file in ${dir}$N/* ; do
45 # Keep the script file name
46 this_script=`basename $file`
47
48 # Some scripts need peculiar actions:
49 # - Stripping at the end of system build: lfs.xsl does not generate
50 # correct commands if the user does not want to strip, so skip it
51 # in this case
52 # - do not reinstall linux-headers when rebuilding
53 # - grub config: must be done manually; skip it
54 # - handle fstab and .config. Skip kernel if .config not supplied
55 case "${this_script}" in
56 *stripping*) [[ "${STRIP}" = "n" ]] && continue ;;
57 *linux-headers*) [[ -n "$N" ]] && continue ;;
58 8*grub) (( nb_chaps == 5 )) && continue ;;
59 10*grub) continue ;;
60 *fstab) [[ -z "${FSTAB}" ]] ||
61 [[ ${FSTAB} == $BUILDDIR/sources/fstab ]] ||
62 cp ${FSTAB} $BUILDDIR/sources/fstab ;;
63 *kernel) [[ -z ${CONFIG} ]] && continue
64 [[ ${CONFIG} == $BUILDDIR/sources/kernel-config ]] ||
65 cp ${CONFIG} $BUILDDIR/sources/kernel-config ;;
66 esac
67 # Grab the name of the target
68 # This is only used to check the name in "opt_override" or "BLACKLIST"
69 name=`echo ${this_script} | sed -e 's@[0-9]\{3,4\}-@@' \
70 -e 's@-pass[0-9]\{1\}@@' \
71 -e 's@-libstdc++@@' \
72 -e 's,'$N',,' \
73 -e 's@-32@@'`
74
75 # Find the name of the tarball and the version of the package
76 # If it doesn't exist, we skip it in iterations rebuilds (except stripping
77 # and revisedchroot, where .a and .la files are removed).
78 pkg_tarball=$(sed -n 's/tar -xf \(.*\)/\1/p' $file)
79 pkg_version=$(sed -n 's/VERSION=\(.*\)/\1/p' $file)
80
81 if [[ "$pkg_tarball" = "" ]] && [[ -n "$N" ]] ; then
82 case "${this_script}" in
83 *stripping*|*cleanup*|*revised*) ;;
84 *) continue ;;
85 esac
86 fi
87
88 # Append the name of the script to a list. The name of the
89 # list is contained in the variable Makefile_target. We adjust this
90 # variable at various points. Note that it is initialized to "SETUP"
91 # in the main function, before calling this function for the first time.
92 case "${this_script}" in
93 *settingenvironment) Makefile_target=LUSER_TGT ;;
94 *changingowner ) Makefile_target=SUDO_TGT ;;
95 *creatingdirs ) Makefile_target=CHROOT_TGT ;;
96 *bootscripts ) Makefile_target=BOOT_TGT ;; # case of sysv book
97 *network ) Makefile_target=BOOT_TGT ;; # case of systemd book
98 esac
99 eval $Makefile_target=\"\$$Makefile_target ${this_script}\"
100
101 #--------------------------------------------------------------------#
102 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
103 #--------------------------------------------------------------------#
104
105 # Drop in the name of the target on a new line, and the previous target
106 # as a dependency. Also call the echo_message function.
107 case $Makefile_target in
108 CHROOT_TGT) CHROOT_wrt_target "${this_script}" "$PREV" "$pkg_version" ;;
109 *) LUSER_wrt_target "${this_script}" "$PREV" "$pkg_version" ;;
110 esac
111
112 # If $pkg_tarball isn't empty, we've got a package...
113 if [ "$pkg_tarball" != "" ] ; then
114 # Touch timestamp file if installed files logs shall be created.
115 # But only for the final install chapter and not when rebuilding it
116 if [ "${INSTALL_LOG}" = "y" ] &&
117 (( 1+nb_chaps <= $1 )) &&
118 [ "x$N" = x ] ; then
119 CHROOT_wrt_TouchTimestamp
120 fi
121 # Always initialize the test log file, since the test instructions may
122 # be "uncommented" by the user
123 case $Makefile_target in
124 CHROOT_TGT) CHROOT_wrt_test_log "${this_script}" "$pkg_version" ;;
125 LUSER_TGT ) LUSER_wrt_test_log "${this_script}" "$pkg_version" ;;
126 esac
127
128 # If using optimizations, write the instructions
129 case "${OPTIMIZE}$1${nb_chaps}${this_script}${REALSBU}" in
130 0* | *binutils-pass1y | 15* | 167* | 177*) ;;
131 *kernel*) ;; # No CFLAGS for kernel
132 *) wrt_optimize "$name" ;;
133 esac
134 # MAKEFLAGS is set even if no optimization now.
135 # For new books, the scripts contain the MAKEFLAGS, so no
136 # need to set them in the envars except if binutils-pass1
137 # and REALSBU=y. For Old books, N_PARALLEL and JH_MAKEFLAGS
138 # are set and we must set the envars.
139 case "${mkf_included}${this_script}${REALSBU}" in
140 *binutils-pass1y)
141 wrt_makeflags "$name" "-j1" "1" ;;
142 n*)
143 wrt_makeflags "$name" "$JH_MAKEFLAGS" "$N_PARALLEL" ;;
144 esac
145 fi
146
147# Some scriptlet have a special treatment; otherwise standard
148 case "${this_script}" in
149 *addinguser)
150(
151# /var/lib may already exist and be owned by root if blfs tools
152# have been installed.
153cat << EOF
154 @if [ -f luser-id ]; then \\
155 function useradd() { true; }; \\
156 function groupadd() { true; }; \\
157 export -f useradd groupadd; \\
158 fi; \\
159 export LFS=\$(MOUNT_PT) && \\
160 \$(CMDSDIR)/`dirname $file`/\$@ >> \$(LOGDIR)/\$@ 2>&1; \\
161 \$(PRT_DU) >>logs/\$@
162 @chown \$(LUSER):\$(LGROUP) envars
163 @if [ -d "\$(MOUNT_PT)/var/lib" ]; then \\
164 chown \$(LUSER):\$(LGROUP) \$(MOUNT_PT)/var/lib; \\
165 fi
166 @chmod -R a+wt $JHALFSDIR
167 @chmod a+wt \$(SRCSDIR)
168EOF
169) >> $MKFILE.tmp
170 ;;
171 *settingenvironment)
172(
173cat << EOF
174 @cd && \\
175 function source() { true; } && \\
176 export -f source && \\
177 \$(CMDSDIR)/`dirname $file`/\$@ >> \$(LOGDIR)/\$@ 2>&1 && \\
178 sed 's|/mnt/lfs|\$(MOUNT_PT)|' -i .bashrc && \\
179 echo source $JHALFSDIR/envars >> .bashrc
180 @\$(PRT_DU) >>logs/\$@
181EOF
182) >> $MKFILE.tmp
183 ;;
184 *fstab) if [[ -n "$FSTAB" ]]; then
185 CHROOT_wrt_CopyFstab
186 else
187 CHROOT_wrt_RunAsRoot "$file"
188 fi
189 ;;
190
191 *)
192 # Insert date and disk usage at the top of the log file, the script
193 # run and date and disk usage again at the bottom of the log file.
194 case "${Makefile_target}" in
195 SETUP_TGT | SUDO_TGT) wrt_RunAsRoot "$file" "$pkg_version" ;;
196 LUSER_TGT) LUSER_wrt_RunAsUser "$file" "$pkg_version" ;;
197 CHROOT_TGT | BOOT_TGT) CHROOT_wrt_RunAsRoot "$file" "$pkg_version" ;;
198 esac
199 ;;
200 esac
201
202 # Write installed files log and remove the build directory(ies)
203 # except if the package build fails.
204 if [ "$pkg_tarball" != "" ] ; then
205 if [ "${INSTALL_LOG}" = "y" ] &&
206 (( 1+nb_chaps <= $1 )) &&
207 [ "x${N}" = "x" ] ; then
208 CHROOT_wrt_LogNewFiles "${this_script}"
209 fi
210 fi
211
212 # Include a touch of the target name so make can check
213 # if it's already been made.
214 wrt_touch
215 #
216 #--------------------------------------------------------------------#
217 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
218 #--------------------------------------------------------------------#
219
220 # Keep the script file name for Makefile dependencies.
221 PREV=${this_script}
222 # Set "system_build" var for iteration targets
223 if [ -z "$N" ] && (( 1+nb_chaps == $1 )); then
224 system_build="$system_build $this_script"
225 fi
226
227 done # end for file in $dir/*
228 # Set "system_build" when rebuilding: note the CHROOT_TGT is local
229 # in that case.
230 if [ -n "$N" ]; then
231 system_build="$CHROOT_TGT"
232 fi
233}
234
235#----------------------------#
236build_Makefile() { #
237#----------------------------#
238
239 echo "Creating Makefile... ${BOLD}START${OFF}"
240
241 cd "$JHALFSDIR/$COMMANDS"
242
243 # Start with empty files
244 >$MKFILE
245 >$MKFILE.tmp
246
247 # Ensure the first dependency is empty
248 unset PREV
249
250 # We begin with the SETUP target; successive targets will be assigned in
251 # the chapter_targets function.
252 Makefile_target=SETUP_TGT
253
254 # We need to know the chapter numbering, which depends on the version
255 # of the book. Use the number of subdirs to know which version we have
256 chaps=($(echo chapter*))
257 nb_chaps=${#chaps[*]} # 5 if classical version, 7 if new version
258# DEBUG
259# echo chaps: ${chaps[*]}
260# echo nb_chaps: $nb_chaps
261# end DEBUG
262
263 # We need to know if we have an old or a new book (with included MAKEFLAGS)
264 # we grep for MAKEFLAGS in chapter04 to find out.
265 if grep -q MAKEFLAGS chapter04/*; then
266 mkf_included=y
267 else
268 mkf_included=n
269 fi
270
271 # Make a temporary file with all script targets
272 for (( i = 4; i < nb_chaps+4; i++ )); do
273 chapter_targets $i
274 if (( i == nb_chaps )); then : # we have finished temporary tools
275 # Add the save target, if needed
276 [[ "$SAVE_CH5" = "y" ]] && wrt_save_target $Makefile_target
277 fi
278 if (( i == 1+nb_chaps )); then : # we have finished final system
279 # Add the iterations targets, if needed
280 [[ "$COMPARE" = "y" ]] && wrt_compare_targets $i
281 fi
282 done
283 # Add the CUSTOM_TOOLS targets, if needed
284 [[ "$CUSTOM_TOOLS" = "y" ]] && wrt_CustomTools_target
285
286 # Add a header, some variables and include the function file
287 # to the top of the real Makefile.
288 wrt_Makefile_header
289
290 # Add chroot commands
291 CHROOT_LOC="`whereis -b chroot | cut -d " " -f2`"
292 i=1
293 for file in ../chroot-scripts/*chroot* ; do
294 chroot=`cat $file | \
295 perl -pe 's|\\\\\n||g' | \
296 tr -s [:space:] | \
297 grep chroot | \
298 sed -e "s|chroot|$CHROOT_LOC|" \
299 -e 's|\\$|&&|g' \
300 -e 's|"$$LFS"|$(MOUNT_PT)|'`
301 echo -e "CHROOT$i= $chroot\n" >> $MKFILE
302 i=`expr $i + 1`
303 done
304
305 # Drop in the main target 'all:' and the chapter targets with each sub-target
306 # as a dependency. Also prevent running targets in parallel.
307(
308 cat << EOF
309
310.NOTPARALLEL:
311
312all: ck_UID ck_terminal mk_SETUP mk_LUSER mk_SUDO mk_CHROOT mk_BOOT create-sbu_du-report mk_BLFS_TOOL mk_CUSTOM_TOOLS
313 @sudo env LFS=\$(MOUNT_PT) kernfs-scripts/teardown.sh
314EOF
315) >> $MKFILE
316# With systemd, the commands in chapter 9 do not create a
317# valid /etc/resolv.conf, so that if blfs_tools are installed, and
318# make-ca is run, it cannot connect. In this case, resolv.conf
319# from the host has been copied, and we need to remove it now.
320if [ "$INITSYS" = systemd ]; then
321(
322 cat << EOF
323 @sudo rm -v \$(MOUNT_PT)/etc/resolv.conf
324EOF
325) >> $MKFILE
326fi
327(
328 cat << EOF
329 @sudo make do_housekeeping
330 @echo $VERSION > lfs-release && \\
331 sudo mv lfs-release \$(MOUNT_PT)/etc && \\
332 sudo chown root:root \$(MOUNT_PT)/etc/lfs-release
333 @/bin/echo -e -n \\
334 DISTRIB_ID=\\"Linux From Scratch\\"\\\\n\\
335 DISTRIB_RELEASE=\\"$VERSION\\"\\\\n\\
336 DISTRIB_CODENAME=\\"$(whoami)-jhalfs\\"\\\\n\\
337 DISTRIB_DESCRIPTION=\\"Linux From Scratch\\"\\\\n\\
338 > lsb-release && \\
339 sudo mv lsb-release \$(MOUNT_PT)/etc && \\
340 sudo chown root:root \$(MOUNT_PT)/etc/lsb-release
341 @/bin/echo -e -n \\
342 NAME=\\"Linux From Scratch\\"\\\\n\\
343 VERSION=\\"$VERSION\\"\\\\n\\
344 ID=lfs\\\\n\\
345 PRETTY_NAME=\\"Linux From Scratch $VERSION\\"\\\\n\\
346 VERSION_CODENAME=\\"$(whoami)-jhalfs\\"\\\\n\\
347 > os-release && \\
348 sudo mv os-release \$(MOUNT_PT)/etc && \\
349 sudo chown root:root \$(MOUNT_PT)/etc/os-release
350 @\$(call echo_finished,$VERSION)
351
352ck_UID:
353 @if [ \`id -u\` = "0" ]; then \\
354 echo "--------------------------------------------------"; \\
355 echo "You cannot run this makefile from the root account"; \\
356 echo "--------------------------------------------------"; \\
357 exit 1; \\
358 fi
359
360ck_terminal:
361 @stty size | ( read L C; \\
362 if (( L < 24 )) || (( C < 80 )) ; then \\
363 echo "--------------------------------------------------"; \\
364 echo "Terminal too small: \$\$C columns x \$\$L lines";\\
365 echo "Minimum: 80 columns x 24 lines";\\
366 echo "--------------------------------------------------"; \\
367 exit 1; \\
368 fi )
369
370mk_SETUP:
371 @\$(call echo_SU_request)
372 @sudo make save-luser
373 @sudo make BREAKPOINT=\$(BREAKPOINT) SETUP
374 @touch \$@
375
376mk_LUSER: mk_SETUP
377 @\$(call echo_SULUSER_request)
378 @\$(SU_LUSER) "make -C \$(MOUNT_PT)/\$(SCRIPT_ROOT) BREAKPOINT=\$(BREAKPOINT) LUSER"
379 @sudo make restore-luser
380 @touch \$@
381
382mk_SUDO: mk_LUSER
383 @sudo rm -f envars
384 @sudo make BREAKPOINT=\$(BREAKPOINT) SUDO
385 @touch \$@
386
387mk_CHROOT: mk_SUDO devices
388 @\$(call echo_CHROOT_request)
389 @( sudo \$(CHROOT1) -c "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) CHROOT")
390 @touch \$@
391
392mk_BOOT: mk_CHROOT devices
393 @\$(call echo_CHROOT_request)
394 @( sudo \$(CHROOT1) -c "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) BOOT")
395 @touch \$@
396
397mk_BLFS_TOOL: create-sbu_du-report devices
398 @if [ "\$(ADD_BLFS_TOOLS)" = "y" ]; then \\
399 \$(call sh_echo_PHASE,Building BLFS_TOOL); \\
400 (sudo \$(CHROOT1) -c "make -C $BLFS_ROOT/work"); \\
401 fi;
402 @touch \$@
403
404mk_CUSTOM_TOOLS: mk_BLFS_TOOL devices
405 @if [ "\$(ADD_CUSTOM_TOOLS)" = "y" ]; then \\
406 \$(call sh_echo_PHASE,Building CUSTOM_TOOLS); \\
407 sudo mkdir -p ${BUILDDIR}${TRACKING_DIR}; \\
408 (sudo \$(CHROOT1) -c "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) CUSTOM_TOOLS"); \\
409 fi;
410 @touch \$@
411
412devices: ck_UID
413 sudo env LFS=\$(MOUNT_PT) kernfs-scripts/devices.sh
414EOF
415) >> $MKFILE
416# With systemd, the commands in chapter 9 do not create a
417# valid /etc/resolv.conf, so that if we want to enter chroot,
418# and systemd has not yet been run (otherwise /etc/resolv.conf
419# exists), we just copy resolv.conf from the host.
420if [ "$INITSYS" = systemd ]; then
421(
422 cat << EOF
423 if ! [ -e \$(MOUNT_PT)/etc/resolv.conf ]; then \\
424 sudo cp -v /etc/resolv.conf \$(MOUNT_PT)/etc; \\
425 sudo touch \$(MOUNT_PT)/etc/.host-resolvconf; \\
426 fi
427EOF
428) >> $MKFILE
429fi
430(
431 cat << EOF
432
433teardown:
434 sudo env LFS=\$(MOUNT_PT) kernfs-scripts/teardown.sh
435EOF
436) >> $MKFILE
437# With systemd, the commands in chapter 9 do not create a
438# valid /etc/resolv.conf, so that if we want to enter chroot,
439# and systemd has not yet been run (otherwise /etc/resolv.conf
440# exists), we just copy resolv.conf from the host.
441# We need to remove it now, if it has been created.
442if [ "$INITSYS" = systemd ]; then
443(
444 cat << EOF
445 if [ -e \$(MOUNT_PT)/etc/.host-resolvconf ]; then \\
446 sudo rm -v \$(MOUNT_PT)/etc/resolv.conf; \\
447 sudo rm -v \$(MOUNT_PT)/etc/.host-resolvconf; \\
448 fi
449EOF
450) >> $MKFILE
451fi
452(
453 cat << EOF
454
455chroot1: devices
456 -sudo \$(CHROOT1)
457 \$(MAKE) teardown
458
459chroot: devices
460 -sudo \$(CHROOT1)
461 \$(MAKE) teardown
462
463SETUP: $SETUP_TGT
464LUSER: $LUSER_TGT
465SUDO: $SUDO_TGT
466EOF
467) >> $MKFILE
468# With systemd, the commands in chapter 9 do not create a
469# valid /etc/resolv.conf, so that if blfs_tools are installed, and
470# make-ca is run, it cannot connect. We just copy resolv.conf
471# from the host. We'll remove it at the end.
472if [ "$INITSYS" = systemd ]; then
473(
474 cat << EOF
475 @cp -v /etc/resolv.conf \$(MOUNT_PT)/etc
476
477EOF
478) >> $MKFILE
479fi
480(
481 cat << EOF
482CHROOT: SHELL=\$(filter %bash,\$(CHROOT1))
483CHROOT: $CHROOT_TGT
484BOOT: $BOOT_TGT
485CUSTOM_TOOLS: $custom_list
486
487create-sbu_du-report: mk_BOOT
488 @\$(call echo_message, Building)
489 @if [ "\$(ADD_REPORT)" = "y" ]; then \\
490 sudo ./create-sbu_du-report.sh logs $VERSION $(date --iso-8601); \\
491 \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
492 fi
493 @touch \$@
494
495save-luser:
496 @\$(call echo_message, Building)
497 @LUSER_ID=\$\$(grep '^\$(LUSER):' /etc/passwd | cut -d: -f3); \\
498 if [ -n "\$\$LUSER_ID" ]; then \\
499 if [ ! -d \$(LUSER_HOME).XXX ]; then \\
500 mv \$(LUSER_HOME){,.XXX}; \\
501 mkdir \$(LUSER_HOME); \\
502 chown \$(LUSER):\$(LGROUP) \$(LUSER_HOME); \\
503 fi; \\
504 echo "\$\$LUSER_ID" > luser-id; \\
505 echo User \$(LUSER) exists with ID \$\$LUSER_ID; \\
506 else \\
507 rm -f luser-id; \\
508 echo User \$(LUSER) does not exist; \\
509 echo It will be created with book instructions.; \\
510 fi
511 @\$(call housekeeping)
512
513restore-luser:
514 @\$(call echo_message, Building)
515 @if [ -f luser-id ]; then \\
516 rm -rf \$(LUSER_HOME); \\
517 mv \$(LUSER_HOME){.XXX,}; \\
518 rm luser-id; \\
519 else \\
520 userdel \$(LUSER); \\
521 groupdel \$(LGROUP); \\
522 rm -rf \$(LUSER_HOME); \\
523 fi
524 @\$(call housekeeping)
525
526do_housekeeping:
527 @-rm -f /tools
528
529EOF
530) >> $MKFILE
531
532 # Bring over the items from the Makefile.tmp
533 cat $MKFILE.tmp >> $MKFILE
534 rm $MKFILE.tmp
535 echo "Creating Makefile... ${BOLD}DONE${OFF}"
536}
Note: See TracBrowser for help on using the repository browser.