[0170229] | 1 | #!/bin/sh
|
---|
[1ce084e] | 2 | # $Id$
|
---|
[0170229] | 3 |
|
---|
| 4 | ###################################
|
---|
| 5 | ### FUNCTIONS ###
|
---|
| 6 | ###################################
|
---|
| 7 |
|
---|
| 8 |
|
---|
| 9 |
|
---|
| 10 | #----------------------------#
|
---|
[fcaf131] | 11 | host_prep_Makefiles() { # Initialization of the system
|
---|
[0170229] | 12 | #----------------------------#
|
---|
| 13 | local LFS_HOST
|
---|
| 14 |
|
---|
| 15 | echo "${tab_}${GREEN}Processing... ${L_arrow}host prep files${R_arrow}"
|
---|
| 16 |
|
---|
| 17 | # defined here, only for ease of reading
|
---|
| 18 | LFS_HOST="`echo ${MACHTYPE} | sed -e 's/unknown/cross/g' -e 's/-pc-/-cross-/g'`"
|
---|
| 19 | (
|
---|
| 20 | cat << EOF
|
---|
| 21 | 023-creatingtoolsdir:
|
---|
| 22 | @\$(call echo_message, Building)
|
---|
| 23 | @mkdir -v \$(MOUNT_PT)/tools && \\
|
---|
| 24 | rm -fv /tools && \\
|
---|
| 25 | ln -sv \$(MOUNT_PT)/tools /
|
---|
| 26 | @if [ ! -d \$(MOUNT_PT)/sources ]; then \\
|
---|
| 27 | mkdir \$(MOUNT_PT)/sources; \\
|
---|
| 28 | fi;
|
---|
| 29 | @chmod a+wt \$(MOUNT_PT)/sources && \\
|
---|
| 30 | touch \$@
|
---|
| 31 |
|
---|
| 32 | 024-creatingcrossdir: 023-creatingtoolsdir
|
---|
| 33 | @mkdir -v \$(MOUNT_PT)/cross-tools && \\
|
---|
| 34 | rm -fv /cross-tools && \\
|
---|
| 35 | ln -sv \$(MOUNT_PT)/cross-tools /
|
---|
| 36 | @touch \$@
|
---|
| 37 |
|
---|
| 38 | 025-addinguser: 024-creatingcrossdir
|
---|
| 39 | @\$(call echo_message, Building)
|
---|
| 40 | @if [ ! -d /home/lfs ]; then \\
|
---|
| 41 | groupadd lfs; \\
|
---|
| 42 | useradd -s /bin/bash -g lfs -m -k /dev/null lfs; \\
|
---|
| 43 | else \\
|
---|
| 44 | touch user-lfs-exist; \\
|
---|
| 45 | fi;
|
---|
| 46 | @chown lfs \$(MOUNT_PT) && \\
|
---|
| 47 | chown lfs \$(MOUNT_PT)/tools && \\
|
---|
| 48 | chown lfs \$(MOUNT_PT)/cross-tools && \\
|
---|
| 49 | chown lfs \$(MOUNT_PT)/sources && \\
|
---|
| 50 | touch \$@
|
---|
| 51 |
|
---|
| 52 | 026-settingenvironment: 025-addinguser
|
---|
| 53 | @\$(call echo_message, Building)
|
---|
| 54 | @if [ -f /home/lfs/.bashrc -a ! -f /home/lfs/.bashrc.XXX ]; then \\
|
---|
| 55 | mv -v /home/lfs/.bashrc /home/lfs/.bashrc.XXX; \\
|
---|
| 56 | fi;
|
---|
| 57 | @if [ -f /home/lfs/.bash_profile -a ! -f /home/lfs/.bash_profile.XXX ]; then \\
|
---|
| 58 | mv -v /home/lfs/.bash_profile /home/lfs/.bash_profile.XXX; \\
|
---|
| 59 | fi;
|
---|
| 60 | @echo "set +h" > /home/lfs/.bashrc && \\
|
---|
| 61 | echo "umask 022" >> /home/lfs/.bashrc && \\
|
---|
| 62 | echo "LFS=\$(MOUNT_PT)" >> /home/lfs/.bashrc && \\
|
---|
| 63 | echo "LC_ALL=POSIX" >> /home/lfs/.bashrc && \\
|
---|
| 64 | echo "PATH=/cross-tools/bin:/bin:/usr/bin" >> /home/lfs/.bashrc && \\
|
---|
| 65 | echo "export LFS LC_ALL PATH" >> /home/lfs/.bashrc && \\
|
---|
| 66 | echo "" >> /home/lfs/.bashrc && \\
|
---|
| 67 | echo "unset CFLAGS" >> /home/lfs/.bashrc && \\
|
---|
| 68 | echo "unset CXXFLAGS" >> /home/lfs/.bashrc && \\
|
---|
| 69 | echo "" >> /home/lfs/.bashrc && \\
|
---|
| 70 | echo "export LFS_HOST=\"${LFS_HOST}\"" >> /home/lfs/.bashrc && \\
|
---|
| 71 | echo "export LFS_TARGET=\"${TARGET}\"" >> /home/lfs/.bashrc && \\
|
---|
| 72 | echo "export LFS_TARGET32=\"${TARGET32}\"" >> /home/lfs/.bashrc && \\
|
---|
| 73 | echo "source $JHALFSDIR/envars" >> /home/lfs/.bashrc
|
---|
| 74 | @chown lfs:lfs /home/lfs/.bashrc && \\
|
---|
| 75 | touch envars && \\
|
---|
| 76 | touch \$@
|
---|
| 77 | EOF
|
---|
| 78 | ) >> $MKFILE.tmp
|
---|
| 79 |
|
---|
| 80 | }
|
---|
| 81 |
|
---|
| 82 |
|
---|
| 83 |
|
---|
| 84 | #-----------------------------#
|
---|
| 85 | cross_tools_Makefiles() { #
|
---|
| 86 | #-----------------------------#
|
---|
| 87 | echo "${tab_}${GREEN}Processing... ${L_arrow}cross tools${R_arrow}"
|
---|
| 88 |
|
---|
| 89 | for file in cross-tools/* ; do
|
---|
| 90 | # Keep the script file name
|
---|
| 91 | this_script=`basename $file`
|
---|
| 92 | #
|
---|
| 93 | # Skip this script...
|
---|
| 94 | case $this_script in
|
---|
| 95 | *cflags* | *variables* ) # work done in host_prep_Makefiles
|
---|
| 96 | continue; ;;
|
---|
| 97 | *) ;;
|
---|
| 98 | esac
|
---|
| 99 | #
|
---|
| 100 | # Set the dependency for the first target.
|
---|
| 101 | if [ -z $PREV ] ; then PREV=026-settingenvironment ; fi
|
---|
| 102 |
|
---|
| 103 | # First append each name of the script files to a list (this will become
|
---|
| 104 | # the names of the targets in the Makefile
|
---|
| 105 | cross_tools="$cross_tools $this_script"
|
---|
| 106 |
|
---|
| 107 | # Grab the name of the target (minus the -headers or -cross in the case of gcc
|
---|
| 108 | # and binutils in chapter 5)
|
---|
| 109 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' \
|
---|
| 110 | -e 's@-static@@' \
|
---|
| 111 | -e 's@-final@@' \
|
---|
| 112 | -e 's@-headers@@' \
|
---|
| 113 | -e 's@-64@@' \
|
---|
| 114 | -e 's@-n32@@'`
|
---|
| 115 | # Adjust 'name' and patch a few scripts on the fly..
|
---|
| 116 | case $name in
|
---|
| 117 | linux-libc) name=linux-libc-headers ;;
|
---|
| 118 | esac
|
---|
| 119 | #
|
---|
| 120 | # Find the version of the command files, if it corresponds with the building of a specific package
|
---|
| 121 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 122 |
|
---|
| 123 |
|
---|
| 124 | #--------------------------------------------------------------------#
|
---|
| 125 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 126 | #--------------------------------------------------------------------#
|
---|
| 127 | #
|
---|
| 128 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 129 | # as a dependency. Also call the echo_message function.
|
---|
[3e1c0e2] | 130 | wrt_target "${this_script}" "$PREV"
|
---|
[0170229] | 131 | #
|
---|
| 132 | # If $vrs isn't empty, we've got a package...
|
---|
| 133 | #
|
---|
[2fbc503] | 134 | [[ "$vrs" != "" ]] && wrt_unpack "$name-$vrs.tar.*"
|
---|
[0170229] | 135 | #
|
---|
[64cc345] | 136 | wrt_run_as_su "${this_script}" "${file}"
|
---|
[0170229] | 137 | #
|
---|
| 138 | [[ "$vrs" != "" ]] && wrt_remove_build_dirs "${name}"
|
---|
| 139 | #
|
---|
| 140 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 141 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 142 | #
|
---|
| 143 | #--------------------------------------------------------------------#
|
---|
| 144 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 145 | #--------------------------------------------------------------------#
|
---|
| 146 | #
|
---|
| 147 | # Keep the script file name for Makefile dependencies.
|
---|
| 148 | PREV=$this_script
|
---|
| 149 |
|
---|
| 150 | done # for file in ....
|
---|
| 151 | }
|
---|
| 152 |
|
---|
| 153 |
|
---|
| 154 | #-----------------------------#
|
---|
| 155 | temptools_Makefiles() { #
|
---|
| 156 | #-----------------------------#
|
---|
| 157 | echo "${tab_}${GREEN}Processing... ${L_arrow}temp system${R_arrow}"
|
---|
| 158 |
|
---|
| 159 | for file in temp-system/* ; do
|
---|
| 160 | # Keep the script file name
|
---|
| 161 | this_script=`basename $file`
|
---|
| 162 | #
|
---|
| 163 | # First append each name of the script files to a list (this will become
|
---|
| 164 | # the names of the targets in the Makefile
|
---|
| 165 | temptools="$temptools $this_script"
|
---|
| 166 |
|
---|
| 167 | #
|
---|
| 168 | # Grab the name of the target, strip id number, XXX-script
|
---|
| 169 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'`
|
---|
| 170 | #
|
---|
| 171 | # Find the version of the command files, if it corresponds with the building of a specific package
|
---|
| 172 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 173 |
|
---|
| 174 |
|
---|
| 175 | #--------------------------------------------------------------------#
|
---|
| 176 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 177 | #--------------------------------------------------------------------#
|
---|
| 178 | #
|
---|
| 179 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 180 | # as a dependency. Also call the echo_message function.
|
---|
[3e1c0e2] | 181 | wrt_target "${this_script}" "$PREV"
|
---|
[0170229] | 182 | #
|
---|
| 183 | # If $vrs isn't empty, we've got a package...
|
---|
| 184 | # Insert instructions for unpacking the package and to set the PKGDIR variable.
|
---|
| 185 | #
|
---|
[2fbc503] | 186 | [[ "$vrs" != "" ]] && wrt_unpack "$name-$vrs.tar.*"
|
---|
[c205656] | 187 | [[ "$vrs" != "" ]] && [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
|
---|
[0170229] | 188 | #
|
---|
[64cc345] | 189 | wrt_run_as_su "${this_script}" "${file}"
|
---|
[0170229] | 190 | #
|
---|
| 191 | [[ "$vrs" != "" ]] && wrt_remove_build_dirs "${name}"
|
---|
| 192 | #
|
---|
| 193 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 194 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 195 | #
|
---|
| 196 | #--------------------------------------------------------------------#
|
---|
| 197 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 198 | #--------------------------------------------------------------------#
|
---|
| 199 | #
|
---|
| 200 | # Keep the script file name for Makefile dependencies.
|
---|
| 201 | PREV=$this_script
|
---|
| 202 | done # for file in ....
|
---|
| 203 | }
|
---|
| 204 |
|
---|
| 205 |
|
---|
| 206 | #-----------------------------#
|
---|
| 207 | boot_Makefiles() { #
|
---|
| 208 | #-----------------------------#
|
---|
| 209 | echo "${tab_}${GREEN}Processing... ${L_arrow}boot${R_arrow}"
|
---|
| 210 |
|
---|
| 211 | for file in boot/* ; do
|
---|
| 212 | # Keep the script file name
|
---|
| 213 | this_script=`basename $file`
|
---|
| 214 |
|
---|
| 215 | # A little housekeeping on the scripts
|
---|
| 216 | case $this_script in
|
---|
[6d3564b] | 217 | *grub | *aboot | *colo | *silo | *arcload | *lilo ) continue ;;
|
---|
[0170229] | 218 | *whatnext*) continue ;;
|
---|
[0271c0c] | 219 | *kernel) # if there is no kernel config file do not build the kernel
|
---|
[4845f38] | 220 | [[ -z $CONFIG ]] && continue
|
---|
[0271c0c] | 221 | # Copy the config file to /sources with a standardized name
|
---|
[6eef5ef] | 222 | cp $BOOT_CONFIG $BUILDDIR/sources/bootkernel-config
|
---|
[0170229] | 223 | ;;
|
---|
| 224 | esac
|
---|
| 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 | boottools="$boottools $this_script"
|
---|
| 229 | #
|
---|
| 230 | # Grab the name of the target, strip id number and misc words.
|
---|
| 231 | case $this_script in
|
---|
[6d3564b] | 232 | *kernel) name=linux ;;
|
---|
[fcaf131] | 233 | *bootscripts) name="bootscripts-cross-lfs" ;;
|
---|
[9dc8222] | 234 | *udev-rules) name="udev-cross-lfs" ;;
|
---|
[6d3564b] | 235 | *grub-build) name=grub ;;
|
---|
| 236 | *-aboot-build) name=aboot ;;
|
---|
| 237 | *yaboot-build) name=yaboot ;;
|
---|
| 238 | *colo-build) name=colo ;;
|
---|
| 239 | *silo-build) name=silo ;;
|
---|
| 240 | *arcload-build) name=arcload ;;
|
---|
| 241 | *lilo-build) name=lilo ;;
|
---|
[0170229] | 242 | *) name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' -e 's@-build@@' ` ;;
|
---|
| 243 | esac
|
---|
| 244 |
|
---|
| 245 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 246 |
|
---|
| 247 | #--------------------------------------------------------------------#
|
---|
| 248 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 249 | #--------------------------------------------------------------------#
|
---|
| 250 | #
|
---|
| 251 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 252 | # as a dependency. Also call the echo_message function.
|
---|
[3e1c0e2] | 253 | wrt_target "${this_script}" "$PREV"
|
---|
[0170229] | 254 | #
|
---|
| 255 | # If $vrs isn't empty, we've got a package...
|
---|
| 256 | # Insert instructions for unpacking the package and changing directories
|
---|
| 257 | #
|
---|
[2fbc503] | 258 | [[ "$vrs" != "" ]] && wrt_unpack "$name-$vrs.tar.*"
|
---|
[c205656] | 259 | [[ "$vrs" != "" ]] && [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
|
---|
[0170229] | 260 | #
|
---|
| 261 | # Select a script execution method
|
---|
| 262 | case $this_script in
|
---|
| 263 | *changingowner*) wrt_run_as_root "${this_script}" "${file}" ;;
|
---|
| 264 | *devices*) wrt_run_as_root "${this_script}" "${file}" ;;
|
---|
| 265 | *fstab*) if [[ -n "$FSTAB" ]]; then
|
---|
| 266 | wrt_copy_fstab "${this_script}"
|
---|
| 267 | else
|
---|
[64cc345] | 268 | wrt_run_as_su "${this_script}" "${file}"
|
---|
[0170229] | 269 | fi
|
---|
| 270 | ;;
|
---|
[64cc345] | 271 | *) wrt_run_as_su "${this_script}" "${file}" ;;
|
---|
[0170229] | 272 | esac
|
---|
| 273 | #
|
---|
| 274 | # Housekeeping...remove any build directory(ies) except if the package build fails.
|
---|
| 275 | [[ "$vrs" != "" ]] && wrt_remove_build_dirs "${name}"
|
---|
| 276 | #
|
---|
| 277 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 278 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 279 | #
|
---|
| 280 | #--------------------------------------------------------------------#
|
---|
| 281 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 282 | #--------------------------------------------------------------------#
|
---|
| 283 | #
|
---|
| 284 | # Keep the script file name for Makefile dependencies.
|
---|
| 285 | PREV=$this_script
|
---|
| 286 |
|
---|
| 287 | done
|
---|
| 288 | }
|
---|
| 289 |
|
---|
| 290 |
|
---|
| 291 | #-----------------------------#
|
---|
| 292 | chroot_Makefiles() { #
|
---|
| 293 | #-----------------------------#
|
---|
| 294 | echo "${tab_}${GREEN}Processing... ${L_arrow}chroot${R_arrow}"
|
---|
| 295 |
|
---|
| 296 | for file in chroot/* ; do
|
---|
| 297 | # Keep the script file name
|
---|
| 298 | this_script=`basename $file`
|
---|
| 299 | #
|
---|
| 300 | # Skipping scripts is done now and not included in the build tree.
|
---|
[fd5cb46] | 301 | case $this_script in
|
---|
| 302 | *chroot*) continue ;;
|
---|
| 303 | esac
|
---|
[0170229] | 304 |
|
---|
| 305 | #
|
---|
| 306 | # First append each name of the script files to a list (this will become
|
---|
| 307 | # the names of the targets in the Makefile
|
---|
| 308 | chroottools="$chroottools $this_script"
|
---|
| 309 |
|
---|
| 310 | # Grab the name of the target, strip id number, XXX-script
|
---|
| 311 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'`
|
---|
| 312 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 313 |
|
---|
| 314 | #--------------------------------------------------------------------#
|
---|
| 315 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 316 | #--------------------------------------------------------------------#
|
---|
| 317 | #
|
---|
| 318 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 319 | # as a dependency. Also call the echo_message function.
|
---|
[3e1c0e2] | 320 | wrt_target "${this_script}" "$PREV"
|
---|
[0170229] | 321 | #
|
---|
| 322 | # If $vrs isn't empty, we've got a package...
|
---|
| 323 | # Insert instructions for unpacking the package and changing directories
|
---|
| 324 | #
|
---|
| 325 | if [ "$vrs" != "" ] ; then
|
---|
| 326 | case $this_script in
|
---|
[2fbc503] | 327 | *util-linux) wrt_unpack "$name-$vrs.tar.*" ;;
|
---|
| 328 | *) wrt_unpack2 "$name-$vrs.tar.*" ;;
|
---|
[0170229] | 329 | esac
|
---|
[c205656] | 330 | [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
|
---|
[0170229] | 331 | fi
|
---|
| 332 | #
|
---|
| 333 | # Select a script execution method
|
---|
| 334 | case $this_script in
|
---|
| 335 | *kernfs) wrt_run_as_root "${this_script}" "${file}" ;;
|
---|
[64cc345] | 336 | *util-linux) wrt_run_as_su "${this_script}" "${file}" ;;
|
---|
[0170229] | 337 | *) wrt_run_as_chroot1 "${this_script}" "${file}" ;;
|
---|
| 338 | esac
|
---|
| 339 | #
|
---|
| 340 | # Housekeeping...remove the build directory(ies), except if the package build fails.
|
---|
| 341 | [[ "$vrs" != "" ]] && wrt_remove_build_dirs "${name}"
|
---|
| 342 | #
|
---|
| 343 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 344 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 345 | #
|
---|
| 346 | #--------------------------------------------------------------------#
|
---|
| 347 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 348 | #--------------------------------------------------------------------#
|
---|
| 349 | #
|
---|
| 350 | # Keep the script file name for Makefile dependencies.
|
---|
| 351 | PREV=$this_script
|
---|
| 352 |
|
---|
| 353 | done # for file in...
|
---|
| 354 | }
|
---|
| 355 |
|
---|
| 356 |
|
---|
| 357 | #-----------------------------#
|
---|
| 358 | testsuite_tools_Makefiles() { #
|
---|
| 359 | #-----------------------------#
|
---|
[afd0232] | 360 | echo "${tab_}${GREEN}Processing... ${L_arrow}(chroot) testsuite tools${R_arrow}"
|
---|
[0170229] | 361 |
|
---|
| 362 | for file in testsuite-tools/* ; do
|
---|
| 363 | # Keep the script file name
|
---|
| 364 | this_script=`basename $file`
|
---|
| 365 |
|
---|
| 366 | # First append each name of the script files to a list (this will become
|
---|
| 367 | # the names of the targets in the Makefile
|
---|
| 368 | testsuitetools="$testsuitetools $this_script"
|
---|
| 369 |
|
---|
| 370 | # Grab the name of the target, strip id number, XXX-script
|
---|
| 371 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'\
|
---|
| 372 | -e 's@-64bit@@' \
|
---|
| 373 | -e 's@-64@@' \
|
---|
| 374 | -e 's@64@@' \
|
---|
| 375 | -e 's@n32@@'`
|
---|
| 376 |
|
---|
| 377 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 378 |
|
---|
| 379 | #--------------------------------------------------------------------#
|
---|
| 380 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 381 | #--------------------------------------------------------------------#
|
---|
| 382 | #
|
---|
| 383 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 384 | # as a dependency. Also call the echo_message function.
|
---|
[3e1c0e2] | 385 | wrt_target "${this_script}" "$PREV"
|
---|
[0170229] | 386 | #
|
---|
| 387 | case $name in
|
---|
[c3c4e1d] | 388 | tcl) wrt_unpack2 "$name$vrs-src.tar.*" ;;
|
---|
| 389 | *) wrt_unpack2 "$name-$vrs.tar.*" ;;
|
---|
[0170229] | 390 | esac
|
---|
[c205656] | 391 | [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
|
---|
[0170229] | 392 | #
|
---|
| 393 | wrt_run_as_chroot1 "${this_script}" "${file}"
|
---|
| 394 | #
|
---|
| 395 | wrt_remove_build_dirs "${name}"
|
---|
| 396 | #
|
---|
| 397 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 398 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 399 | #
|
---|
| 400 | #--------------------------------------------------------------------#
|
---|
| 401 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 402 | #--------------------------------------------------------------------#
|
---|
| 403 | #
|
---|
| 404 | # Keep the script file name for Makefile dependencies.
|
---|
| 405 | PREV=$this_script
|
---|
| 406 |
|
---|
| 407 | done
|
---|
| 408 | }
|
---|
| 409 |
|
---|
| 410 |
|
---|
| 411 | #--------------------------------#
|
---|
| 412 | bm_testsuite_tools_Makefiles() { #
|
---|
| 413 | #--------------------------------#
|
---|
[afd0232] | 414 | echo "${tab_}${GREEN}Processing... ${L_arrow}(boot) testsuite tools${R_arrow}"
|
---|
[0170229] | 415 |
|
---|
| 416 | for file in testsuite-tools/* ; do
|
---|
| 417 | # Keep the script file name
|
---|
| 418 | this_script=`basename $file`
|
---|
| 419 |
|
---|
| 420 | # First append each name of the script files to a list (this will become
|
---|
| 421 | # the names of the targets in the Makefile
|
---|
[39d4d5c] | 422 | PREV=
|
---|
[0170229] | 423 | testsuitetools="$testsuitetools $this_script"
|
---|
| 424 |
|
---|
| 425 | # Grab the name of the target, strip id number, XXX-script
|
---|
| 426 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'\
|
---|
| 427 | -e 's@-64bit@@' \
|
---|
| 428 | -e 's@-64@@' \
|
---|
| 429 | -e 's@64@@' \
|
---|
| 430 | -e 's@n32@@'`
|
---|
| 431 |
|
---|
| 432 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 433 |
|
---|
| 434 | #--------------------------------------------------------------------#
|
---|
| 435 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 436 | #--------------------------------------------------------------------#
|
---|
| 437 | #
|
---|
| 438 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 439 | # as a dependency. Also call the echo_message function.
|
---|
[3e1c0e2] | 440 | wrt_target "${this_script}" "$PREV"
|
---|
[0170229] | 441 | #
|
---|
| 442 | case $name in
|
---|
[c3c4e1d] | 443 | tcl) wrt_unpack3 "$name$vrs-src.tar.*" ;;
|
---|
| 444 | *) wrt_unpack3 "$name-$vrs.tar.*" ;;
|
---|
[0170229] | 445 | esac
|
---|
[c205656] | 446 | [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
|
---|
[0170229] | 447 | #
|
---|
| 448 | wrt_run_as_root2 "${this_script}" "${file}"
|
---|
| 449 | #
|
---|
| 450 | wrt_remove_build_dirs2 "${name}"
|
---|
| 451 | #
|
---|
| 452 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 453 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 454 | #
|
---|
| 455 | #--------------------------------------------------------------------#
|
---|
| 456 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 457 | #--------------------------------------------------------------------#
|
---|
| 458 | #
|
---|
| 459 | # Keep the script file name for Makefile dependencies.
|
---|
| 460 | PREV=$this_script
|
---|
| 461 |
|
---|
| 462 | done
|
---|
| 463 | }
|
---|
| 464 |
|
---|
| 465 |
|
---|
| 466 | #-----------------------------#
|
---|
| 467 | final_system_Makefiles() { #
|
---|
| 468 | #-----------------------------#
|
---|
[b12abe1] | 469 | # Set envars and scripts for iteration targets
|
---|
| 470 | LOGS="" # Start with an empty global LOGS envar
|
---|
| 471 | if [[ -z "$1" ]] ; then
|
---|
| 472 | local N=""
|
---|
| 473 | else
|
---|
| 474 | local N=-build_$1
|
---|
| 475 | local basicsystem=""
|
---|
| 476 | mkdir final-system$N
|
---|
| 477 | cp final-system/* final-system$N
|
---|
| 478 | for script in final-system$N/* ; do
|
---|
| 479 | # Overwrite existing symlinks, files, and dirs
|
---|
| 480 | sed -e 's/ln -sv/&f/g' \
|
---|
| 481 | -e 's/mv -v/&f/g' \
|
---|
| 482 | -e 's/mkdir -v/&p/g' -i ${script}
|
---|
| 483 | done
|
---|
| 484 | # Remove Bzip2 binaries before make install
|
---|
| 485 | sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i final-system$N/*-bzip2
|
---|
| 486 | # Fix how Module-Init-Tools do the install target
|
---|
| 487 | sed -e 's@make install@make INSTALL=install install@' -i final-system$N/*-module-init-tools
|
---|
| 488 | # Delete *old Readline libraries just after make install
|
---|
| 489 | sed -e 's@make install@&\nrm -v /lib/lib{history,readline}*old@' -i final-system$N/*-readline
|
---|
| 490 | fi
|
---|
| 491 |
|
---|
| 492 | echo "${tab_}${GREEN}Processing... ${L_arrow}(chroot) final system$N${R_arrow}"
|
---|
[0170229] | 493 |
|
---|
[b12abe1] | 494 | for file in final-system$N/* ; do
|
---|
[0170229] | 495 | # Keep the script file name
|
---|
| 496 | this_script=`basename $file`
|
---|
| 497 |
|
---|
[b12abe1] | 498 | # Test if the stripping phase must be skipped.
|
---|
| 499 | # Skip alsp temp-perl for iterative runs
|
---|
[fd5cb46] | 500 | case $this_script in
|
---|
[b12abe1] | 501 | *stripping*) [[ "$STRIP" = "0" ]] && continue ;;
|
---|
| 502 | *temp-perl*) [[ -n "$N" ]] && continue ;;
|
---|
[fd5cb46] | 503 | esac
|
---|
[3fcd63e] | 504 |
|
---|
[0170229] | 505 | # Grab the name of the target, strip id number, XXX-script
|
---|
| 506 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' \
|
---|
| 507 | -e 's@temp-@@' \
|
---|
| 508 | -e 's@-64bit@@' \
|
---|
| 509 | -e 's@-64@@' \
|
---|
| 510 | -e 's@64@@' \
|
---|
| 511 | -e 's@n32@@'`
|
---|
| 512 |
|
---|
[b12abe1] | 513 | # Find the version of the command files, if it corresponds with the building of
|
---|
| 514 | # a specific package. We need this here to can skip scripts not needed for
|
---|
| 515 | # iterations rebuilds
|
---|
[0170229] | 516 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 517 |
|
---|
[b12abe1] | 518 | if [[ "$vrs" = "" ]] && [[ -n "$N" ]] ; then
|
---|
| 519 | case "${this_script}" in
|
---|
| 520 | *stripping*) ;;
|
---|
| 521 | *) continue ;;
|
---|
| 522 | esac
|
---|
| 523 | fi
|
---|
| 524 |
|
---|
| 525 | # Append each name of the script files to a list (this will become
|
---|
| 526 | # the names of the targets in the Makefile
|
---|
| 527 | basicsystem="$basicsystem ${this_script}${N}"
|
---|
| 528 |
|
---|
| 529 | # Append each name of the script files to a list (this will become
|
---|
| 530 | # the names of the logs to be moved for each iteration)
|
---|
| 531 | LOGS="$LOGS ${this_script}"
|
---|
| 532 |
|
---|
[0170229] | 533 | #--------------------------------------------------------------------#
|
---|
| 534 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 535 | #--------------------------------------------------------------------#
|
---|
| 536 | #
|
---|
| 537 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 538 | # as a dependency. Also call the echo_message function.
|
---|
[b12abe1] | 539 | wrt_target "${this_script}${N}" "$PREV"
|
---|
[0170229] | 540 |
|
---|
| 541 | # If $vrs isn't empty, we've got a package...
|
---|
| 542 | if [ "$vrs" != "" ] ; then
|
---|
[b12abe1] | 543 | FILE="$name-$vrs.tar.*"
|
---|
| 544 | wrt_unpack2 "$FILE"
|
---|
[c205656] | 545 | [[ "$OPTIMIZE" != "0" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
|
---|
[0170229] | 546 | fi
|
---|
| 547 | #
|
---|
| 548 | wrt_run_as_chroot1 "${this_script}" "${file}"
|
---|
| 549 | #
|
---|
| 550 | [[ "$vrs" != "" ]] && wrt_remove_build_dirs "${name}"
|
---|
| 551 | #
|
---|
| 552 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 553 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 554 | #
|
---|
| 555 | #--------------------------------------------------------------------#
|
---|
| 556 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 557 | #--------------------------------------------------------------------#
|
---|
| 558 | #
|
---|
| 559 | # Keep the script file name for Makefile dependencies.
|
---|
[b12abe1] | 560 | PREV=${this_script}${N}
|
---|
| 561 | # Set system_build envar for iteration targets
|
---|
| 562 | system_build=$basicsystem
|
---|
[0170229] | 563 | done # for file in final-system/* ...
|
---|
| 564 | }
|
---|
| 565 |
|
---|
| 566 |
|
---|
| 567 | #-----------------------------#
|
---|
| 568 | bm_final_system_Makefiles() { #
|
---|
| 569 | #-----------------------------#
|
---|
[b12abe1] | 570 | # Set envars and scripts for iteration targets
|
---|
| 571 | LOGS="" # Start with an empty global LOGS envar
|
---|
| 572 | if [[ -z "$1" ]] ; then
|
---|
| 573 | local N=""
|
---|
| 574 | # The makesys phase was initiated in bm_testsuite_tools_makefile
|
---|
| 575 | [[ "$TEST" = 0 ]] && PREV=""
|
---|
| 576 | else
|
---|
| 577 | local N=-build_$1
|
---|
| 578 | local basicsystem=""
|
---|
| 579 | mkdir final-system$N
|
---|
| 580 | cp final-system/* final-system$N
|
---|
| 581 | for script in final-system$N/* ; do
|
---|
| 582 | # Overwrite existing symlinks, files, and dirs
|
---|
| 583 | sed -e 's/ln -sv/&f/g' \
|
---|
| 584 | -e 's/mv -v/&f/g' \
|
---|
| 585 | -e 's/mkdir -v/&p/g' -i ${script}
|
---|
| 586 | done
|
---|
| 587 | # Remove Bzip2 binaries before make install
|
---|
| 588 | sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i final-system$N/*-bzip2
|
---|
| 589 | # Fix how Module-Init-Tools do the install target
|
---|
| 590 | sed -e 's@make install@make INSTALL=install install@' -i final-system$N/*-module-init-tools
|
---|
| 591 | # Delete *old Readline libraries just after make install
|
---|
| 592 | sed -e 's@make install@&\nrm -v /lib/lib{history,readline}*old@' -i final-system$N/*-readline
|
---|
| 593 | fi
|
---|
[0170229] | 594 |
|
---|
[b12abe1] | 595 | echo "${tab_}${GREEN}Processing... ${L_arrow}(boot) final system$N${R_arrow}"
|
---|
[39d4d5c] | 596 |
|
---|
[b12abe1] | 597 | for file in final-system$N/* ; do
|
---|
[0170229] | 598 | # Keep the script file name
|
---|
| 599 | this_script=`basename $file`
|
---|
| 600 |
|
---|
[3fcd63e] | 601 | # Test if the stripping phase must be skipped
|
---|
[b12abe1] | 602 | # Skip alsp temp-perl for iterative runs
|
---|
[64cc345] | 603 | case $this_script in
|
---|
[b12abe1] | 604 | *stripping*) [[ "$STRIP" = "0" ]] && continue ;;
|
---|
| 605 | *temp-perl*) [[ -n "$N" ]] && continue ;;
|
---|
[fd5cb46] | 606 | esac
|
---|
[0170229] | 607 |
|
---|
| 608 | # Grab the name of the target, strip id number, XXX-script
|
---|
| 609 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' \
|
---|
| 610 | -e 's@temp-@@' \
|
---|
| 611 | -e 's@-64bit@@' \
|
---|
| 612 | -e 's@-64@@' \
|
---|
| 613 | -e 's@64@@' \
|
---|
| 614 | -e 's@n32@@'`
|
---|
| 615 |
|
---|
[b12abe1] | 616 | # Find the version of the command files, if it corresponds with the building of
|
---|
| 617 | # a specific package. We need this here to can skip scripts not needed for
|
---|
| 618 | # iterations rebuilds
|
---|
[0170229] | 619 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 620 |
|
---|
[b12abe1] | 621 | if [[ "$vrs" = "" ]] && [[ -n "$N" ]] ; then
|
---|
| 622 | case "${this_script}" in
|
---|
| 623 | *stripping*) ;;
|
---|
| 624 | *) continue ;;
|
---|
| 625 | esac
|
---|
| 626 | fi
|
---|
| 627 |
|
---|
| 628 | # Append each name of the script files to a list (this will become
|
---|
| 629 | # the names of the targets in the Makefile
|
---|
| 630 | basicsystem="$basicsystem ${this_script}${N}"
|
---|
| 631 |
|
---|
| 632 | # Append each name of the script files to a list (this will become
|
---|
| 633 | # the names of the logs to be moved for each iteration)
|
---|
| 634 | LOGS="$LOGS ${this_script}"
|
---|
| 635 |
|
---|
[0170229] | 636 | #--------------------------------------------------------------------#
|
---|
| 637 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 638 | #--------------------------------------------------------------------#
|
---|
| 639 | #
|
---|
| 640 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 641 | # as a dependency. Also call the echo_message function.
|
---|
[b12abe1] | 642 | wrt_target "${this_script}${N}" "$PREV"
|
---|
[0170229] | 643 |
|
---|
| 644 | # If $vrs isn't empty, we've got a package...
|
---|
| 645 | if [ "$vrs" != "" ] ; then
|
---|
[b12abe1] | 646 | FILE="$name-$vrs.tar.*"
|
---|
| 647 | wrt_unpack3 "$FILE"
|
---|
[c205656] | 648 | [[ "$OPTIMIZE" != "0" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
|
---|
[0170229] | 649 | fi
|
---|
| 650 | #
|
---|
| 651 | wrt_run_as_root2 "${this_script}" "${file}"
|
---|
| 652 | #
|
---|
| 653 | [[ "$vrs" != "" ]] && wrt_remove_build_dirs2 "${name}"
|
---|
| 654 | #
|
---|
| 655 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 656 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 657 | #
|
---|
| 658 | #--------------------------------------------------------------------#
|
---|
| 659 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 660 | #--------------------------------------------------------------------#
|
---|
| 661 | #
|
---|
| 662 | # Keep the script file name for Makefile dependencies.
|
---|
[b12abe1] | 663 | PREV=${this_script}${N}
|
---|
| 664 | # Set system_build envar for iteration targets
|
---|
| 665 | system_build=$basicsystem
|
---|
[0170229] | 666 | done # for file in final-system/* ...
|
---|
| 667 | }
|
---|
| 668 |
|
---|
| 669 |
|
---|
| 670 | #-----------------------------#
|
---|
| 671 | bootscripts_Makefiles() { #
|
---|
| 672 | #-----------------------------#
|
---|
[afd0232] | 673 | echo "${tab_}${GREEN}Processing... ${L_arrow}(chroot) bootscripts${R_arrow}"
|
---|
[0170229] | 674 |
|
---|
| 675 | for file in bootscripts/* ; do
|
---|
| 676 | # Keep the script file name
|
---|
| 677 | this_script=`basename $file`
|
---|
| 678 |
|
---|
| 679 | case $this_script in
|
---|
[eba62c0] | 680 | *udev) continue ;; # This is not a script but a commentary, we want udev-rules
|
---|
[0170229] | 681 | *console*) continue ;; # Use the files that came with the bootscripts
|
---|
| 682 | *) ;;
|
---|
| 683 | esac
|
---|
| 684 |
|
---|
| 685 | # First append each name of the script files to a list (this will become
|
---|
| 686 | # the names of the targets in the Makefile
|
---|
| 687 | bootscripttools="$bootscripttools $this_script"
|
---|
| 688 |
|
---|
| 689 | # Grab the name of the target, strip id number, XXX-script
|
---|
| 690 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'\
|
---|
| 691 | -e 's@-64bit@@' \
|
---|
| 692 | -e 's@-64@@' \
|
---|
| 693 | -e 's@64@@' \
|
---|
| 694 | -e 's@n32@@'`
|
---|
[fd5cb46] | 695 | case $name in
|
---|
[eba62c0] | 696 | *bootscripts*) name=bootscripts-cross-lfs ;;
|
---|
| 697 | *udev-rules) name=udev-cross-lfs ;;
|
---|
[fd5cb46] | 698 | esac
|
---|
[0170229] | 699 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 700 |
|
---|
| 701 | #--------------------------------------------------------------------#
|
---|
| 702 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 703 | #--------------------------------------------------------------------#
|
---|
| 704 | #
|
---|
| 705 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 706 | # as a dependency. Also call the echo_message function.
|
---|
[3e1c0e2] | 707 | wrt_target "${this_script}" "$PREV"
|
---|
[0170229] | 708 | #
|
---|
| 709 | # If $vrs isn't empty, we've got a package...
|
---|
| 710 | #
|
---|
| 711 | [[ "$vrs" != "" ]] && wrt_unpack2 "$name-$vrs.tar.*"
|
---|
| 712 | #
|
---|
| 713 | wrt_run_as_chroot1 "${this_script}" "${file}"
|
---|
| 714 | #
|
---|
| 715 | [[ "$vrs" != "" ]] && wrt_remove_build_dirs "${name}"
|
---|
| 716 | #
|
---|
| 717 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 718 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 719 | #
|
---|
| 720 | #--------------------------------------------------------------------#
|
---|
| 721 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 722 | #--------------------------------------------------------------------#
|
---|
| 723 | #
|
---|
| 724 | # Keep the script file name for Makefile dependencies.
|
---|
| 725 | PREV=$this_script
|
---|
| 726 |
|
---|
| 727 | done # for file in bootscripts/* ...
|
---|
| 728 |
|
---|
| 729 | }
|
---|
| 730 |
|
---|
| 731 | #-----------------------------#
|
---|
| 732 | bm_bootscripts_Makefiles() { #
|
---|
| 733 | #-----------------------------#
|
---|
[afd0232] | 734 | echo "${tab_}${GREEN}Processing... ${L_arrow}(boot) bootscripts${R_arrow}"
|
---|
[0170229] | 735 |
|
---|
| 736 | for file in bootscripts/* ; do
|
---|
| 737 | # Keep the script file name
|
---|
| 738 | this_script=`basename $file`
|
---|
| 739 |
|
---|
| 740 | case $this_script in
|
---|
| 741 | *udev*) continue ;; # This is not a script but a commentary
|
---|
| 742 | *console*) continue ;; # Use the files that came with the bootscripts
|
---|
| 743 | *) ;;
|
---|
| 744 | esac
|
---|
| 745 |
|
---|
| 746 | # First append each name of the script files to a list (this will become
|
---|
| 747 | # the names of the targets in the Makefile
|
---|
| 748 | bootscripttools="$bootscripttools $this_script"
|
---|
| 749 |
|
---|
| 750 | # Grab the name of the target, strip id number, XXX-script
|
---|
| 751 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'\
|
---|
| 752 | -e 's@-64bit@@' \
|
---|
| 753 | -e 's@-64@@' \
|
---|
| 754 | -e 's@64@@' \
|
---|
| 755 | -e 's@n32@@'`
|
---|
[fd5cb46] | 756 | case $name in
|
---|
| 757 | *bootscripts*) name=bootscripts-cross-lfs
|
---|
| 758 | ;;
|
---|
| 759 | esac
|
---|
[0170229] | 760 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 761 |
|
---|
| 762 | #--------------------------------------------------------------------#
|
---|
| 763 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 764 | #--------------------------------------------------------------------#
|
---|
| 765 | #
|
---|
| 766 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 767 | # as a dependency. Also call the echo_message function.
|
---|
[3e1c0e2] | 768 | wrt_target "${this_script}" "$PREV"
|
---|
[0170229] | 769 | #
|
---|
| 770 | # If $vrs isn't empty, we've got a package...
|
---|
| 771 | #
|
---|
[c3c4e1d] | 772 | [[ "$vrs" != "" ]] && wrt_unpack3 "$name-$vrs.tar.*"
|
---|
[0170229] | 773 | #
|
---|
| 774 | wrt_run_as_root2 "${this_script}" "${file}"
|
---|
| 775 | #
|
---|
| 776 | [[ "$vrs" != "" ]] && wrt_remove_build_dirs2 "${name}"
|
---|
| 777 | #
|
---|
| 778 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 779 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 780 | #
|
---|
| 781 | #--------------------------------------------------------------------#
|
---|
| 782 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 783 | #--------------------------------------------------------------------#
|
---|
| 784 | #
|
---|
| 785 | # Keep the script file name for Makefile dependencies.
|
---|
| 786 | PREV=$this_script
|
---|
| 787 |
|
---|
| 788 | done # for file in bootscripts/* ...
|
---|
| 789 |
|
---|
| 790 | }
|
---|
| 791 |
|
---|
| 792 |
|
---|
| 793 |
|
---|
| 794 | #-----------------------------#
|
---|
| 795 | bootable_Makefiles() { #
|
---|
| 796 | #-----------------------------#
|
---|
[afd0232] | 797 | echo "${tab_}${GREEN}Processing... ${L_arrow}(chroot) make bootable${R_arrow}"
|
---|
[0170229] | 798 |
|
---|
[7f38b6d] | 799 | for file in {bootable,the-end}/* ; do
|
---|
[0170229] | 800 | # Keep the script file name
|
---|
| 801 | this_script=`basename $file`
|
---|
| 802 |
|
---|
| 803 | # A little housekeeping on the scripts
|
---|
| 804 | case $this_script in
|
---|
[7f38b6d] | 805 | *grub | *aboot | *colo | *silo | *arcload | *lilo | *reboot* ) continue ;;
|
---|
[87b93b4] | 806 | *kernel) # if there is no kernel config file do not build the kernel
|
---|
[4845f38] | 807 | [[ -z $CONFIG ]] && continue
|
---|
[0271c0c] | 808 | # Copy the config file to /sources with a standardized name
|
---|
[1917cad] | 809 | cp $CONFIG $BUILDDIR/sources/kernel-config
|
---|
[87b93b4] | 810 | ;;
|
---|
[0170229] | 811 | esac
|
---|
| 812 | #
|
---|
| 813 | # First append each name of the script files to a list (this will become
|
---|
| 814 | # the names of the targets in the Makefile
|
---|
| 815 | bootabletools="$bootabletools $this_script"
|
---|
| 816 | #
|
---|
| 817 | # Grab the name of the target, strip id number and misc words.
|
---|
| 818 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' -e 's@-build@@' `
|
---|
[fd5cb46] | 819 | case $this_script in
|
---|
| 820 | *kernel*) name=linux
|
---|
| 821 | ;;
|
---|
| 822 | esac
|
---|
[0170229] | 823 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 824 |
|
---|
| 825 | #--------------------------------------------------------------------#
|
---|
| 826 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 827 | #--------------------------------------------------------------------#
|
---|
| 828 | #
|
---|
| 829 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 830 | # as a dependency. Also call the echo_message function.
|
---|
[3e1c0e2] | 831 | wrt_target "${this_script}" "$PREV"
|
---|
[0170229] | 832 | #
|
---|
| 833 | # If $vrs isn't empty, we've got a package...
|
---|
| 834 | # Insert instructions for unpacking the package and changing directories
|
---|
| 835 | #
|
---|
[b88d581] | 836 | [[ "$vrs" != "" ]] && wrt_unpack2 "$name-$vrs.tar.*"
|
---|
[0170229] | 837 | #
|
---|
| 838 | # Select a script execution method
|
---|
| 839 | case $this_script in
|
---|
| 840 | *fstab*) if [[ -n "$FSTAB" ]]; then
|
---|
| 841 | wrt_copy_fstab "${this_script}"
|
---|
| 842 | else
|
---|
[fcaf131] | 843 | wrt_run_as_chroot1 "${this_script}" "${file}"
|
---|
[0170229] | 844 | fi
|
---|
| 845 | ;;
|
---|
[fcaf131] | 846 | *) wrt_run_as_chroot1 "${this_script}" "${file}" ;;
|
---|
[0170229] | 847 | esac
|
---|
| 848 | #
|
---|
| 849 | # Housekeeping...remove any build directory(ies) except if the package build fails.
|
---|
| 850 | [[ "$vrs" != "" ]] && wrt_remove_build_dirs "${name}"
|
---|
| 851 | #
|
---|
| 852 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 853 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 854 | #
|
---|
| 855 | #--------------------------------------------------------------------#
|
---|
| 856 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 857 | #--------------------------------------------------------------------#
|
---|
| 858 | #
|
---|
| 859 | # Keep the script file name for Makefile dependencies.
|
---|
| 860 | PREV=$this_script
|
---|
| 861 |
|
---|
| 862 | done
|
---|
| 863 |
|
---|
[9e4b9a1] | 864 | # Add SBU-disk_usage report target if required
|
---|
| 865 | if [[ "$REPORT" = "1" ]] ; then wrt_report ; fi
|
---|
| 866 |
|
---|
[0170229] | 867 | }
|
---|
| 868 |
|
---|
| 869 |
|
---|
| 870 |
|
---|
| 871 | #-----------------------------#
|
---|
| 872 | bm_bootable_Makefiles() { #
|
---|
| 873 | #-----------------------------#
|
---|
[afd0232] | 874 | echo "${tab_}${GREEN}Processing... ${L_arrow}(boot) make bootable${R_arrow}"
|
---|
[0170229] | 875 |
|
---|
[7f38b6d] | 876 | for file in {bootable,the-end}/* ; do
|
---|
[0170229] | 877 | # Keep the script file name
|
---|
| 878 | this_script=`basename $file`
|
---|
| 879 |
|
---|
| 880 | # A little housekeeping on the scripts
|
---|
| 881 | case $this_script in
|
---|
[7f38b6d] | 882 | *grub | *aboot | *colo | *silo | *arcload | *lilo | *reboot* ) continue ;;
|
---|
[b83baf6] | 883 | *kernel) # if there is no kernel config file do not build the kernel
|
---|
[4845f38] | 884 | [[ -z $CONFIG ]] && continue
|
---|
[0271c0c] | 885 | # Copy the named config file to /sources with a standardized name
|
---|
[62033d2] | 886 | cp $CONFIG $BUILDDIR/sources/kernel-config
|
---|
[0170229] | 887 | ;;
|
---|
| 888 | esac
|
---|
| 889 | #
|
---|
| 890 | # First append each name of the script files to a list (this will become
|
---|
| 891 | # the names of the targets in the Makefile
|
---|
| 892 | bootabletools="$bootabletools $this_script"
|
---|
| 893 | #
|
---|
| 894 | # Grab the name of the target, strip id number and misc words.
|
---|
| 895 | case $this_script in
|
---|
| 896 | *kernel) name=linux
|
---|
| 897 | ;;
|
---|
| 898 | *) name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@' -e 's@-build@@' ` ;;
|
---|
| 899 | esac
|
---|
| 900 |
|
---|
| 901 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 902 |
|
---|
| 903 | #--------------------------------------------------------------------#
|
---|
| 904 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 905 | #--------------------------------------------------------------------#
|
---|
| 906 | #
|
---|
| 907 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 908 | # as a dependency. Also call the echo_message function.
|
---|
[3e1c0e2] | 909 | wrt_target "${this_script}" "$PREV"
|
---|
[0170229] | 910 | #
|
---|
| 911 | # If $vrs isn't empty, we've got a package...
|
---|
| 912 | # Insert instructions for unpacking the package and changing directories
|
---|
| 913 | #
|
---|
[c3c4e1d] | 914 | [[ "$vrs" != "" ]] && wrt_unpack3 "$name-$vrs.tar.*"
|
---|
[0170229] | 915 | #
|
---|
| 916 | # Select a script execution method
|
---|
| 917 | case $this_script in
|
---|
| 918 | *fstab*) if [[ -n "$FSTAB" ]]; then
|
---|
[a9490ab] | 919 | # Minimal boot mode has no access to original file, store in /sources
|
---|
| 920 | cp $FSTAB $BUILDDIR/sources/fstab
|
---|
[0170229] | 921 | wrt_copy_fstab2 "${this_script}"
|
---|
| 922 | else
|
---|
| 923 | wrt_run_as_root2 "${this_script}" "${file}"
|
---|
| 924 | fi
|
---|
| 925 | ;;
|
---|
| 926 | *) wrt_run_as_root2 "${this_script}" "${file}" ;;
|
---|
| 927 | esac
|
---|
| 928 | #
|
---|
| 929 | # Housekeeping...remove any build directory(ies) except if the package build fails.
|
---|
| 930 | [[ "$vrs" != "" ]] && wrt_remove_build_dirs2 "${name}"
|
---|
| 931 | #
|
---|
| 932 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 933 | echo -e '\t@touch $@' >> $MKFILE.tmp
|
---|
| 934 | #
|
---|
| 935 | #--------------------------------------------------------------------#
|
---|
| 936 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 937 | #--------------------------------------------------------------------#
|
---|
| 938 | #
|
---|
| 939 | # Keep the script file name for Makefile dependencies.
|
---|
| 940 | PREV=$this_script
|
---|
| 941 |
|
---|
| 942 | done
|
---|
| 943 |
|
---|
[9e4b9a1] | 944 | # Add SBU-disk_usage report target if required
|
---|
| 945 | if [[ "$REPORT" = "1" ]] ; then wrt_report ; fi
|
---|
| 946 |
|
---|
[0170229] | 947 | }
|
---|
| 948 |
|
---|
| 949 |
|
---|
| 950 | #-----------------------------#
|
---|
| 951 | build_Makefile() { # Construct a Makefile from the book scripts
|
---|
| 952 | #-----------------------------#
|
---|
| 953 | echo "Creating Makefile... ${BOLD}START${OFF}"
|
---|
| 954 |
|
---|
| 955 | cd $JHALFSDIR/${PROGNAME}-commands
|
---|
| 956 | # Start with a clean Makefile.tmp file
|
---|
| 957 | >$MKFILE.tmp
|
---|
| 958 |
|
---|
| 959 | host_prep_Makefiles
|
---|
[d43a271] | 960 | cross_tools_Makefiles # $cross_tools
|
---|
| 961 | temptools_Makefiles # $temptools
|
---|
[afd0232] | 962 | if [[ $METHOD = "chroot" ]]; then
|
---|
[d43a271] | 963 | chroot_Makefiles # $chroottools
|
---|
[fa06e8e] | 964 | if [[ ! $TEST = "0" ]]; then
|
---|
[d43a271] | 965 | testsuite_tools_Makefiles # $testsuitetools
|
---|
[0170229] | 966 | fi
|
---|
[d43a271] | 967 | final_system_Makefiles # $basicsystem
|
---|
[b12abe1] | 968 | # Add the iterations targets, if needed
|
---|
| 969 | [[ "$COMPARE" != "0" ]] && wrt_compare_targets
|
---|
[d43a271] | 970 | bootscripts_Makefiles # $bootscripttools
|
---|
| 971 | bootable_Makefiles # $bootabletools
|
---|
[0170229] | 972 | else
|
---|
[d43a271] | 973 | boot_Makefiles # $boottools
|
---|
[fa06e8e] | 974 | if [[ ! $TEST = "0" ]]; then
|
---|
[d43a271] | 975 | bm_testsuite_tools_Makefiles # $testsuitetools
|
---|
[0170229] | 976 | fi
|
---|
[d43a271] | 977 | bm_final_system_Makefiles # $basicsystem
|
---|
[b12abe1] | 978 | # Add the iterations targets, if needed
|
---|
| 979 | [[ "$COMPARE" != "0" ]] && wrt_compare_targets
|
---|
[d43a271] | 980 | bm_bootscripts_Makefiles # $bootscipttools
|
---|
| 981 | bm_bootable_Makefiles # $bootabletoosl
|
---|
[0170229] | 982 | fi
|
---|
[39d4d5c] | 983 | # the_end_Makefiles
|
---|
[0170229] | 984 |
|
---|
| 985 |
|
---|
| 986 | # Add a header, some variables and include the function file
|
---|
| 987 | # to the top of the real Makefile.
|
---|
| 988 | (
|
---|
| 989 | cat << EOF
|
---|
| 990 | $HEADER
|
---|
| 991 |
|
---|
| 992 | SRC= /sources
|
---|
| 993 | MOUNT_PT= $BUILDDIR
|
---|
| 994 |
|
---|
| 995 | include makefile-functions
|
---|
| 996 |
|
---|
| 997 | EOF
|
---|
| 998 | ) > $MKFILE
|
---|
| 999 |
|
---|
| 1000 | # Add chroot commands
|
---|
[e676ffa] | 1001 | if [ "$METHOD" = "chroot" ] ; then
|
---|
| 1002 | chroot=`cat chroot/*chroot* | sed -e '/#!\/tools\/bin\/bash/d' \
|
---|
[0170229] | 1003 | -e '/^export/d' \
|
---|
| 1004 | -e '/^logout/d' \
|
---|
| 1005 | -e 's@ \\\@ @g' | tr -d '\n' | sed -e 's/ */ /g' \
|
---|
| 1006 | -e 's|\\$|&&|g' \
|
---|
| 1007 | -e 's|exit||g' \
|
---|
| 1008 | -e 's|$| -c|' \
|
---|
| 1009 | -e 's|"$$LFS"|$(MOUNT_PT)|'\
|
---|
| 1010 | -e 's|set -e||'`
|
---|
[e676ffa] | 1011 | echo -e "CHROOT1= $chroot\n" >> $MKFILE
|
---|
| 1012 | fi
|
---|
[0170229] | 1013 |
|
---|
| 1014 | # Drop in the main target 'all:' and the chapter targets with each sub-target
|
---|
| 1015 | # as a dependency.
|
---|
[39d4d5c] | 1016 | if [[ "${METHOD}" = "chroot" ]]; then
|
---|
[0170229] | 1017 | (
|
---|
| 1018 | cat << EOF
|
---|
| 1019 | all: chapter2 chapter3 chapter4 chapter5 chapter6 chapter7 chapter8
|
---|
| 1020 | @\$(call echo_finished,$VERSION)
|
---|
| 1021 |
|
---|
| 1022 | chapter2: 023-creatingtoolsdir 024-creatingcrossdir 025-addinguser 026-settingenvironment
|
---|
| 1023 |
|
---|
| 1024 | chapter3: chapter2 $cross_tools
|
---|
| 1025 |
|
---|
| 1026 | chapter4: chapter3 $temptools
|
---|
| 1027 |
|
---|
[d43a271] | 1028 | chapter5: chapter4 $chroottools $testsuitetools
|
---|
[0170229] | 1029 |
|
---|
| 1030 | chapter6: chapter5 $basicsystem
|
---|
| 1031 |
|
---|
| 1032 | chapter7: chapter6 $bootscripttools
|
---|
| 1033 |
|
---|
| 1034 | chapter8: chapter7 $bootabletools
|
---|
| 1035 |
|
---|
| 1036 | clean-all: clean
|
---|
[db187c74] | 1037 | rm -rf ./{clfs-commands,logs,Makefile,*.xsl,makefile-functions,packages,patches}
|
---|
[0170229] | 1038 |
|
---|
| 1039 | clean: clean-chapter4 clean-chapter3 clean-chapter2
|
---|
| 1040 |
|
---|
| 1041 | clean-chapter2:
|
---|
| 1042 | -if [ ! -f user-lfs-exist ]; then \\
|
---|
| 1043 | userdel lfs; \\
|
---|
| 1044 | rm -rf /home/lfs; \\
|
---|
| 1045 | fi;
|
---|
| 1046 | rm -rf \$(MOUNT_PT)/tools
|
---|
| 1047 | rm -f /tools
|
---|
| 1048 | rm -rf \$(MOUNT_PT)/cross-tools
|
---|
| 1049 | rm -f /cross-tools
|
---|
| 1050 | rm -f envars user-lfs-exist
|
---|
| 1051 | rm -f 02* logs/02*.log
|
---|
| 1052 |
|
---|
| 1053 | clean-chapter3:
|
---|
| 1054 | rm -rf \$(MOUNT_PT)/tools/*
|
---|
| 1055 | rm -f $cross_tools restore-lfs-env sources-dir
|
---|
| 1056 | cd logs && rm -f $cross_tools && cd ..
|
---|
| 1057 |
|
---|
| 1058 | clean-chapter4:
|
---|
| 1059 | -umount \$(MOUNT_PT)/sys
|
---|
| 1060 | -umount \$(MOUNT_PT)/proc
|
---|
| 1061 | -umount \$(MOUNT_PT)/dev/shm
|
---|
| 1062 | -umount \$(MOUNT_PT)/dev/pts
|
---|
| 1063 | -umount \$(MOUNT_PT)/dev
|
---|
| 1064 | rm -rf \$(MOUNT_PT)/{bin,boot,dev,etc,home,lib,lib64,media,mnt,opt,proc,root,sbin,srv,sys,tmp,usr,var}
|
---|
| 1065 | rm -f $temptools
|
---|
| 1066 | cd logs && rm -f $temptools && cd ..
|
---|
| 1067 |
|
---|
| 1068 |
|
---|
| 1069 | restore-lfs-env:
|
---|
| 1070 | @\$(call echo_message, Building)
|
---|
| 1071 | @if [ -f /home/lfs/.bashrc.XXX ]; then \\
|
---|
| 1072 | mv -fv /home/lfs/.bashrc.XXX /home/lfs/.bashrc; \\
|
---|
| 1073 | fi;
|
---|
| 1074 | @if [ -f /home/lfs/.bash_profile.XXX ]; then \\
|
---|
| 1075 | mv -v /home/lfs/.bash_profile.XXX /home/lfs/.bash_profile; \\
|
---|
| 1076 | fi;
|
---|
| 1077 | @chown lfs:lfs /home/lfs/.bash* && \\
|
---|
| 1078 | touch \$@
|
---|
| 1079 |
|
---|
| 1080 | EOF
|
---|
| 1081 | ) >> $MKFILE
|
---|
[39d4d5c] | 1082 | fi
|
---|
| 1083 |
|
---|
| 1084 |
|
---|
| 1085 | if [[ "${METHOD}" = "boot" ]]; then
|
---|
| 1086 | (
|
---|
| 1087 | cat << EOF
|
---|
[64cc345] | 1088 |
|
---|
[3e1c0e2] | 1089 | all: makeboot
|
---|
[39d4d5c] | 1090 |
|
---|
| 1091 | makeboot: 023-creatingtoolsdir 024-creatingcrossdir 025-addinguser 026-settingenvironment \
|
---|
| 1092 | $cross_tools\
|
---|
| 1093 | $temptools \
|
---|
| 1094 | $chroottools \
|
---|
| 1095 | $boottools
|
---|
| 1096 | @\$(call echo_boot_finished,$VERSION)
|
---|
| 1097 |
|
---|
[d43a271] | 1098 | makesys: $testsuitetools $basicsystem $bootscripttools $bootabletools
|
---|
[39d4d5c] | 1099 | @\$(call echo_finished,$VERSION)
|
---|
| 1100 |
|
---|
| 1101 |
|
---|
| 1102 | clean-all: clean
|
---|
[db187c74] | 1103 | rm -rf ./{clfs-commands,logs,Makefile,*.xsl,makefile-functions,packages,patches}
|
---|
[39d4d5c] | 1104 |
|
---|
| 1105 | clean: clean-makesys clean-makeboot clean-jhalfs
|
---|
| 1106 |
|
---|
| 1107 | clean-jhalfs:
|
---|
| 1108 | -if [ ! -f user-lfs-exist ]; then \\
|
---|
| 1109 | userdel lfs; \\
|
---|
| 1110 | rm -rf /home/lfs; \\
|
---|
| 1111 | fi;
|
---|
| 1112 | rm -rf \$(MOUNT_PT)/tools
|
---|
| 1113 | rm -f /tools
|
---|
| 1114 | rm -rf \$(MOUNT_PT)/cross-tools
|
---|
| 1115 | rm -f /cross-tools
|
---|
| 1116 | rm -f envars user-lfs-exist
|
---|
| 1117 | rm -f 02* logs/02*.log
|
---|
[0170229] | 1118 |
|
---|
[39d4d5c] | 1119 | clean-makeboot:
|
---|
| 1120 | rm -rf /tools/*
|
---|
[64cc345] | 1121 | rm -f $cross_tools && rm -f $temptools && rm -f $chroottools && rm -f $boottools
|
---|
[39d4d5c] | 1122 | rm -f restore-lfs-env sources-dir
|
---|
| 1123 | cd logs && rm -f $cross_tools && rm -f $temptools && rm -f $chroottools && rm -f $boottools && cd ..
|
---|
| 1124 |
|
---|
| 1125 | clean-makesys:
|
---|
| 1126 | -umount \$(MOUNT_PT)/sys
|
---|
| 1127 | -umount \$(MOUNT_PT)/proc
|
---|
| 1128 | -umount \$(MOUNT_PT)/dev/shm
|
---|
| 1129 | -umount \$(MOUNT_PT)/dev/pts
|
---|
| 1130 | -umount \$(MOUNT_PT)/dev
|
---|
| 1131 | rm -rf \$(MOUNT_PT)/{bin,boot,dev,etc,home,lib,lib64,media,mnt,opt,proc,root,sbin,srv,sys,tmp,usr,var}
|
---|
| 1132 | rm -f $basicsystem
|
---|
| 1133 | rm -f $bootscripttools
|
---|
| 1134 | rm -f $bootabletools
|
---|
| 1135 | cd logs && rm -f $basicsystem && rm -f $bootscripttools && rm -f $bootabletools && cd ..
|
---|
| 1136 |
|
---|
| 1137 |
|
---|
| 1138 | restore-lfs-env:
|
---|
| 1139 | @\$(call echo_message, Building)
|
---|
| 1140 | @if [ -f /home/lfs/.bashrc.XXX ]; then \\
|
---|
| 1141 | mv -fv /home/lfs/.bashrc.XXX /home/lfs/.bashrc; \\
|
---|
| 1142 | fi;
|
---|
| 1143 | @if [ -f /home/lfs/.bash_profile.XXX ]; then \\
|
---|
| 1144 | mv -v /home/lfs/.bash_profile.XXX /home/lfs/.bash_profile; \\
|
---|
| 1145 | fi;
|
---|
| 1146 | @chown lfs:lfs /home/lfs/.bash* && \\
|
---|
| 1147 | touch \$@
|
---|
| 1148 |
|
---|
| 1149 | EOF
|
---|
| 1150 | ) >> $MKFILE
|
---|
| 1151 | fi
|
---|
[0170229] | 1152 |
|
---|
| 1153 | # Bring over the items from the Makefile.tmp
|
---|
| 1154 | cat $MKFILE.tmp >> $MKFILE
|
---|
| 1155 | rm $MKFILE.tmp
|
---|
| 1156 | echo "Creating Makefile... ${BOLD}DONE${OFF}"
|
---|
| 1157 |
|
---|
| 1158 | }
|
---|
| 1159 |
|
---|