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