[91ff6a9] | 1 | #!/bin/bash
|
---|
[877cc6a] | 2 | set -e # Enable error trapping
|
---|
| 3 |
|
---|
| 4 | # $Id$
|
---|
| 5 |
|
---|
| 6 | ###################################
|
---|
| 7 | ### FUNCTIONS ###
|
---|
| 8 | ###################################
|
---|
| 9 |
|
---|
[045b2dc] | 10 |
|
---|
[d81c640] | 11 | #----------------------------#
|
---|
| 12 | process_toolchain() { # embryo,cocoon and butterfly need special handling
|
---|
| 13 | #----------------------------#
|
---|
| 14 | local toolchain=$1
|
---|
[045b2dc] | 15 | local this_file=$2
|
---|
| 16 | local tc_phase
|
---|
[401f81e] | 17 | local binutil_tarball
|
---|
| 18 | local gcc_core_tarball
|
---|
[045b2dc] | 19 | local TC_MountPT
|
---|
| 20 | local remove_existing
|
---|
| 21 |
|
---|
| 22 | tc_phase=`echo $toolchain | sed -e 's@[0-9]\{3\}-@@' -e 's@-toolchain@@'`
|
---|
| 23 | case $tc_phase in
|
---|
| 24 | embryo | \
|
---|
| 25 | cocoon) # Vars for LUSER phase
|
---|
| 26 | remove_existing="remove_existing_dirs"
|
---|
| 27 | TC_MountPT="\$(MOUNT_PT)\$(SRC)"
|
---|
| 28 | ;;
|
---|
| 29 | butterfly) # Vars for CHROOT phase
|
---|
| 30 | remove_existing="remove_existing_dirs2"
|
---|
| 31 | TC_MountPT="\$(SRC)"
|
---|
| 32 | ;;
|
---|
| 33 | esac
|
---|
[d81c640] | 34 |
|
---|
[1e69324] | 35 | #
|
---|
| 36 | # Safe method to remove existing toolchain dirs
|
---|
[401f81e] | 37 | binutil_tarball=$(get_package_tarball_name "binutils")
|
---|
| 38 | gcc_core_tarball=$(get_package_tarball_name "gcc-core")
|
---|
| 39 | (
|
---|
| 40 | cat << EOF
|
---|
[045b2dc] | 41 | @\$(call ${remove_existing},$binutil_tarball)
|
---|
| 42 | @\$(call ${remove_existing},$gcc_core_tarball)
|
---|
[401f81e] | 43 | EOF
|
---|
| 44 | ) >> $MKFILE.tmp
|
---|
| 45 |
|
---|
[1e69324] | 46 | #
|
---|
| 47 | # Manually remove the toolchain directories..
|
---|
| 48 | (
|
---|
| 49 | cat << EOF
|
---|
[045b2dc] | 50 | @rm -rf ${TC_MountPT}/${tc_phase}-toolchain && \\
|
---|
| 51 | rm -rf ${TC_MountPT}/${tc_phase}-build
|
---|
[1e69324] | 52 | EOF
|
---|
| 53 | ) >> $MKFILE.tmp
|
---|
| 54 |
|
---|
[d81c640] | 55 |
|
---|
| 56 | (
|
---|
| 57 | cat << EOF
|
---|
[045b2dc] | 58 | @echo "export PKGDIR=${TC_MountPT}" > envars
|
---|
[d81c640] | 59 | EOF
|
---|
| 60 | ) >> $MKFILE.tmp
|
---|
[045b2dc] | 61 |
|
---|
| 62 | case ${tc_phase} in
|
---|
| 63 | butterfly)
|
---|
| 64 | [[ "$TEST" != "0" ]] && CHROOT_wrt_test_log "${toolchain}"
|
---|
| 65 | CHROOT_wrt_RunAsRoot "$this_file"
|
---|
| 66 | ;;
|
---|
| 67 | *) LUSER_wrt_RunAsUser "$this_file"
|
---|
[d81c640] | 68 | ;;
|
---|
| 69 | esac
|
---|
| 70 | #
|
---|
[401f81e] | 71 | (
|
---|
| 72 | cat << EOF
|
---|
[045b2dc] | 73 | @\$(call ${remove_existing},$binutil_tarball)
|
---|
| 74 | @\$(call ${remove_existing},$gcc_core_tarball)
|
---|
[401f81e] | 75 | EOF
|
---|
| 76 | ) >> $MKFILE.tmp
|
---|
| 77 |
|
---|
[d81c640] | 78 | #
|
---|
| 79 | # Manually remove the toolchain directories..
|
---|
| 80 | (
|
---|
| 81 | cat << EOF
|
---|
[045b2dc] | 82 | @rm -rf ${TC_MountPT}/${tc_phase}-toolchain && \\
|
---|
| 83 | rm -rf ${TC_MountPT}/${tc_phase}-build
|
---|
[d81c640] | 84 | EOF
|
---|
| 85 | ) >> $MKFILE.tmp
|
---|
| 86 |
|
---|
| 87 | }
|
---|
| 88 |
|
---|
[877cc6a] | 89 |
|
---|
| 90 | #----------------------------#
|
---|
| 91 | chapter3_Makefiles() { # Initialization of the system
|
---|
| 92 | #----------------------------#
|
---|
| 93 |
|
---|
[045b2dc] | 94 | echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter3 ( SETUP ) ${R_arrow}"
|
---|
[877cc6a] | 95 |
|
---|
| 96 | # Define a few model dependant variables
|
---|
| 97 | if [[ ${MODEL} = "uclibc" ]]; then
|
---|
[d81c640] | 98 | TARGET="pc-linux-gnu"; LOADER="ld-uClibc.so.0"
|
---|
[877cc6a] | 99 | else
|
---|
[045b2dc] | 100 | TARGET="pc-linux-gnu"; LOADER="ld-linux.so.2"
|
---|
[877cc6a] | 101 | fi
|
---|
| 102 |
|
---|
[6ad5a2f] | 103 | # If /home/$LUSER is already present in the host, we asume that the
|
---|
[d81c640] | 104 | # hlfs user and group are also presents in the host, and a backup
|
---|
[877cc6a] | 105 | # of their bash init files is made.
|
---|
| 106 | (
|
---|
| 107 | cat << EOF
|
---|
| 108 | 020-creatingtoolsdir:
|
---|
| 109 | @\$(call echo_message, Building)
|
---|
[e314f7e] | 110 | @mkdir \$(MOUNT_PT)/tools && \\
|
---|
| 111 | rm -f /tools && \\
|
---|
| 112 | ln -s \$(MOUNT_PT)/tools /
|
---|
[877cc6a] | 113 | @if [ ! -d \$(MOUNT_PT)/sources ]; then \\
|
---|
| 114 | mkdir \$(MOUNT_PT)/sources; \\
|
---|
| 115 | fi;
|
---|
| 116 | @chmod a+wt \$(MOUNT_PT)/sources && \\
|
---|
[93f38e7] | 117 | touch \$@ && \\
|
---|
| 118 | echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
|
---|
| 119 | echo --------------------------------------------------------------------------------\$(WHITE)
|
---|
[877cc6a] | 120 |
|
---|
| 121 | 021-addinguser: 020-creatingtoolsdir
|
---|
| 122 | @\$(call echo_message, Building)
|
---|
[6ad5a2f] | 123 | @if [ ! -d /home/\$(LUSER) ]; then \\
|
---|
| 124 | groupadd \$(LGROUP); \\
|
---|
| 125 | useradd -s /bin/bash -g \$(LGROUP) -m -k /dev/null \$(LUSER); \\
|
---|
[877cc6a] | 126 | else \\
|
---|
[6ad5a2f] | 127 | touch luser-exist; \\
|
---|
[877cc6a] | 128 | fi;
|
---|
[6ad5a2f] | 129 | @chown \$(LUSER) \$(MOUNT_PT)/tools && \\
|
---|
[045b2dc] | 130 | chown -R \$(LUSER) \$(MOUNT_PT)/\$(SCRIPT_ROOT) && \\
|
---|
[6ad5a2f] | 131 | chown \$(LUSER) \$(MOUNT_PT)/sources && \\
|
---|
[93f38e7] | 132 | touch \$@ && \\
|
---|
| 133 | echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
|
---|
| 134 | echo --------------------------------------------------------------------------------\$(WHITE)
|
---|
[877cc6a] | 135 |
|
---|
| 136 | 022-settingenvironment: 021-addinguser
|
---|
| 137 | @\$(call echo_message, Building)
|
---|
[6ad5a2f] | 138 | @if [ -f /home/\$(LUSER)/.bashrc -a ! -f /home/\$(LUSER)/.bashrc.XXX ]; then \\
|
---|
| 139 | mv /home/\$(LUSER)/.bashrc /home/\$(LUSER)/.bashrc.XXX; \\
|
---|
[877cc6a] | 140 | fi;
|
---|
[6ad5a2f] | 141 | @if [ -f /home/\$(LUSER)/.bash_profile -a ! -f /home/\$(LUSER)/.bash_profile.XXX ]; then \\
|
---|
| 142 | mv /home/\$(LUSER)/.bash_profile /home/\$(LUSER)/.bash_profile.XXX; \\
|
---|
[877cc6a] | 143 | fi;
|
---|
[6ad5a2f] | 144 | @echo "set +h" > /home/\$(LUSER)/.bashrc && \\
|
---|
| 145 | echo "umask 022" >> /home/\$(LUSER)/.bashrc && \\
|
---|
| 146 | echo "HLFS=\$(MOUNT_PT)" >> /home/\$(LUSER)/.bashrc && \\
|
---|
| 147 | echo "LC_ALL=POSIX" >> /home/\$(LUSER)/.bashrc && \\
|
---|
| 148 | echo "PATH=/tools/bin:/bin:/usr/bin" >> /home/\$(LUSER)/.bashrc && \\
|
---|
| 149 | echo "export HLFS LC_ALL PATH" >> /home/\$(LUSER)/.bashrc && \\
|
---|
| 150 | echo "" >> /home/\$(LUSER)/.bashrc && \\
|
---|
| 151 | echo "target=$(uname -m)-${TARGET}" >> /home/\$(LUSER)/.bashrc && \\
|
---|
| 152 | echo "ldso=/tools/lib/${LOADER}" >> /home/\$(LUSER)/.bashrc && \\
|
---|
| 153 | echo "export target ldso" >> /home/\$(LUSER)/.bashrc && \\
|
---|
| 154 | echo "source $JHALFSDIR/envars" >> /home/\$(LUSER)/.bashrc && \\
|
---|
| 155 | chown \$(LUSER):\$(LGROUP) /home/\$(LUSER)/.bashrc && \\
|
---|
[045b2dc] | 156 | chmod -R a+wt \$(MOUNT_PT) && \\
|
---|
[877cc6a] | 157 | touch envars && \\
|
---|
[045b2dc] | 158 | chown \$(LUSER) envars && \\
|
---|
[93f38e7] | 159 | touch \$@ && \\
|
---|
| 160 | echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
|
---|
| 161 | echo --------------------------------------------------------------------------------\$(WHITE)
|
---|
[877cc6a] | 162 | EOF
|
---|
| 163 | ) >> $MKFILE.tmp
|
---|
[045b2dc] | 164 | chapter3=" 020-creatingtoolsdir 021-addinguser 022-settingenvironment"
|
---|
[877cc6a] | 165 | }
|
---|
| 166 |
|
---|
| 167 | #----------------------------#
|
---|
| 168 | chapter5_Makefiles() { # Bootstrap or temptools phase
|
---|
| 169 | #----------------------------#
|
---|
| 170 | local file
|
---|
| 171 | local this_script
|
---|
| 172 |
|
---|
[045b2dc] | 173 | echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter5 ( LUSER ) ${R_arrow}"
|
---|
[877cc6a] | 174 |
|
---|
| 175 | for file in chapter05/* ; do
|
---|
| 176 | # Keep the script file name
|
---|
| 177 | this_script=`basename $file`
|
---|
| 178 |
|
---|
| 179 | # Skip this script depending on jhalfs.conf flags set.
|
---|
| 180 | case $this_script in
|
---|
| 181 | # If no testsuites will be run, then TCL, Expect and DejaGNU aren't needed
|
---|
| 182 | *tcl* ) [[ "$TEST" = "0" ]] && continue; ;;
|
---|
| 183 | *expect* ) [[ "$TEST" = "0" ]] && continue; ;;
|
---|
| 184 | *dejagnu* ) [[ "$TEST" = "0" ]] && continue; ;;
|
---|
| 185 | # Nothing interestin in this script
|
---|
| 186 | *introduction* ) continue ;;
|
---|
| 187 | # Test if the stripping phase must be skipped
|
---|
[401f81e] | 188 | *stripping* ) [[ "$STRIP" = "n" ]] && continue ;;
|
---|
[877cc6a] | 189 | *) ;;
|
---|
| 190 | esac
|
---|
| 191 |
|
---|
| 192 | # First append each name of the script files to a list (this will become
|
---|
| 193 | # the names of the targets in the Makefile
|
---|
| 194 | chapter5="$chapter5 $this_script"
|
---|
| 195 |
|
---|
[d81c640] | 196 | # Grab the name of the target
|
---|
| 197 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'`
|
---|
[877cc6a] | 198 |
|
---|
| 199 | # Adjust 'name'
|
---|
| 200 | case $name in
|
---|
[a160d86] | 201 | uclibc) name="uClibc" ;;
|
---|
[877cc6a] | 202 | esac
|
---|
| 203 |
|
---|
| 204 | # Set the dependency for the first target.
|
---|
| 205 | if [ -z $PREV ] ; then PREV=022-settingenvironment ; fi
|
---|
| 206 |
|
---|
| 207 | #--------------------------------------------------------------------#
|
---|
| 208 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 209 | #--------------------------------------------------------------------#
|
---|
| 210 | #
|
---|
| 211 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 212 | # as a dependency. Also call the echo_message function.
|
---|
| 213 |
|
---|
[d81c640] | 214 | # This is a very special script and requires manual processing
|
---|
| 215 | # NO Optimization allowed
|
---|
| 216 | if [[ ${name} = "embryo-toolchain" ]] || \
|
---|
| 217 | [[ ${name} = "cocoon-toolchain" ]]; then
|
---|
[045b2dc] | 218 | LUSER_wrt_target "$this_script" "$PREV"
|
---|
[d81c640] | 219 | process_toolchain "${this_script}" "${file}"
|
---|
| 220 | wrt_touch
|
---|
| 221 | PREV=$this_script
|
---|
| 222 | continue
|
---|
| 223 | fi
|
---|
| 224 | #
|
---|
[045b2dc] | 225 | LUSER_wrt_target "$this_script" "$PREV"
|
---|
[877cc6a] | 226 | # Find the version of the command files, if it corresponds with the building of
|
---|
| 227 | # a specific package
|
---|
[a160d86] | 228 | pkg_tarball=$(get_package_tarball_name $name)
|
---|
| 229 | # If $pkg_tarball isn't empty, we've got a package...
|
---|
| 230 | if [ "$pkg_tarball" != "" ] ; then
|
---|
[1b65a84] | 231 | # Insert instructions for unpacking the package and to set the PKGDIR variable.
|
---|
[045b2dc] | 232 | LUSER_wrt_unpack "$pkg_tarball"
|
---|
[a229600] | 233 | # If using optimizations, write the instructions
|
---|
[1b65a84] | 234 | [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
|
---|
| 235 | fi
|
---|
[877cc6a] | 236 | # Insert date and disk usage at the top of the log file, the script run
|
---|
| 237 | # and date and disk usage again at the bottom of the log file.
|
---|
[045b2dc] | 238 | LUSER_wrt_RunAsUser "${file}"
|
---|
[877cc6a] | 239 |
|
---|
| 240 | # Remove the build directory(ies) except if the package build fails
|
---|
| 241 | # (so we can review config.cache, config.log, etc.)
|
---|
[a160d86] | 242 | if [ "$pkg_tarball" != "" ] ; then
|
---|
[045b2dc] | 243 | LUSER_RemoveBuildDirs "$name"
|
---|
[877cc6a] | 244 | fi
|
---|
| 245 |
|
---|
| 246 | # Include a touch of the target name so make can check if it's already been made.
|
---|
[93f38e7] | 247 | wrt_touch
|
---|
[877cc6a] | 248 | #
|
---|
| 249 | #--------------------------------------------------------------------#
|
---|
| 250 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 251 | #--------------------------------------------------------------------#
|
---|
| 252 |
|
---|
| 253 | # Keep the script file name for Makefile dependencies.
|
---|
| 254 | PREV=$this_script
|
---|
| 255 | done # end for file in chapter05/*
|
---|
| 256 | }
|
---|
| 257 |
|
---|
| 258 |
|
---|
| 259 | #----------------------------#
|
---|
| 260 | chapter6_Makefiles() { # sysroot or chroot build phase
|
---|
| 261 | #----------------------------#
|
---|
| 262 | local file
|
---|
| 263 | local this_script
|
---|
[45f82718] | 264 | # Set envars and scripts for iteration targets
|
---|
| 265 | LOGS="" # Start with an empty global LOGS envar
|
---|
| 266 | if [[ -z "$1" ]] ; then
|
---|
| 267 | local N=""
|
---|
| 268 | else
|
---|
| 269 | local N=-build_$1
|
---|
| 270 | local chapter6=""
|
---|
| 271 | mkdir chapter06$N
|
---|
| 272 | cp chapter06/* chapter06$N
|
---|
| 273 | for script in chapter06$N/* ; do
|
---|
| 274 | # Overwrite existing symlinks, files, and dirs
|
---|
| 275 | sed -e 's/ln -s /ln -sf /g' \
|
---|
| 276 | -e 's/^mv /&-f/g' -i ${script}
|
---|
| 277 | done
|
---|
| 278 | # Remove Bzip2 binaries before make install
|
---|
| 279 | sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i chapter06$N/*-bzip2
|
---|
| 280 | # Fix how Module-Init-Tools do the install target
|
---|
| 281 | sed -e 's@make install@make INSTALL=install install@' -i chapter06$N/*-module-init-tools
|
---|
| 282 | # Delete *old Readline libraries just after make install
|
---|
| 283 | sed -e 's@make install@&\nrm -v /lib/lib{history,readline}*old@' -i chapter06$N/*-readline
|
---|
| 284 | # Don't readd already existing groups
|
---|
| 285 | sed -e '/groupadd/d' -i chapter06$N/*-udev
|
---|
| 286 | fi
|
---|
[877cc6a] | 287 |
|
---|
[045b2dc] | 288 | echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter6$N ( CHROOT ) ${R_arrow}"
|
---|
[877cc6a] | 289 |
|
---|
[45f82718] | 290 | for file in chapter06$N/* ; do
|
---|
[877cc6a] | 291 | # Keep the script file name
|
---|
| 292 | this_script=`basename $file`
|
---|
| 293 |
|
---|
| 294 | # Skip this script depending on jhalfs.conf flags set.
|
---|
| 295 | case $this_script in
|
---|
| 296 | # We'll run the chroot commands differently than the others, so skip them in the
|
---|
| 297 | # dependencies and target creation.
|
---|
| 298 | *chroot* ) continue ;;
|
---|
| 299 | # Test if the stripping phase must be skipped
|
---|
[401f81e] | 300 | *-stripping* ) [[ "$STRIP" = "n" ]] && continue ;;
|
---|
[877cc6a] | 301 | esac
|
---|
| 302 |
|
---|
| 303 | # Grab the name of the target
|
---|
| 304 | name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'`
|
---|
| 305 |
|
---|
[a160d86] | 306 | case $name in
|
---|
| 307 | uclibc) name="uClibc" ;;
|
---|
| 308 | esac
|
---|
| 309 |
|
---|
[45f82718] | 310 | # Find the version of the command files, if it corresponds with the building of
|
---|
| 311 | # a specific package
|
---|
[a160d86] | 312 | pkg_tarball=$(get_package_tarball_name $name)
|
---|
[45f82718] | 313 |
|
---|
[a160d86] | 314 | if [[ "$pkg_tarball" = "" ]] && [[ -n "$N" ]] ; then
|
---|
[45f82718] | 315 | case "${this_script}" in
|
---|
| 316 | *stripping*) ;;
|
---|
| 317 | *) continue ;;
|
---|
| 318 | esac
|
---|
| 319 | fi
|
---|
| 320 |
|
---|
| 321 | # Append each name of the script files to a list (this will become
|
---|
| 322 | # the names of the targets in the Makefile
|
---|
| 323 | chapter6="$chapter6 ${this_script}${N}"
|
---|
| 324 |
|
---|
| 325 | # Append each name of the script files to a list (this will become
|
---|
| 326 | # the names of the logs to be moved for each iteration)
|
---|
| 327 | LOGS="$LOGS ${this_script}"
|
---|
| 328 |
|
---|
[877cc6a] | 329 |
|
---|
| 330 | #--------------------------------------------------------------------#
|
---|
| 331 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 332 | #--------------------------------------------------------------------#
|
---|
| 333 | #
|
---|
| 334 | # Drop in the name of the target on a new line, and the previous target
|
---|
[d81c640] | 335 | # as a dependency. Also call the echo_message function.
|
---|
| 336 | if [[ ${name} = "butterfly-toolchain" ]]; then
|
---|
[045b2dc] | 337 | CHROOT_wrt_target "${this_script}${N}" "$PREV"
|
---|
[d81c640] | 338 | process_toolchain "${this_script}" "${file}"
|
---|
| 339 | wrt_touch
|
---|
| 340 | PREV=$this_script
|
---|
| 341 | continue
|
---|
| 342 | fi
|
---|
| 343 |
|
---|
[045b2dc] | 344 | CHROOT_wrt_target "${this_script}${N}" "$PREV"
|
---|
[877cc6a] | 345 |
|
---|
[a160d86] | 346 | # If $pkg_tarball isn't empty, we've got a package...
|
---|
[877cc6a] | 347 | # Insert instructions for unpacking the package and changing directories
|
---|
[a160d86] | 348 | if [ "$pkg_tarball" != "" ] ; then
|
---|
[045b2dc] | 349 | CHROOT_Unpack "$pkg_tarball"
|
---|
[a229600] | 350 | # If the testsuites must be run, initialize the log file
|
---|
[7613d3c] | 351 | # butterfly-toolchain tests are enabled in 'process_tookchain' function
|
---|
[a229600] | 352 | case $name in
|
---|
[045b2dc] | 353 | glibc ) [[ "$TEST" != "0" ]] && CHROOT_wrt_test_log "${this_script}"
|
---|
[a229600] | 354 | ;;
|
---|
[045b2dc] | 355 | * ) [[ "$TEST" > "1" ]] && CHROOT_wrt_test_log "${this_script}"
|
---|
[a229600] | 356 | ;;
|
---|
| 357 | esac
|
---|
| 358 | # If using optimizations, write the instructions
|
---|
[1b65a84] | 359 | [[ "$OPTIMIZE" != "0" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
|
---|
[877cc6a] | 360 | fi
|
---|
| 361 |
|
---|
[d81c640] | 362 | # In the mount of kernel filesystems we need to set HLFS and not to use chroot.
|
---|
[877cc6a] | 363 | case "${this_script}" in
|
---|
[045b2dc] | 364 | *kernfs* | *changingowner*)
|
---|
[8f2c086] | 365 | wrt_RunAsRoot "${file}"
|
---|
[877cc6a] | 366 | ;;
|
---|
| 367 | *) # The rest of Chapter06
|
---|
[045b2dc] | 368 | CHROOT_wrt_RunAsRoot "${file}"
|
---|
[877cc6a] | 369 | ;;
|
---|
| 370 | esac
|
---|
| 371 | #
|
---|
| 372 | # Remove the build directory(ies) except if the package build fails.
|
---|
[a160d86] | 373 | if [ "$pkg_tarball" != "" ] ; then
|
---|
[045b2dc] | 374 | CHROOT_wrt_RemoveBuildDirs "$name"
|
---|
[877cc6a] | 375 | fi
|
---|
| 376 | #
|
---|
| 377 | # Include a touch of the target name so make can check if it's already been made.
|
---|
[93f38e7] | 378 | wrt_touch
|
---|
[877cc6a] | 379 | #
|
---|
| 380 | #--------------------------------------------------------------------#
|
---|
| 381 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 382 | #--------------------------------------------------------------------#
|
---|
| 383 |
|
---|
| 384 | # Keep the script file name for Makefile dependencies.
|
---|
[45f82718] | 385 | PREV=${this_script}${N}
|
---|
| 386 | # Set system_build envar for iteration targets
|
---|
| 387 | system_build=$chapter6
|
---|
[877cc6a] | 388 | done # end for file in chapter06/*
|
---|
| 389 |
|
---|
| 390 | }
|
---|
| 391 |
|
---|
| 392 | #----------------------------#
|
---|
| 393 | chapter7_Makefiles() { # Create a bootable system.. kernel, bootscripts..etc
|
---|
| 394 | #----------------------------#
|
---|
| 395 | local file
|
---|
| 396 | local this_script
|
---|
| 397 |
|
---|
[045b2dc] | 398 | echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter7 ( BOOT ) ${R_arrow}"
|
---|
[877cc6a] | 399 | for file in chapter07/*; do
|
---|
| 400 | # Keep the script file name
|
---|
| 401 | this_script=`basename $file`
|
---|
| 402 |
|
---|
| 403 | # Grub must be configured manually.
|
---|
| 404 | # The filesystems can't be unmounted via Makefile and the user
|
---|
| 405 | # should enter the chroot environment to create the root
|
---|
| 406 | # password, edit several files and setup Grub.
|
---|
| 407 | case $this_script in
|
---|
| 408 | *usage) continue ;; # Contains example commands
|
---|
| 409 | *grub) continue ;;
|
---|
| 410 | *console) continue ;; # Use the file generated by lfs-bootscripts
|
---|
[045b2dc] | 411 | *fstab) [[ ! -z ${FSTAB} ]] && cp ${FSTAB} $BUILDDIR/sources/fstab
|
---|
| 412 | ;;
|
---|
| 413 | *kernel) # If no .config file is supplied, the kernel build is skipped
|
---|
| 414 | [[ -z $CONFIG ]] && continue
|
---|
| 415 | cp $CONFIG $BUILDDIR/sources/kernel-config
|
---|
| 416 | ;;
|
---|
[877cc6a] | 417 | esac
|
---|
| 418 |
|
---|
| 419 | # First append then name of the script file to a list (this will become
|
---|
| 420 | # the names of the targets in the Makefile
|
---|
| 421 | chapter7="$chapter7 $this_script"
|
---|
| 422 |
|
---|
| 423 | #--------------------------------------------------------------------#
|
---|
| 424 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 425 | #--------------------------------------------------------------------#
|
---|
| 426 | #
|
---|
| 427 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 428 | # as a dependency. Also call the echo_message function.
|
---|
[045b2dc] | 429 | CHROOT_wrt_target "$this_script" "$PREV"
|
---|
[877cc6a] | 430 |
|
---|
| 431 | case "${this_script}" in
|
---|
| 432 | *bootscripts*)
|
---|
[045b2dc] | 433 | CHROOT_Unpack $(get_package_tarball_name "lfs-bootscripts")
|
---|
[a160d86] | 434 | blfs_bootscripts=$(get_package_tarball_name "blfs-bootscripts" | sed -e 's/.tar.*//' )
|
---|
| 435 | echo -e "\t@echo \"\$(MOUNT_PT)\$(SRC)/$blfs_bootscripts\" >> sources-dir" >> $MKFILE.tmp
|
---|
[877cc6a] | 436 | ;;
|
---|
| 437 | esac
|
---|
| 438 |
|
---|
| 439 | case "${this_script}" in
|
---|
| 440 | *fstab*) # Check if we have a real /etc/fstab file
|
---|
| 441 | if [[ -n "$FSTAB" ]] ; then
|
---|
[045b2dc] | 442 | CHROOT_wrt_CopyFstab
|
---|
| 443 | else
|
---|
| 444 | CHROOT_wrt_RunAsRoot "$file"
|
---|
[877cc6a] | 445 | fi
|
---|
| 446 | ;;
|
---|
| 447 | *) # All other scripts
|
---|
[045b2dc] | 448 | CHROOT_wrt_RunAsRoot "${file}"
|
---|
[877cc6a] | 449 | ;;
|
---|
| 450 | esac
|
---|
| 451 |
|
---|
| 452 | # Remove the build directory except if the package build fails.
|
---|
| 453 | case "${this_script}" in
|
---|
| 454 | *bootscripts*)
|
---|
| 455 | (
|
---|
| 456 | cat << EOF
|
---|
[045b2dc] | 457 | @ROOT=\`head -n1 \$(SRC)/\$(PKG_LST) | sed 's@^./@@;s@/.*@@'\` && \\
|
---|
| 458 | rm -r \$(SRC)/\$\$ROOT
|
---|
[877cc6a] | 459 | @rm -r \`cat sources-dir\` && \\
|
---|
| 460 | rm sources-dir
|
---|
| 461 | EOF
|
---|
| 462 | ) >> $MKFILE.tmp
|
---|
| 463 | ;;
|
---|
| 464 | esac
|
---|
| 465 |
|
---|
| 466 | # Include a touch of the target name so make can check if it's already been made.
|
---|
[93f38e7] | 467 | wrt_touch
|
---|
[877cc6a] | 468 | #
|
---|
| 469 | #--------------------------------------------------------------------#
|
---|
| 470 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 471 | #--------------------------------------------------------------------#
|
---|
| 472 |
|
---|
| 473 | # Keep the script file name for Makefile dependencies.
|
---|
| 474 | PREV=$this_script
|
---|
| 475 | done # for file in chapter07/*
|
---|
| 476 | }
|
---|
| 477 |
|
---|
| 478 |
|
---|
| 479 | #----------------------------#
|
---|
| 480 | build_Makefile() { # Construct a Makefile from the book scripts
|
---|
| 481 | #----------------------------#
|
---|
[c7c5a53] | 482 | echo "Creating Makefile... ${BOLD}START${OFF}"
|
---|
[877cc6a] | 483 |
|
---|
| 484 | cd $JHALFSDIR/${PROGNAME}-commands
|
---|
| 485 | # Start with a clean Makefile.tmp file
|
---|
| 486 | >$MKFILE.tmp
|
---|
| 487 |
|
---|
| 488 | chapter3_Makefiles
|
---|
| 489 | chapter5_Makefiles
|
---|
| 490 | chapter6_Makefiles
|
---|
[45f82718] | 491 | # Add the iterations targets, if needed
|
---|
[401f81e] | 492 | [[ "$COMPARE" = "y" ]] && wrt_compare_targets
|
---|
[877cc6a] | 493 | chapter7_Makefiles
|
---|
| 494 |
|
---|
| 495 | # Add a header, some variables and include the function file
|
---|
| 496 | # to the top of the real Makefile.
|
---|
[195ed9f] | 497 | wrt_Makefile_header
|
---|
[877cc6a] | 498 |
|
---|
| 499 | # Add chroot commands
|
---|
[6ad5a2f] | 500 | CHROOT_LOC="`whereis -b chroot | cut -d " " -f2`"
|
---|
[877cc6a] | 501 | i=1
|
---|
| 502 | for file in chapter06/*chroot* ; do
|
---|
[6ad5a2f] | 503 | chroot=`cat $file | \
|
---|
| 504 | sed -e "s@chroot@$CHROOT_LOC@" \
|
---|
[d3802b1] | 505 | -e '/#!\/bin\/bash/d' \
|
---|
[6ad5a2f] | 506 | -e '/^export/d' \
|
---|
| 507 | -e '/^logout/d' \
|
---|
| 508 | -e 's@ \\\@ @g' | \
|
---|
| 509 | tr -d '\n' | \
|
---|
| 510 | sed -e 's/ */ /g' \
|
---|
| 511 | -e 's|\\$|&&|g' \
|
---|
| 512 | -e 's|exit||g' \
|
---|
| 513 | -e 's|$| -c|' \
|
---|
| 514 | -e 's|"$$HLFS"|$(MOUNT_PT)|'\
|
---|
| 515 | -e 's|set -e||'`
|
---|
[877cc6a] | 516 | echo -e "CHROOT$i= $chroot\n" >> $MKFILE
|
---|
| 517 | i=`expr $i + 1`
|
---|
| 518 | done
|
---|
| 519 |
|
---|
| 520 | # Drop in the main target 'all:' and the chapter targets with each sub-target
|
---|
| 521 | # as a dependency.
|
---|
| 522 | (
|
---|
| 523 | cat << EOF
|
---|
[045b2dc] | 524 |
|
---|
[1838bc7] | 525 | all: ck_UID mk_SETUP mk_LUSER mk_SUDO mk_CHROOT mk_BOOT create-sbu_du-report mk_BLFS_TOOL
|
---|
[045b2dc] | 526 | @sudo make do-housekeeping
|
---|
[877cc6a] | 527 | @\$(call echo_finished,$VERSION)
|
---|
| 528 |
|
---|
[045b2dc] | 529 | ck_UID:
|
---|
| 530 | @if [ \`id -u\` = "0" ]; then \\
|
---|
| 531 | echo "--------------------------------------------------"; \\
|
---|
| 532 | echo "You cannot run this makefile from the root account"; \\
|
---|
| 533 | echo "--------------------------------------------------"; \\
|
---|
| 534 | exit 1; \\
|
---|
| 535 | fi
|
---|
| 536 |
|
---|
| 537 | mk_SETUP:
|
---|
| 538 | @\$(call echo_SU_request)
|
---|
[a2133cb] | 539 | @sudo make SHELL=/bin/bash SETUP
|
---|
[045b2dc] | 540 | @touch \$@
|
---|
| 541 |
|
---|
| 542 | mk_LUSER: mk_SETUP
|
---|
| 543 | @\$(call echo_SULUSER_request)
|
---|
[a2133cb] | 544 | @(sudo \$(SU_LUSER) "source .bashrc && cd \$(MOUNT_PT)/\$(SCRIPT_ROOT) && make SHELL=/bin/bash LUSER" )
|
---|
[045b2dc] | 545 | @sudo make restore-luser-env
|
---|
| 546 | @touch \$@
|
---|
| 547 |
|
---|
| 548 | mk_SUDO: mk_LUSER
|
---|
[a2133cb] | 549 | @sudo make SHELL=/bin/bash SUDO
|
---|
[045b2dc] | 550 | @touch \$@
|
---|
| 551 |
|
---|
| 552 | mk_CHROOT: mk_SUDO
|
---|
| 553 | @if [ ! -e \$(MOUNT_PT)/bin ]; then \\
|
---|
| 554 | mkdir \$(MOUNT_PT)/bin; \\
|
---|
| 555 | cd \$(MOUNT_PT)/bin && \\
|
---|
| 556 | ln -sf /tools/bin/bash bash; ln -sf bash sh; \\
|
---|
| 557 | sudo chown -R 0:0 \$(MOUNT_PT)/bin; \\
|
---|
| 558 | fi;
|
---|
| 559 | @sudo sed -e 's|^ln -sv |ln -svf |' -i \$(CMDSDIR)/chapter06/064-createfiles
|
---|
| 560 | @\$(call echo_CHROOT_request)
|
---|
| 561 | @( sudo \$(CHROOT1) "cd \$(SCRIPT_ROOT) && make CHROOT")
|
---|
| 562 | @touch \$@
|
---|
[877cc6a] | 563 |
|
---|
[045b2dc] | 564 | mk_BOOT: mk_CHROOT
|
---|
| 565 | @\$(call echo_CHROOT_request)
|
---|
| 566 | @( sudo \$(CHROOT2) "cd \$(SCRIPT_ROOT) && make BOOT")
|
---|
| 567 | @touch \$@
|
---|
[877cc6a] | 568 |
|
---|
[1838bc7] | 569 | mk_BLFS_TOOL: create-sbu_du-report
|
---|
| 570 | @\$(call echo_PHASE,Building BLFS-TOOLS)
|
---|
| 571 | @if [ "\$(ADD_BLFS_TOOLS)" = "y" ]; then \\
|
---|
| 572 | sudo mkdir -p $BUILDDIR$TRACKING_DIR; \\
|
---|
| 573 | sudo \$(CHROOT2) "cd \$(SCRIPT_ROOT) && make BLFS_TOOL"; \\
|
---|
| 574 | fi;
|
---|
| 575 | @touch \$@
|
---|
[877cc6a] | 576 |
|
---|
| 577 |
|
---|
[1838bc7] | 578 | SETUP: $chapter3
|
---|
| 579 | LUSER: $chapter5
|
---|
| 580 | SUDO: 060-kernfs 062-changingowner
|
---|
| 581 | CHROOT: $chapter6
|
---|
| 582 | BOOT: $chapter7
|
---|
| 583 | BLFS_TOOL: $blfs_tool
|
---|
[a160d86] | 584 |
|
---|
[045b2dc] | 585 |
|
---|
[1838bc7] | 586 | create-sbu_du-report: mk_BOOT
|
---|
| 587 | @\$(call echo_message, Building)
|
---|
| 588 | @if [ "\$(ADD_REPORT)" = "y" ]; then \\
|
---|
| 589 | ./create-sbu_du-report.sh logs $VERSION; \\
|
---|
| 590 | \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
|
---|
| 591 | fi;
|
---|
| 592 | @touch \$@
|
---|
[045b2dc] | 593 |
|
---|
[6ad5a2f] | 594 | restore-luser-env:
|
---|
[877cc6a] | 595 | @\$(call echo_message, Building)
|
---|
[6ad5a2f] | 596 | @if [ -f /home/\$(LUSER)/.bashrc.XXX ]; then \\
|
---|
| 597 | mv -f /home/\$(LUSER)/.bashrc.XXX /home/\$(LUSER)/.bashrc; \\
|
---|
[877cc6a] | 598 | fi;
|
---|
[6ad5a2f] | 599 | @if [ -f /home/\$(LUSER)/.bash_profile.XXX ]; then \\
|
---|
| 600 | mv /home/\$(LUSER)/.bash_profile.XXX /home/\$(LUSER)/.bash_profile; \\
|
---|
[877cc6a] | 601 | fi;
|
---|
[6ad5a2f] | 602 | @chown \$(LUSER):\$(LGROUP) /home/\$(LUSER)/.bash* && \\
|
---|
[93f38e7] | 603 | touch \$@ && \\
|
---|
| 604 | echo " "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
|
---|
| 605 | echo --------------------------------------------------------------------------------\$(WHITE)
|
---|
[877cc6a] | 606 |
|
---|
[7d9a82d] | 607 | do-housekeeping:
|
---|
[4524fb2] | 608 | @-umount \$(MOUNT_PT)/dev/pts
|
---|
| 609 | @-umount \$(MOUNT_PT)/dev/shm
|
---|
| 610 | @-umount \$(MOUNT_PT)/dev
|
---|
| 611 | @-umount \$(MOUNT_PT)/sys
|
---|
| 612 | @-umount \$(MOUNT_PT)/proc
|
---|
[045b2dc] | 613 | @-rm /tools
|
---|
[6ad5a2f] | 614 | @-if [ ! -f luser-exist ]; then \\
|
---|
| 615 | userdel \$(LUSER); \\
|
---|
| 616 | rm -rf /home/\$(LUSER); \\
|
---|
[7d9a82d] | 617 | fi;
|
---|
[a858a78] | 618 |
|
---|
[a160d86] | 619 |
|
---|
| 620 |
|
---|
[877cc6a] | 621 | EOF
|
---|
| 622 | ) >> $MKFILE
|
---|
| 623 |
|
---|
| 624 | # Bring over the items from the Makefile.tmp
|
---|
| 625 | cat $MKFILE.tmp >> $MKFILE
|
---|
| 626 | rm $MKFILE.tmp
|
---|
[c7c5a53] | 627 | echo "Creating Makefile... ${BOLD}DONE${OFF}"
|
---|
| 628 |
|
---|
[877cc6a] | 629 | }
|
---|