source: CLFS/master.sh@ 7e5ea15

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

More compare and related fixes.
Test build in progress.

  • Property mode set to 100644
File size: 33.6 KB
Line 
1#!/bin/bash
2# $Id$
3
4
5orphan_scripts="" # 2 scripts do not fit BOOT_Makefiles LUSER environment
6
7
8#--------------------------------------#
9host_prep_Makefiles() { #
10#--------------------------------------#
11 local CLFS_HOST
12
13 echo "${tab_}${GREEN}Processing... ${L_arrow}host prep files ( SETUP ) ${R_arrow}"
14
15 # defined here, only for ease of reading
16 CLFS_HOST="$(echo $MACHTYPE | sed "s/$(echo $MACHTYPE | cut -d- -f2)/cross/")"
17(
18cat << EOF
19023-creatingtoolsdir:
20 @\$(call echo_message, Building)
21 @mkdir \$(MOUNT_PT)/tools && \\
22 rm -f /tools && \\
23 ln -s \$(MOUNT_PT)/tools /
24 @if [ ! -d \$(MOUNT_PT)/sources ]; then \\
25 mkdir \$(MOUNT_PT)/sources; \\
26 fi;
27 @chmod a+wt \$(MOUNT_PT)/sources && \\
28 touch \$@ && \\
29 echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
30 echo --------------------------------------------------------------------------------\$(WHITE)
31
32024-creatingcrossdir: 023-creatingtoolsdir
33 @mkdir -v \$(MOUNT_PT)/cross-tools && \\
34 rm -f /cross-tools && \\
35 ln -s \$(MOUNT_PT)/cross-tools /
36 @touch \$@ && \\
37 echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
38 echo --------------------------------------------------------------------------------\$(WHITE)
39
40025-addinguser: 024-creatingcrossdir
41 @\$(call echo_message, Building)
42 @if [ ! -d /home/\$(LUSER) ]; then \\
43 groupadd \$(LGROUP); \\
44 useradd -s /bin/bash -g \$(LGROUP) -m -k /dev/null \$(LUSER); \\
45 else \\
46 touch luser-exist; \\
47 fi;
48 @chown \$(LUSER) \$(MOUNT_PT) && \\
49 chown \$(LUSER) \$(MOUNT_PT)/tools && \\
50 chown \$(LUSER) \$(MOUNT_PT)/cross-tools && \\
51 chown \$(LUSER) \$(MOUNT_PT)/sources && \\
52 touch \$@ && \\
53 echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
54 echo --------------------------------------------------------------------------------\$(WHITE)
55
56026-settingenvironment: 025-addinguser
57 @\$(call echo_message, Building)
58 @if [ -f /home/\$(LUSER)/.bashrc -a ! -f /home/\$(LUSER)/.bashrc.XXX ]; then \\
59 mv /home/\$(LUSER)/.bashrc /home/\$(LUSER)/.bashrc.XXX; \\
60 fi;
61 @if [ -f /home/\$(LUSER)/.bash_profile -a ! -f /home/\$(LUSER)/.bash_profile.XXX ]; then \\
62 mv /home/\$(LUSER)/.bash_profile /home/\$(LUSER)/.bash_profile.XXX; \\
63 fi;
64 @echo "set +h" > /home/\$(LUSER)/.bashrc && \\
65 echo "umask 022" >> /home/\$(LUSER)/.bashrc && \\
66 echo "CLFS=\$(MOUNT_PT)" >> /home/\$(LUSER)/.bashrc && \\
67 echo "LC_ALL=POSIX" >> /home/\$(LUSER)/.bashrc && \\
68 echo "PATH=/cross-tools/bin:/bin:/usr/bin" >> /home/\$(LUSER)/.bashrc && \\
69 echo "export CLFS LC_ALL PATH" >> /home/\$(LUSER)/.bashrc && \\
70 echo "" >> /home/\$(LUSER)/.bashrc && \\
71 echo "unset CFLAGS" >> /home/\$(LUSER)/.bashrc && \\
72 echo "unset CXXFLAGS" >> /home/\$(LUSER)/.bashrc && \\
73 echo "" >> /home/\$(LUSER)/.bashrc && \\
74 echo "export CLFS_HOST=\"${CLFS_HOST}\"" >> /home/\$(LUSER)/.bashrc && \\
75 echo "export CLFS_TARGET=\"${TARGET}\"" >> /home/\$(LUSER)/.bashrc && \\
76 echo "export CLFS_TARGET32=\"${TARGET32}\"" >> /home/\$(LUSER)/.bashrc && \\
77 echo "source $JHALFSDIR/envars" >> /home/\$(LUSER)/.bashrc
78 @chown \$(LUSER):\$(LGROUP) /home/\$(LUSER)/.bashrc && \\
79 touch envars && \\
80 chmod -R a+wt \$(MOUNT_PT) && \\
81 chown -R \$(LUSER) \$(MOUNT_PT)/\$(SCRIPT_ROOT) && \\
82 touch \$@ && \\
83 echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
84 echo --------------------------------------------------------------------------------\$(WHITE)
85EOF
86) >> $MKFILE.tmp
87 host_prep=" 023-creatingtoolsdir 024-creatingcrossdir 026-settingenvironment"
88
89}
90
91#--------------------------------------#
92cross_tools_Makefiles() { #
93#--------------------------------------#
94 echo "${tab_}${GREEN}Processing... ${L_arrow}cross tools ( LUSER ) ${R_arrow}"
95
96 for file in cross-tools/* ; do
97 # Keep the script file name
98 this_script=`basename $file`
99 #
100 # Skip this script...
101 case $this_script in
102 *cflags* | *variables* ) # work done in host_prep_Makefiles
103 continue; ;;
104 *) ;;
105 esac
106 #
107 # Set the dependency for the first target.
108 if [ -z $PREV ] ; then PREV=026-settingenvironment ; fi
109
110 # First append each name of the script files to a list (this will become
111 # the names of the targets in the Makefile
112 cross_tools="$cross_tools $this_script"
113
114 # Grab the name of the target (minus the -headers or -cross in the case of gcc
115 # and binutils in chapter 5)
116 name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' \
117 -e 's@-static@@' \
118 -e 's@-final@@' \
119 -e 's@-64@@' \
120 -e 's@-n32@@'`
121 pkg_tarball=$(get_package_tarball_name $name)
122
123 #--------------------------------------------------------------------#
124 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
125 #--------------------------------------------------------------------#
126 #
127 # Drop in the name of the target on a new line, and the previous target
128 # as a dependency. Also call the echo_message function.
129 LUSER_wrt_target "${this_script}" "$PREV"
130 #
131 # If $pkg_tarball isn't empty, we've got a package...
132 #
133 [[ "$pkg_tarball" != "" ]] && LUSER_wrt_unpack "$pkg_tarball"
134 #
135 LUSER_wrt_RunAsUser "${file}"
136 #
137 [[ "$pkg_tarball" != "" ]] && LUSER_RemoveBuildDirs "${name}"
138 #
139 # Include a touch of the target name so make can check if it's already been made.
140 wrt_touch
141 #
142 #--------------------------------------------------------------------#
143 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
144 #--------------------------------------------------------------------#
145 #
146 # Keep the script file name for Makefile dependencies.
147 PREV=$this_script
148
149 done # for file in ....
150}
151
152#--------------------------------------#
153temptools_Makefiles() { #
154#--------------------------------------#
155 echo "${tab_}${GREEN}Processing... ${L_arrow}temp system ( LUSER ) ${R_arrow}"
156
157 for file in temp-system/* ; do
158 # Keep the script file name
159 this_script=`basename $file`
160 #
161 # Deal with any odd scripts..
162 case $this_script in
163 *choose) # The choose script will fail if you cannot enter the new environment
164 # If the 'boot' build method was chosen don't run the script
165 [[ $METHOD = "boot" ]] && continue; ;;
166 *) ;;
167 esac
168
169 #
170 # First append each name of the script files to a list (this will become
171 # the names of the targets in the Makefile
172 temptools="$temptools $this_script"
173
174 #
175 # Grab the name of the target, strip id number, XXX-script
176 name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'`
177 #
178 pkg_tarball=$(get_package_tarball_name $name)
179
180 #--------------------------------------------------------------------#
181 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
182 #--------------------------------------------------------------------#
183 #
184 # Drop in the name of the target on a new line, and the previous target
185 # as a dependency. Also call the echo_message function.
186 LUSER_wrt_target "${this_script}" "$PREV"
187 #
188 # If $pkg_tarball isn't empty, we've got a package...
189 # Insert instructions for unpacking the package and to set the PKGDIR variable.
190 #
191 [[ "$pkg_tarball" != "" ]] && LUSER_wrt_unpack "$pkg_tarball"
192 [[ "$pkg_tarball" != "" ]] && [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
193 #
194 LUSER_wrt_RunAsUser "${file}"
195 #
196 [[ "$pkg_tarball" != "" ]] && LUSER_RemoveBuildDirs "${name}"
197 #
198 # Include a touch of the target name so make can check if it's already been made.
199 wrt_touch
200 #
201 #--------------------------------------------------------------------#
202 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
203 #--------------------------------------------------------------------#
204 #
205 # Keep the script file name for Makefile dependencies.
206 PREV=$this_script
207 done # for file in ....
208}
209
210
211#--------------------------------------#
212chroot_Makefiles() { #
213#--------------------------------------#
214 echo "${tab_}${GREEN}Processing... ${L_arrow}tmptools CHROOT ( CHROOT ) ${R_arrow}"
215
216 for file in chroot/* ; do
217 # Keep the script file name
218 this_script=`basename $file`
219 #
220 # Skipping scripts is done now and not included in the build tree.
221 case $this_script in
222 *chroot*) continue ;;
223 esac
224
225 #
226 # First append each name of the script files to a list (this will become
227 # the names of the targets in the Makefile
228 case "${this_script}" in
229 *util-linux) orphan_scripts="${orphan_scripts} ${this_script}" ;;
230 *kernfs) orphan_scripts="${orphan_scripts} ${this_script}" ;;
231 *) chroottools="$chroottools $this_script" ;;
232 esac
233
234 # Grab the name of the target, strip id number, XXX-script
235 name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'`
236
237 pkg_tarball=$(get_package_tarball_name $name)
238
239 # This is very ugly:: util-linux is in /chroot but must be run under LUSER
240 # .. Customized makefile entry
241 case "${this_script}" in
242 *util-linux)
243 LUSER_wrt_target "${this_script}" "$PREV"
244 LUSER_wrt_unpack "$pkg_tarball"
245 [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
246 LUSER_wrt_RunAsUser "${file}"
247 LUSER_RemoveBuildDirs "${name}"
248 wrt_touch
249 temptools="$temptools $this_script"
250 continue ;;
251 esac
252
253
254 #--------------------------------------------------------------------#
255 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
256 #--------------------------------------------------------------------#
257 #
258 # Drop in the name of the target on a new line, and the previous target
259 # as a dependency. Also call the echo_message function.
260 CHROOT_wrt_target "${this_script}" "$PREV"
261 #
262 # If $pkg_tarball isn't empty, we've got a package...
263 # Insert instructions for unpacking the package and changing directories
264 #
265 if [ "$pkg_tarball" != "" ] ; then
266 CHROOT_Unpack "$pkg_tarball"
267 [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
268 fi
269 #
270 # Select a script execution method
271 case $this_script in
272 *kernfs) wrt_RunAsRoot "${file}" ;;
273 *) CHROOT_wrt_RunAsRoot "${file}" ;;
274 esac
275 #
276 # Housekeeping...remove the build directory(ies), except if the package build fails.
277 [[ "$pkg_tarball" != "" ]] && CHROOT_wrt_RemoveBuildDirs "${name}"
278 #
279 # Include a touch of the target name so make can check if it's already been made.
280 wrt_touch
281 #
282 #--------------------------------------------------------------------#
283 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
284 #--------------------------------------------------------------------#
285 #
286 # Keep the script file name for Makefile dependencies.
287 PREV=$this_script
288
289 done # for file in...
290}
291
292
293#--------------------------------------#
294boot_Makefiles() { #
295#--------------------------------------#
296
297 echo "${tab_}${GREEN}Processing... ${L_arrow}tmptools BOOT ( LUSER ) ${R_arrow}"
298 #
299 # Create a target bootable partition containing a compile environment. Later
300 # on we boot into this environment and contine the build.
301 #
302 for file in boot/* ; do
303 # Keep the script file name
304 this_script=`basename $file`
305
306 # A little housekeeping on the scripts
307 case $this_script in
308 *grub | *aboot | *colo | *silo | *arcload | *lilo ) continue ;;
309 *whatnext*) continue ;;
310 *fstab) [[ ! -z ${FSTAB} ]] && cp ${FSTAB} $BUILDDIR/sources/fstab ;;
311 *kernel) # if there is no kernel config file do not build the kernel
312 [[ -z $CONFIG ]] && continue
313 # Copy the config file to /sources with a standardized name
314 cp $BOOT_CONFIG $BUILDDIR/sources/bootkernel-config
315 ;;
316 esac
317 #
318 # First append each name of the script files to a list (this will become
319 # the names of the targets in the Makefile
320 case "${this_script}" in
321 *changingowner) orphan_scripts="${orphan_scripts} ${this_script}" ;;
322 *devices) orphan_scripts="${orphan_scripts} ${this_script}" ;;
323 *) boottools="$boottools $this_script" ;;
324 esac
325 #
326 # Grab the name of the target, strip id number and misc words.
327 case $this_script in
328 *kernel) name=linux ;;
329 *bootscripts) name="bootscripts-cross-lfs" ;;
330 *udev-rules) name="udev-cross-lfs" ;;
331 *grub-build) name=grub ;;
332 *-aboot-build) name=aboot ;;
333 *yaboot-build) name=yaboot ;;
334 *colo-build) name=colo ;;
335 *silo-build) name=silo ;;
336 *arcload-build) name=arcload ;;
337 *lilo-build) name=lilo ;;
338 *) name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' -e 's@-build@@' ` ;;
339 esac
340 # Identify the unique version naming scheme for the clfs bootscripts..(bad boys)
341 pkg_tarball=$(get_package_tarball_name $name)
342
343 #--------------------------------------------------------------------#
344 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
345 #--------------------------------------------------------------------#
346 #
347 # Drop in the name of the target on a new line, and the previous target
348 # as a dependency. Also call the echo_message function.
349 LUSER_wrt_target "${this_script}" "$PREV"
350 #
351 # If $pkg_tarball isn't empty, we've got a package...
352 # Insert instructions for unpacking the package and changing directories
353 #
354 [[ "$pkg_tarball" != "" ]] && LUSER_wrt_unpack "$pkg_tarball"
355 [[ "$pkg_tarball" != "" ]] && [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
356 #
357 # Select a script execution method
358 case $this_script in
359 # The following 2 scripts are defined in the /boot directory but need
360 # to be run as a root user. Set them up here but run them in another phase
361 *changingowner*) wrt_RunAsRoot "${file}" ;;
362 *devices*) wrt_RunAsRoot "${file}" ;;
363 *fstab*) if [[ -n "$FSTAB" ]]; then
364 LUSER_wrt_CopyFstab
365 else
366 LUSER_wrt_RunAsUser "${file}"
367 fi
368 ;;
369 *) LUSER_wrt_RunAsUser "${file}" ;;
370 esac
371 #
372 # Housekeeping...remove any build directory(ies) except if the package build fails.
373 [[ "$pkg_tarball" != "" ]] && LUSER_RemoveBuildDirs "${name}"
374 #
375 # Include a touch of the target name so make can check if it's already been made.
376 wrt_touch
377 #
378 #--------------------------------------------------------------------#
379 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
380 #--------------------------------------------------------------------#
381 #
382 # Keep the script file name for Makefile dependencies.
383 PREV=$this_script
384
385 done
386}
387
388
389#--------------------------------------#
390testsuite_tools_Makefiles() { #
391#--------------------------------------#
392
393 if [[ "${METHOD}" = "chroot" ]]; then
394 echo "${tab_}${GREEN}Processing... ${L_arrow}(chroot) testsuite tools ( CHROOT ) ${R_arrow}"
395 else
396 echo "${tab_}${GREEN}Processing... ${L_arrow}(boot) testsuite tools ( ROOT ) ${R_arrow}"
397 PREV=""
398 fi
399
400 for file in testsuite-tools/* ; do
401 # Keep the script file name
402 this_script=`basename $file`
403
404 # First append each name of the script files to a list (this will become
405 # the names of the targets in the Makefile
406 testsuitetools="$testsuitetools $this_script"
407
408 # Grab the name of the target, strip id number, XXX-script
409 name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'\
410 -e 's@-64bit@@' \
411 -e 's@-64@@' \
412 -e 's@64@@' \
413 -e 's@n32@@'`
414
415 pkg_tarball=$(get_package_tarball_name $name)
416
417 #--------------------------------------------------------------------#
418 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
419 #--------------------------------------------------------------------#
420 #
421 # Drop in the name of the target on a new line, and the previous target
422 # as a dependency. Also call the echo_message function.
423 CHROOT_wrt_target "${this_script}" "$PREV"
424 #
425 CHROOT_Unpack "$pkg_tarball"
426 [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
427 #
428 CHROOT_wrt_RunAsRoot "${file}"
429 #
430 CHROOT_wrt_RemoveBuildDirs "${name}"
431 #
432 # Include a touch of the target name so make can check if it's already been made.
433 wrt_touch
434 #
435 #--------------------------------------------------------------------#
436 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
437 #--------------------------------------------------------------------#
438 #
439 # Keep the script file name for Makefile dependencies.
440 PREV=$this_script
441
442 done
443}
444
445
446#--------------------------------------#
447final_system_Makefiles() { #
448#--------------------------------------#
449 # Set envars and scripts for iteration targets
450 if [[ -z "$1" ]] ; then
451 local N=""
452 # In boot method the makesys phase was initiated in testsuite_tools_makefile
453 [[ "${METHOD}" = "boot" ]] && [[ "$TEST" = 0 ]] && PREV=""
454 else
455 local N=-build_$1
456 local basicsystem=""
457 mkdir final-system$N
458 cp final-system/* final-system$N
459 for script in final-system$N/* ; do
460 # Overwrite existing symlinks, files, and dirs
461 sed -e 's/ln -sv/&f/g' \
462 -e 's/mv -v/&f/g' \
463 -e 's/mkdir -v/&p/g' -i ${script}
464 # Rename the scripts
465 mv ${script} ${script}$N
466 done
467 # Remove Bzip2 binaries before make install
468 sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i final-system$N/*-bzip2$N
469 # Delete *old Readline libraries just after make install
470 sed -e 's@make install@&\nrm -v /lib/lib{history,readline}*old@' -i final-system$N/*-readline$N
471 fi
472
473 if [[ "${METHOD}" = "chroot" ]]; then
474 echo "${tab_}${GREEN}Processing... ${L_arrow}(chroot) final system$N ( CHROOT ) ${R_arrow}"
475 else
476 echo "${tab_}${GREEN}Processing... ${L_arrow}(boot) final system$N ( ROOT ) ${R_arrow}"
477 fi
478
479 for file in final-system$N/* ; do
480 # Keep the script file name
481 this_script=`basename $file`
482
483 # Test if the stripping phase must be skipped.
484 # Skip alsp temp-perl for iterative runs
485 case $this_script in
486 *stripping*) [[ "$STRIP" = "n" ]] && continue ;;
487 *temp-perl*) [[ -n "$N" ]] && continue ;;
488 esac
489
490 # Grab the name of the target, strip id number, XXX-script
491 name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' \
492 -e 's@temp-@@' \
493 -e 's@-64bit@@' \
494 -e 's@-64@@' \
495 -e 's@64@@' \
496 -e 's@n32@@' \
497 -e 's,'$N',,'`
498
499 # Find the version of the command files, if it corresponds with the building of
500 # a specific package. We need this here to can skip scripts not needed for
501 # iterations rebuilds
502 pkg_tarball=$(get_package_tarball_name $name)
503
504 if [[ "$pkg_tarball" = "" ]] && [[ -n "$N" ]] ; then
505 case "${this_script}" in
506 *stripping*) ;;
507 *) continue ;;
508 esac
509 fi
510
511 # Append each name of the script files to a list (this will become
512 # the names of the targets in the Makefile
513 basicsystem="$basicsystem ${this_script}"
514
515 #--------------------------------------------------------------------#
516 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
517 #--------------------------------------------------------------------#
518 #
519 # Drop in the name of the target on a new line, and the previous target
520 # as a dependency. Also call the echo_message function.
521 CHROOT_wrt_target "${this_script}" "$PREV"
522
523 # If $pkg_tarball isn't empty, we've got a package...
524 if [ "$pkg_tarball" != "" ] ; then
525 CHROOT_Unpack "$pkg_tarball"
526 # If the testsuites must be run, initialize the log file
527 case $name in
528 binutils | gcc | glibc )
529 [[ "$TEST" != "0" ]] && CHROOT_wrt_test_log "${this_script}"
530 ;;
531 * )
532 [[ "$TEST" = "2" ]] || [[ "$TEST" = "3" ]] && CHROOT_wrt_test_log "${this_script}"
533 ;;
534 esac
535 # If using optimizations, write the instructions
536 [[ "$OPTIMIZE" != "0" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
537 fi
538 #
539 CHROOT_wrt_RunAsRoot "${file}"
540 #
541 [[ "$pkg_tarball" != "" ]] && CHROOT_wrt_RemoveBuildDirs "${name}"
542 #
543 # Include a touch of the target name so make can check if it's already been made.
544 wrt_touch
545 #
546 #--------------------------------------------------------------------#
547 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
548 #--------------------------------------------------------------------#
549 #
550 # Keep the script file name for Makefile dependencies.
551 PREV=${this_script}
552 # Set system_build envar for iteration targets
553 system_build=$basicsystem
554 done # for file in final-system/* ...
555}
556
557#--------------------------------------#
558bootscripts_Makefiles() { #
559#--------------------------------------#
560
561 if [[ "${METHOD}" = "chroot" ]]; then
562 echo "${tab_}${GREEN}Processing... ${L_arrow}(chroot) bootscripts ( CHROOT ) ${R_arrow}"
563 else
564 echo "${tab_}${GREEN}Processing... ${L_arrow}(boot) bootscripts ( ROOT ) ${R_arrow}"
565 fi
566
567 for file in bootscripts/* ; do
568 # Keep the script file name
569 this_script=`basename $file`
570
571 case $this_script in
572 *udev) continue ;; # This is not a script but a commentary, we want udev-rules
573 *console*) continue ;; # Use the files that came with the bootscripts
574 *) ;;
575 esac
576
577 # First append each name of the script files to a list (this will become
578 # the names of the targets in the Makefile
579 bootscripttools="$bootscripttools $this_script"
580
581 # Grab the name of the target, strip id number, XXX-script
582 name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'\
583 -e 's@-64bit@@' \
584 -e 's@-64@@' \
585 -e 's@64@@' \
586 -e 's@n32@@'`
587 case $name in
588 *bootscripts*) name=bootscripts-cross-lfs ;;
589 *udev-rules) name=udev-cross-lfs ;;
590 esac
591
592 pkg_tarball=$(get_package_tarball_name $name)
593
594 #--------------------------------------------------------------------#
595 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
596 #--------------------------------------------------------------------#
597 #
598 # Drop in the name of the target on a new line, and the previous target
599 # as a dependency. Also call the echo_message function.
600 CHROOT_wrt_target "${this_script}" "$PREV"
601 #
602 # If $pkg_tarball isn't empty, we've got a package...
603 #
604 [[ "$pkg_tarball" != "" ]] && CHROOT_Unpack "$pkg_tarball"
605 #
606 CHROOT_wrt_RunAsRoot "${file}"
607 #
608 [[ "$pkg_tarball" != "" ]] && CHROOT_wrt_RemoveBuildDirs "${name}"
609 #
610 # Include a touch of the target name so make can check if it's already been made.
611 wrt_touch
612 #
613 #--------------------------------------------------------------------#
614 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
615 #--------------------------------------------------------------------#
616 #
617 # Keep the script file name for Makefile dependencies.
618 PREV=$this_script
619
620 done # for file in bootscripts/* ...
621}
622
623#--------------------------------------#
624bootable_Makefiles() { #
625#--------------------------------------#
626
627 if [[ "${METHOD}" = "chroot" ]]; then
628 echo "${tab_}${GREEN}Processing... ${L_arrow}(chroot) make bootable ( CHROOT ) ${R_arrow}"
629 else
630 echo "${tab_}${GREEN}Processing... ${L_arrow}(boot) make bootable ( ROOT ) ${R_arrow}"
631 fi
632
633
634 for file in {bootable,the-end}/* ; do
635 # Keep the script file name
636 this_script=`basename $file`
637
638 # A little housekeeping on the scripts
639 case $this_script in
640 *grub | *aboot | *colo | *silo | *arcload | *lilo | *reboot* ) continue ;;
641 *fstab) [[ ! -z ${FSTAB} ]] && cp ${FSTAB} $BUILDDIR/sources/fstab ;;
642 *kernel) # if there is no kernel config file do not build the kernel
643 [[ -z $CONFIG ]] && continue
644 # Copy the config file to /sources with a standardized name
645 cp $CONFIG $BUILDDIR/sources/kernel-config
646 ;;
647 esac
648 #
649 # First append each name of the script files to a list (this will become
650 # the names of the targets in the Makefile
651 bootabletools="$bootabletools $this_script"
652 #
653 # Grab the name of the target, strip id number and misc words.
654 name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' -e 's@-build@@' `
655 case $this_script in
656 *kernel*) name=linux
657 ;;
658 esac
659
660 pkg_tarball=$(get_package_tarball_name $name)
661
662 #--------------------------------------------------------------------#
663 # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
664 #--------------------------------------------------------------------#
665 #
666 # Drop in the name of the target on a new line, and the previous target
667 # as a dependency. Also call the echo_message function.
668 CHROOT_wrt_target "${this_script}" "$PREV"
669 #
670 # If $pkg_tarball isn't empty, we've got a package...
671 # Insert instructions for unpacking the package and changing directories
672 #
673 [[ "$pkg_tarball" != "" ]] && CHROOT_Unpack "$pkg_tarball"
674 #
675 # Select a script execution method
676 case $this_script in
677 *fstab*) if [[ -n "$FSTAB" ]]; then
678 CHROOT_wrt_CopyFstab
679 else
680 CHROOT_wrt_RunAsRoot "${file}"
681 fi
682 ;;
683 *) CHROOT_wrt_RunAsRoot "${file}"
684 ;;
685 esac
686 #
687 # Housekeeping...remove any build directory(ies) except if the package build fails.
688 [[ "$pkg_tarball" != "" ]] && CHROOT_wrt_RemoveBuildDirs "${name}"
689 #
690 # Include a touch of the target name so make can check if it's already been made.
691 wrt_touch
692 #
693 #--------------------------------------------------------------------#
694 # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
695 #--------------------------------------------------------------------#
696 #
697 # Keep the script file name for Makefile dependencies.
698 PREV=$this_script
699
700 done
701
702}
703
704
705#--------------------------------------#
706build_Makefile() { # Construct a Makefile from the book scripts
707#--------------------------------------#
708 #
709 # Script crashes if error trapping is on
710 #
711set +e
712 declare -f method_cmds
713set -e
714
715 echo "...Creating Makefile... ${BOLD}START${OFF}"
716
717 cd $JHALFSDIR/${PROGNAME}-commands
718 # Start with a clean files
719 >$MKFILE
720 >$MKFILE.tmp
721
722 method_cmds=${METHOD}_Makefiles
723
724 host_prep_Makefiles # mk_SETUP (SETUP) $host_prep
725 cross_tools_Makefiles # mk_CROSS (LUSER) $cross_tools
726 temptools_Makefiles # mk_TEMP (LUSER) $temptools
727 $method_cmds # mk_SYSTOOLS (CHROOT) $chroottools/$boottools
728 if [[ ! $TEST = "0" ]]; then
729 testsuite_tools_Makefiles # mk_SYSTOOLS (CHROOT) $testsuitetools
730 fi
731 final_system_Makefiles # mk_FINAL (CHROOT) $basicsystem
732 # Add the iterations targets, if needed
733 [[ "$COMPARE" = "y" ]] && wrt_compare_targets
734 bootscripts_Makefiles # mk_BOOTSCRIPT (CHROOT) $bootscripttools
735 bootable_Makefiles # mk_BOOTABLE (CHROOT) $bootabletools
736
737 # Add the BLFS_TOOL targets, if needed
738 [[ "$BLFS_TOOL" = "y" ]] && wrt_blfs_tool_targets
739
740 # Add a header, some variables and include the function file
741 # to the top of the real Makefile.
742 wrt_Makefile_header
743
744 # Add chroot commands
745 if [ "$METHOD" = "chroot" ] ; then
746 CHROOT_LOC="`whereis -b chroot | cut -d " " -f2`"
747 chroot=`cat chroot/*chroot* | \
748 sed -e "s@chroot@$CHROOT_LOC@" \
749 -e '/#!\/tools\/bin\/bash/d' \
750 -e '/^export/d' \
751 -e '/^logout/d' \
752 -e 's@ \\\@ @g' | \
753 tr -d '\n' | \
754 sed -e 's/ */ /g' \
755 -e 's|\\$|&&|g' \
756 -e 's|exit||g' \
757 -e 's|$| -c|' \
758 -e 's|"$${CLFS}"|$(MOUNT_PT)|'\
759 -e 's|set -e||' \
760 -e 's|set +h||'`
761 echo -e "CHROOT1= $chroot\n" >> $MKFILE
762 fi
763
764################## CHROOT ####################
765
766if [[ "${METHOD}" = "chroot" ]]; then
767(
768cat << EOF
769
770all: ck_UID mk_SETUP mk_CROSS mk_SUDO mk_SYSTOOLS create-sbu_du-report mk_BLFS_TOOL
771 @sudo make do-housekeeping
772 @\$(call echo_finished,$VERSION)
773
774ck_UID:
775 @if [ \`id -u\` = "0" ]; then \\
776 echo "+--------------------------------------------------+"; \\
777 echo "|You cannot run this makefile from the root account|"; \\
778 echo "+--------------------------------------------------+"; \\
779 exit 1; \\
780 fi
781
782#---------------AS ROOT
783mk_SETUP:
784 @\$(call echo_SU_request)
785 @sudo make SHELL=/bin/bash SETUP
786 @touch \$@
787
788#---------------AS LUSER
789mk_CROSS: mk_SETUP
790 @\$(call echo_PHASE,Cross and Temporary Tools)
791 @(sudo \$(SU_LUSER) "source .bashrc && cd \$(MOUNT_PT)/\$(SCRIPT_ROOT) && make SHELL=/bin/bash AS_LUSER" )
792 @sudo make restore-luser-env
793 @touch \$@
794
795mk_SUDO: mk_CROSS
796 @sudo make SHELL=/bin/bash SUDO
797 @touch \$@
798#
799# The convoluted piece of code below is necessary to provide 'make' with a valid shell in the
800# chroot environment. (Unless someone knows a different way)
801# Manually create the /bin directory and provide link to the /tools dir.
802# Also change the original symlink creation to include (f)orce to prevent failure due to
803# pre-existing links.
804
805#---------------CHROOT JAIL
806mk_SYSTOOLS: mk_SUDO
807 @if [ ! -e \$(MOUNT_PT)/bin ]; then \\
808 mkdir \$(MOUNT_PT)/bin; \\
809 cd \$(MOUNT_PT)/bin && \\
810 ln -svf /tools/bin/bash bash; ln -sf bash sh; \\
811 sudo chown -R 0:0 \$(MOUNT_PT)/bin; \\
812 fi;
813 @sudo sed -e 's|^ln -sv |ln -svf |' -i \$(CMDSDIR)/chroot/*-createfiles
814 @\$(call echo_CHROOT_request)
815 @\$(call echo_PHASE, CHROOT JAIL )
816 @( sudo \$(CHROOT1) "cd \$(SCRIPT_ROOT) && make CHROOT_JAIL")
817 @touch \$@
818
819mk_BLFS_TOOL: create-sbu_du-report
820 @\$(call echo_PHASE,Building BLFS-TOOLS)
821 @if [ "\$(ADD_BLFS_TOOLS)" = "y" ]; then \\
822 sudo mkdir -p $BUILDDIR$TRACKING_DIR; \\
823 sudo \$(CHROOT1) "cd \$(SCRIPT_ROOT) && make BLFS_TOOL"; \\
824 fi;
825 @touch \$@
826
827SETUP: $host_prep
828AS_LUSER: $cross_tools $temptools
829SUDO: $orphan_scripts
830CHROOT_JAIL: ${chroottools} $testsuitetools $basicsystem $bootscripttools $bootabletools
831BLFS_TOOL: $blfs_tool
832
833
834create-sbu_du-report: mk_SYSTOOLS
835 @\$(call echo_message, Building)
836 @if [ "\$(ADD_REPORT)" = "y" ]; then \\
837 ./create-sbu_du-report.sh logs $VERSION; \\
838 \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
839 fi;
840 @touch \$@
841
842do-housekeeping:
843 @-umount \$(MOUNT_PT)/dev/pts
844 @-umount \$(MOUNT_PT)/dev/shm
845 @-umount \$(MOUNT_PT)/dev
846 @-umount \$(MOUNT_PT)/sys
847 @-umount \$(MOUNT_PT)/proc
848 @-rm /tools /cross-tools
849 @-if [ ! -f luser-exist ]; then \\
850 userdel \$(LUSER); \\
851 rm -rf /home/\$(LUSER); \\
852 fi;
853
854EOF
855) >> $MKFILE
856
857fi
858
859################### BOOT #####################
860
861if [[ "${METHOD}" = "boot" ]]; then
862(
863cat << EOF
864
865all: ck_UID mk_SETUP mk_CROSS mk_SUDO
866 @sudo make restore-luser-env
867 @sudo make do-housekeeping
868 @\$(call echo_boot_finished,$VERSION)
869
870makesys: mk_FINAL mk_BLFS_TOOL
871 @\$(call echo_finished,$VERSION)
872
873
874ck_UID:
875 @if [ \`id -u\` = "0" ]; then \\
876 echo "+--------------------------------------------------+"; \\
877 echo "|You cannot run this makefile from the root account|"; \\
878 echo "|However, if this is the boot environment |"; \\
879 echo "| the command you are looking for is |"; \\
880 echo "| make makesys |"; \\
881 echo "| to finish off the build |"; \\
882 echo "+--------------------------------------------------+"; \\
883 exit 1; \\
884 fi
885
886#---------------AS ROOT
887
888mk_SETUP:
889 @\$(call echo_SU_request)
890 @sudo make SHELL=/bin/bash SETUP
891 @touch \$@
892
893#---------------AS LUSER
894
895mk_CROSS: mk_SETUP
896 @\$(call echo_PHASE,Cross Tool)
897 @(sudo \$(SU_LUSER) "source .bashrc && cd \$(MOUNT_PT)/\$(SCRIPT_ROOT) && make SHELL=/bin/bash AS_LUSER" )
898 @touch \$@
899
900mk_SUDO: mk_CROSS
901 @sudo make SHELL=/bin/bash SUDO
902 @touch \$@
903
904#---------------AS ROOT
905
906mk_FINAL:
907 @\$(call echo_PHASE,Final System)
908 @( source /root/.bash_profile && make AS_ROOT )
909 @touch \$@
910
911mk_BLFS_TOOL: mk_FINAL
912 @\$(call echo_PHASE,Building BLFS-TOOLS)
913 @if [ "\$(ADD_BLFS_TOOLS)" = "y" ]; then \\
914 mkdir -p $TRACKING_DIR; \\
915 ( make BLFS_TOOL ); \\
916 fi
917 @touch \$@
918
919SETUP: $host_prep
920AS_LUSER: $cross_tools $temptools ${boottools}
921SUDO: $orphan_scripts
922AS_ROOT: $testsuitetools $basicsystem $bootscripttools $bootabletools
923BLFS_TOOL: $blfs_tool
924
925do-housekeeping:
926 @-rm /tools /cross-tools
927 @-if [ ! -f luser-exist ]; then \\
928 userdel \$(LUSER); \\
929 rm -rf /home/\$(LUSER); \\
930 fi;
931
932EOF
933) >> $MKFILE
934fi
935
936(
937 cat << EOF
938
939restore-luser-env:
940 @\$(call echo_message, Building)
941 @if [ -f /home/\$(LUSER)/.bashrc.XXX ]; then \\
942 mv -f /home/\$(LUSER)/.bashrc.XXX /home/\$(LUSER)/.bashrc; \\
943 fi;
944 @if [ -f /home/\$(LUSER)/.bash_profile.XXX ]; then \\
945 mv /home/\$(LUSER)/.bash_profile.XXX /home/\$(LUSER)/.bash_profile; \\
946 fi;
947 @chown \$(LUSER):\$(LGROUP) /home/\$(LUSER)/.bash* && \\
948 touch \$@ && \\
949 echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
950 echo --------------------------------------------------------------------------------\$(WHITE)
951
952########################################################
953
954
955EOF
956) >> $MKFILE
957
958 # Bring over the items from the Makefile.tmp
959 cat $MKFILE.tmp >> $MKFILE
960 rm $MKFILE.tmp
961
962 echo "Creating Makefile... ${BOLD}DONE${OFF}"
963}
Note: See TracBrowser for help on using the repository browser.