[91ff6a9] | 1 | #!/bin/bash
|
---|
[877cc6a] | 2 |
|
---|
| 3 | # $Id$
|
---|
| 4 |
|
---|
| 5 | ###################################
|
---|
| 6 | ### FUNCTIONS ###
|
---|
| 7 | ###################################
|
---|
| 8 |
|
---|
| 9 |
|
---|
[045b2dc] | 10 | #############################################################
|
---|
| 11 |
|
---|
| 12 |
|
---|
[877cc6a] | 13 | #----------------------------#
|
---|
[045b2dc] | 14 | chapter4_Makefiles() { #
|
---|
[877cc6a] | 15 | #----------------------------#
|
---|
[045b2dc] | 16 | echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter4 ( SETUP ) ${R_arrow}"
|
---|
[877cc6a] | 17 |
|
---|
[962793a] | 18 | # If $LUSER_HOME is already present in the host, we asume that the
|
---|
[877cc6a] | 19 | # lfs user and group are also presents in the host, and a backup
|
---|
| 20 | # of their bash init files is made.
|
---|
| 21 | (
|
---|
| 22 | cat << EOF
|
---|
| 23 | 020-creatingtoolsdir:
|
---|
| 24 | @\$(call echo_message, Building)
|
---|
[cee9568] | 25 | @mkdir \$(MOUNT_PT)/tools && \\
|
---|
| 26 | rm -f /tools && \\
|
---|
[dbcdfd7] | 27 | ln -s \$(MOUNT_PT)/tools /
|
---|
| 28 | @\$(call housekeeping)
|
---|
[877cc6a] | 29 |
|
---|
| 30 | 021-addinguser: 020-creatingtoolsdir
|
---|
| 31 | @\$(call echo_message, Building)
|
---|
[1849935] | 32 | @-if [ ! -d \$(LUSER_HOME) ]; then \\
|
---|
[6ad5a2f] | 33 | groupadd \$(LGROUP); \\
|
---|
| 34 | useradd -s /bin/bash -g \$(LGROUP) -m -k /dev/null \$(LUSER); \\
|
---|
[877cc6a] | 35 | else \\
|
---|
[6ad5a2f] | 36 | touch luser-exist; \\
|
---|
[877cc6a] | 37 | fi;
|
---|
[6ad5a2f] | 38 | @chown \$(LUSER) \$(MOUNT_PT)/tools && \\
|
---|
[ac35c8e] | 39 | chmod -R a+wt \$(MOUNT_PT)/\$(SCRIPT_ROOT) && \\
|
---|
[dbcdfd7] | 40 | chmod a+wt \$(SRCSDIR)
|
---|
| 41 | @\$(call housekeeping)
|
---|
[877cc6a] | 42 |
|
---|
| 43 | 022-settingenvironment: 021-addinguser
|
---|
| 44 | @\$(call echo_message, Building)
|
---|
[962793a] | 45 | @if [ -f \$(LUSER_HOME)/.bashrc -a ! -f \$(LUSER_HOME)/.bashrc.XXX ]; then \\
|
---|
| 46 | mv \$(LUSER_HOME)/.bashrc \$(LUSER_HOME)/.bashrc.XXX; \\
|
---|
[877cc6a] | 47 | fi;
|
---|
[962793a] | 48 | @if [ -f \$(LUSER_HOME)/.bash_profile -a ! -f \$(LUSER_HOME)/.bash_profile.XXX ]; then \\
|
---|
| 49 | mv \$(LUSER_HOME)/.bash_profile \$(LUSER_HOME)/.bash_profile.XXX; \\
|
---|
[877cc6a] | 50 | fi;
|
---|
[962793a] | 51 | @echo "set +h" > \$(LUSER_HOME)/.bashrc && \\
|
---|
| 52 | echo "umask 022" >> \$(LUSER_HOME)/.bashrc && \\
|
---|
| 53 | echo "LFS=\$(MOUNT_PT)" >> \$(LUSER_HOME)/.bashrc && \\
|
---|
| 54 | echo "LC_ALL=POSIX" >> \$(LUSER_HOME)/.bashrc && \\
|
---|
[0850553] | 55 | echo "LFS_TGT=`uname -m`-lfs-linux-gnu" >> \$(LUSER_HOME)/.bashrc && \\
|
---|
[962793a] | 56 | echo "PATH=/tools/bin:/bin:/usr/bin" >> \$(LUSER_HOME)/.bashrc && \\
|
---|
[0850553] | 57 | echo "export LFS LC_ALL LFS_TGT PATH" >> \$(LUSER_HOME)/.bashrc && \\
|
---|
[962793a] | 58 | echo "source $JHALFSDIR/envars" >> \$(LUSER_HOME)/.bashrc && \\
|
---|
| 59 | chown \$(LUSER):\$(LGROUP) \$(LUSER_HOME)/.bashrc && \\
|
---|
[877cc6a] | 60 | touch envars && \\
|
---|
[dbcdfd7] | 61 | chown \$(LUSER) envars
|
---|
| 62 | @\$(call housekeeping)
|
---|
[877cc6a] | 63 | EOF
|
---|
[045b2dc] | 64 | ) > $MKFILE.tmp
|
---|
| 65 |
|
---|
| 66 | chapter4=" 020-creatingtoolsdir 021-addinguser 022-settingenvironment"
|
---|
[877cc6a] | 67 | }
|
---|
| 68 |
|
---|
[045b2dc] | 69 |
|
---|
| 70 |
|
---|
[877cc6a] | 71 | #----------------------------#
|
---|
| 72 | chapter5_Makefiles() {
|
---|
| 73 | #----------------------------#
|
---|
[045b2dc] | 74 | echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter5 ( LUSER ) ${R_arrow}"
|
---|
[877cc6a] | 75 |
|
---|
| 76 | for file in chapter05/* ; do
|
---|
| 77 | # Keep the script file name
|
---|
| 78 | this_script=`basename $file`
|
---|
| 79 |
|
---|
[7831c79] | 80 | # If no testsuites are run, then TCL, Expect, DejaGNU and Check
|
---|
[de84c00] | 81 | # aren't needed (but building them does not hurt).
|
---|
[a241c33] | 82 | # Fix also locales creation when running chapter05 testsuites (ugly)
|
---|
[877cc6a] | 83 | case "${this_script}" in
|
---|
[de84c00] | 84 | # *tcl) [[ "${TEST}" = "0" ]] && continue ;;
|
---|
| 85 | # *expect) [[ "${TEST}" = "0" ]] && continue ;;
|
---|
| 86 | # *dejagnu) [[ "${TEST}" = "0" ]] && continue ;;
|
---|
| 87 | # *check) [[ "${TEST}" = "0" ]] && continue ;;
|
---|
[401f81e] | 88 | *stripping) [[ "${STRIP}" = "n" ]] && continue ;;
|
---|
[a241c33] | 89 | *glibc) [[ "${TEST}" = "3" ]] && \
|
---|
[d46a46e] | 90 | sed -i 's@/usr/lib/locale@/tools/lib/locale@' $file ;;
|
---|
[877cc6a] | 91 | esac
|
---|
| 92 |
|
---|
| 93 | # First append each name of the script files to a list (this will become
|
---|
| 94 | # the names of the targets in the Makefile
|
---|
[4eba1ea] | 95 | # DO NOT append the changingowner script, it need be run as root.
|
---|
[045b2dc] | 96 | # A hack is necessary: create script in chap5 BUT run as a dependency for
|
---|
[4eba1ea] | 97 | # SUDO target
|
---|
[045b2dc] | 98 | case "${this_script}" in
|
---|
[4eba1ea] | 99 | *changingowner) runasroot="$runasroot ${this_script}" ;;
|
---|
[045b2dc] | 100 | *) chapter5="$chapter5 ${this_script}" ;;
|
---|
| 101 | esac
|
---|
[877cc6a] | 102 |
|
---|
| 103 | # Grab the name of the target (minus the -pass1 or -pass2 in the case of gcc
|
---|
| 104 | # and binutils in chapter 5)
|
---|
[1849935] | 105 | name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@' \
|
---|
| 106 | -e 's@-pass[0-9]\{1\}@@' \
|
---|
| 107 | -e 's@-libstdc++@@'`
|
---|
[877cc6a] | 108 |
|
---|
| 109 | # Set the dependency for the first target.
|
---|
| 110 | if [ -z $PREV ] ; then PREV=022-settingenvironment ; fi
|
---|
| 111 |
|
---|
| 112 | #--------------------------------------------------------------------#
|
---|
| 113 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 114 | #--------------------------------------------------------------------#
|
---|
| 115 | #
|
---|
[3cb4ef5b] | 116 | # Find the name of the tarball and the version of the package
|
---|
| 117 | pkg_tarball=$(get_package_tarball_name $name)
|
---|
| 118 | pkg_version=$(get_package_version $pkg_tarball)
|
---|
| 119 |
|
---|
[877cc6a] | 120 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 121 | # as a dependency. Also call the echo_message function.
|
---|
[3cb4ef5b] | 122 | LUSER_wrt_target "${this_script}" "$PREV" "$pkg_version"
|
---|
[b7faa5a] | 123 |
|
---|
[a160d86] | 124 | # If $pkg_tarball isn't empty, we've got a package...
|
---|
| 125 | if [ "$pkg_tarball" != "" ] ; then
|
---|
[877cc6a] | 126 | # Insert instructions for unpacking the package and to set the PKGDIR variable.
|
---|
[045b2dc] | 127 | LUSER_wrt_unpack "$pkg_tarball"
|
---|
[a229600] | 128 | # If the testsuites must be run, initialize the log file
|
---|
[3cb4ef5b] | 129 | [[ "$TEST" = "3" ]] && LUSER_wrt_test_log "${this_script}" "$pkg_version"
|
---|
[a229600] | 130 | # If using optimizations, write the instructions
|
---|
[1b65a84] | 131 | [[ "$OPTIMIZE" = "2" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
|
---|
[877cc6a] | 132 | fi
|
---|
| 133 |
|
---|
| 134 | # Insert date and disk usage at the top of the log file, the script run
|
---|
| 135 | # and date and disk usage again at the bottom of the log file.
|
---|
[a241c33] | 136 | # The changingowner script must be run as root.
|
---|
| 137 | case "${this_script}" in
|
---|
[3cb4ef5b] | 138 | *changingowner) wrt_RunAsRoot "$file" "$pkg_version" ;;
|
---|
| 139 | *) LUSER_wrt_RunAsUser "$file" "$pkg_version" ;;
|
---|
[a241c33] | 140 | esac
|
---|
[877cc6a] | 141 |
|
---|
| 142 | # Remove the build directory(ies) except if the package build fails
|
---|
| 143 | # (so we can review config.cache, config.log, etc.)
|
---|
[a160d86] | 144 | if [ "$pkg_tarball" != "" ] ; then
|
---|
[4b54394] | 145 | case "${name}" in
|
---|
| 146 | *xz-utils) LUSER_RemoveBuildDirs "xz" ;;
|
---|
| 147 | *) LUSER_RemoveBuildDirs "$name" ;;
|
---|
| 148 | esac
|
---|
[877cc6a] | 149 | fi
|
---|
| 150 |
|
---|
| 151 | # Include a touch of the target name so make can check
|
---|
| 152 | # if it's already been made.
|
---|
[e2ef100] | 153 | wrt_touch
|
---|
[877cc6a] | 154 | #
|
---|
| 155 | #--------------------------------------------------------------------#
|
---|
| 156 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 157 | #--------------------------------------------------------------------#
|
---|
| 158 |
|
---|
| 159 | # Keep the script file name for Makefile dependencies.
|
---|
| 160 | PREV=${this_script}
|
---|
| 161 | done # end for file in chapter05/*
|
---|
| 162 | }
|
---|
| 163 |
|
---|
[045b2dc] | 164 |
|
---|
[877cc6a] | 165 | #----------------------------#
|
---|
| 166 | chapter6_Makefiles() {
|
---|
| 167 | #----------------------------#
|
---|
[045b2dc] | 168 |
|
---|
[45f82718] | 169 | # Set envars and scripts for iteration targets
|
---|
| 170 | if [[ -z "$1" ]] ; then
|
---|
| 171 | local N=""
|
---|
| 172 | else
|
---|
| 173 | local N=-build_$1
|
---|
| 174 | local chapter6=""
|
---|
| 175 | mkdir chapter06$N
|
---|
| 176 | cp chapter06/* chapter06$N
|
---|
| 177 | for script in chapter06$N/* ; do
|
---|
| 178 | # Overwrite existing symlinks, files, and dirs
|
---|
[93fd2d0] | 179 | sed -e 's/ln *-sv/&f/g' \
|
---|
| 180 | -e 's/mv *-v/&f/g' \
|
---|
| 181 | -e 's/mkdir *-v/&p/g' -i ${script}
|
---|
| 182 | # Suppress the mod of "test-installation.pl" because now
|
---|
| 183 | # the library path points to /usr/lib
|
---|
| 184 | if [[ ${script} =~ glibc ]]; then
|
---|
| 185 | sed '/DL=/,/unset DL/d' -i ${script}
|
---|
| 186 | fi
|
---|
[10c8b78] | 187 | # Rename the scripts
|
---|
| 188 | mv ${script} ${script}$N
|
---|
[45f82718] | 189 | done
|
---|
[a5f52ba] | 190 | # Remove Bzip2 binaries before make install (LFS-6.2 compatibility)
|
---|
| 191 | sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i chapter06$N/*-bzip2$N
|
---|
[45f82718] | 192 | fi
|
---|
| 193 |
|
---|
[045b2dc] | 194 | echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter6$N ( CHROOT ) ${R_arrow}"
|
---|
[45f82718] | 195 |
|
---|
| 196 | for file in chapter06$N/* ; do
|
---|
[877cc6a] | 197 | # Keep the script file name
|
---|
| 198 | this_script=`basename $file`
|
---|
| 199 |
|
---|
| 200 | # We'll run the chroot commands differently than the others, so skip them in the
|
---|
| 201 | # dependencies and target creation.
|
---|
[8426d1f] | 202 | # Skip also linux-headers in iterative builds.
|
---|
[877cc6a] | 203 | case "${this_script}" in
|
---|
| 204 | *chroot) continue ;;
|
---|
[401f81e] | 205 | *stripping*) [[ "${STRIP}" = "n" ]] && continue ;;
|
---|
[8426d1f] | 206 | *linux-headers*) [[ -n "$N" ]] && continue ;;
|
---|
[877cc6a] | 207 | esac
|
---|
| 208 |
|
---|
[4eba1ea] | 209 | # Grab the name of the target.
|
---|
[10c8b78] | 210 | name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@' -e 's,'$N',,'`
|
---|
[877cc6a] | 211 |
|
---|
[45f82718] | 212 | # Find the version of the command files, if it corresponds with the building of
|
---|
| 213 | # a specific package. We need this here to can skip scripts not needed for
|
---|
| 214 | # iterations rebuilds
|
---|
[a160d86] | 215 | pkg_tarball=$(get_package_tarball_name $name)
|
---|
[3cb4ef5b] | 216 | pkg_version=$(get_package_version $pkg_tarball)
|
---|
[45f82718] | 217 |
|
---|
[a160d86] | 218 | if [[ "$pkg_tarball" = "" ]] && [[ -n "$N" ]] ; then
|
---|
[45f82718] | 219 | case "${this_script}" in
|
---|
| 220 | *stripping*) ;;
|
---|
| 221 | *) continue ;;
|
---|
| 222 | esac
|
---|
| 223 | fi
|
---|
| 224 |
|
---|
| 225 | # Append each name of the script files to a list (this will become
|
---|
| 226 | # the names of the targets in the Makefile)
|
---|
[4eba1ea] | 227 | # The kernfs script must be run as part of SUDO target.
|
---|
| 228 | case "${this_script}" in
|
---|
| 229 | *kernfs) runasroot="$runasroot ${this_script}" ;;
|
---|
[10c8b78] | 230 | *) chapter6="$chapter6 ${this_script}" ;;
|
---|
[4eba1ea] | 231 | esac
|
---|
[45f82718] | 232 |
|
---|
[877cc6a] | 233 | #--------------------------------------------------------------------#
|
---|
| 234 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 235 | #--------------------------------------------------------------------#
|
---|
| 236 | #
|
---|
| 237 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 238 | # as a dependency. Also call the echo_message function.
|
---|
[8bea2c8] | 239 | # In the mount of kernel filesystems we need to set LFS
|
---|
| 240 | # and not to use chroot.
|
---|
| 241 | case "${this_script}" in
|
---|
[3cb4ef5b] | 242 | *kernfs) LUSER_wrt_target "${this_script}" "$PREV" "$pkg_version" ;;
|
---|
| 243 | *) CHROOT_wrt_target "${this_script}" "$PREV" "$pkg_version" ;;
|
---|
[8bea2c8] | 244 | esac
|
---|
[877cc6a] | 245 |
|
---|
[a160d86] | 246 | # If $pkg_tarball isn't empty, we've got a package...
|
---|
[877cc6a] | 247 | # Insert instructions for unpacking the package and changing directories
|
---|
[a160d86] | 248 | if [ "$pkg_tarball" != "" ] ; then
|
---|
[38d2de6] | 249 | # Touch timestamp file if installed files logs will be created.
|
---|
[81fca31] | 250 | # But only for the firt build when running iterative builds.
|
---|
| 251 | if [ "${INSTALL_LOG}" = "y" ] && [ "x${N}" = "x" ] ; then
|
---|
[93346ee] | 252 | CHROOT_wrt_TouchTimestamp
|
---|
| 253 | fi
|
---|
[045b2dc] | 254 | CHROOT_Unpack "$pkg_tarball"
|
---|
[a229600] | 255 | # If the testsuites must be run, initialize the log file
|
---|
| 256 | case $name in
|
---|
[7072e1f] | 257 | binutils | gcc | glibc | gmp | mpfr )
|
---|
[3cb4ef5b] | 258 | [[ "$TEST" != "0" ]] && CHROOT_wrt_test_log "${this_script}" "$pkg_version"
|
---|
[a229600] | 259 | ;;
|
---|
| 260 | * )
|
---|
[3cb4ef5b] | 261 | [[ "$TEST" = "2" ]] || [[ "$TEST" = "3" ]] && CHROOT_wrt_test_log "${this_script}" "$pkg_version"
|
---|
[a229600] | 262 | ;;
|
---|
| 263 | esac
|
---|
| 264 | # If using optimizations, write the instructions
|
---|
[1b65a84] | 265 | [[ "$OPTIMIZE" != "0" ]] && wrt_optimize "$name" && wrt_makeflags "$name"
|
---|
[877cc6a] | 266 | fi
|
---|
| 267 |
|
---|
| 268 | # In the mount of kernel filesystems we need to set LFS
|
---|
| 269 | # and not to use chroot.
|
---|
| 270 | case "${this_script}" in
|
---|
[3cb4ef5b] | 271 | *kernfs) wrt_RunAsRoot "$file" "$pkg_version" ;;
|
---|
| 272 | *) CHROOT_wrt_RunAsRoot "$file" "$pkg_version" ;;
|
---|
[877cc6a] | 273 | esac
|
---|
| 274 |
|
---|
[93346ee] | 275 | # Write installed files log and remove the build directory(ies)
|
---|
| 276 | # except if the package build fails.
|
---|
[a160d86] | 277 | if [ "$pkg_tarball" != "" ] ; then
|
---|
[4b54394] | 278 | case "${name}" in
|
---|
| 279 | *xz-utils) CHROOT_wrt_RemoveBuildDirs "xz" ;;
|
---|
| 280 | *) CHROOT_wrt_RemoveBuildDirs "$name" ;;
|
---|
| 281 | esac
|
---|
[81fca31] | 282 | if [ "${INSTALL_LOG}" = "y" ] && [ "x${N}" = "x" ] ; then
|
---|
[93346ee] | 283 | CHROOT_wrt_LogNewFiles "$name"
|
---|
| 284 | fi
|
---|
[877cc6a] | 285 | fi
|
---|
| 286 |
|
---|
| 287 | # Include a touch of the target name so make can check
|
---|
| 288 | # if it's already been made.
|
---|
[e2ef100] | 289 | wrt_touch
|
---|
[877cc6a] | 290 | #
|
---|
| 291 | #--------------------------------------------------------------------#
|
---|
| 292 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 293 | #--------------------------------------------------------------------#
|
---|
| 294 |
|
---|
| 295 | # Keep the script file name for Makefile dependencies.
|
---|
[10c8b78] | 296 | PREV=${this_script}
|
---|
[45f82718] | 297 | # Set system_build envar for iteration targets
|
---|
| 298 | system_build=$chapter6
|
---|
[877cc6a] | 299 | done # end for file in chapter06/*
|
---|
| 300 | }
|
---|
| 301 |
|
---|
| 302 | #----------------------------#
|
---|
[14eaa9f] | 303 | chapter78_Makefiles() {
|
---|
[877cc6a] | 304 | #----------------------------#
|
---|
[b11c10b] | 305 | echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter7/8 ( BOOT ) ${R_arrow}"
|
---|
[877cc6a] | 306 |
|
---|
[14eaa9f] | 307 | for file in chapter0{7,8}/* ; do
|
---|
[877cc6a] | 308 | # Keep the script file name
|
---|
| 309 | this_script=`basename $file`
|
---|
| 310 |
|
---|
| 311 | # Grub must be configured manually.
|
---|
[14eaa9f] | 312 | # Handle fstab creation.
|
---|
[877cc6a] | 313 | # If no .config file is supplied, the kernel build is skipped
|
---|
| 314 | case ${this_script} in
|
---|
| 315 | *grub) continue ;;
|
---|
[045b2dc] | 316 | *fstab) [[ ! -z ${FSTAB} ]] && cp ${FSTAB} $BUILDDIR/sources/fstab ;;
|
---|
[877cc6a] | 317 | *kernel) [[ -z ${CONFIG} ]] && continue
|
---|
| 318 | cp ${CONFIG} $BUILDDIR/sources/kernel-config ;;
|
---|
| 319 | esac
|
---|
| 320 |
|
---|
| 321 | # First append each name of the script files to a list (this will become
|
---|
| 322 | # the names of the targets in the Makefile
|
---|
[14eaa9f] | 323 | chapter78="$chapter78 ${this_script}"
|
---|
[877cc6a] | 324 |
|
---|
| 325 | #--------------------------------------------------------------------#
|
---|
| 326 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 327 | #--------------------------------------------------------------------#
|
---|
| 328 | #
|
---|
| 329 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 330 | # as a dependency. Also call the echo_message function.
|
---|
[045b2dc] | 331 | CHROOT_wrt_target "${this_script}" "$PREV"
|
---|
[877cc6a] | 332 |
|
---|
[532ede6] | 333 | # Find the bootscripts or networkscripts (for systemd)
|
---|
| 334 | # and kernel package names
|
---|
[877cc6a] | 335 | case "${this_script}" in
|
---|
| 336 | *bootscripts)
|
---|
[a160d86] | 337 | name="lfs-bootscripts"
|
---|
| 338 | pkg_tarball=$(get_package_tarball_name $name)
|
---|
[93346ee] | 339 | if [ "${INSTALL_LOG}" = "y" ] ; then
|
---|
| 340 | CHROOT_wrt_TouchTimestamp
|
---|
| 341 | fi
|
---|
[81fca31] | 342 | CHROOT_Unpack "$pkg_tarball"
|
---|
[877cc6a] | 343 | ;;
|
---|
[532ede6] | 344 | *network-scripts)
|
---|
| 345 | name="lfs-network-scripts"
|
---|
| 346 | pkg_tarball=$(get_package_tarball_name $name)
|
---|
| 347 | if [ "${INSTALL_LOG}" = "y" ] ; then
|
---|
| 348 | CHROOT_wrt_TouchTimestamp
|
---|
| 349 | fi
|
---|
| 350 | CHROOT_Unpack "$pkg_tarball"
|
---|
| 351 | ;;
|
---|
[877cc6a] | 352 | *kernel)
|
---|
[a160d86] | 353 | name="linux"
|
---|
| 354 | pkg_tarball=$(get_package_tarball_name $name)
|
---|
[93346ee] | 355 | if [ "${INSTALL_LOG}" = "y" ] ; then
|
---|
| 356 | CHROOT_wrt_TouchTimestamp
|
---|
| 357 | fi
|
---|
[81fca31] | 358 | CHROOT_Unpack "$pkg_tarball"
|
---|
[93fd2d0] | 359 | # If using optimizations, use MAKEFLAGS (unless blacklisted)
|
---|
| 360 | # no setting of CFLAGS and friends.
|
---|
| 361 | [[ "$OPTIMIZE" != "0" ]] && wrt_makeflags "$name"
|
---|
[877cc6a] | 362 | ;;
|
---|
| 363 | esac
|
---|
| 364 |
|
---|
| 365 | # Check if we have a real /etc/fstab file
|
---|
| 366 | case "${this_script}" in
|
---|
| 367 | *fstab) if [[ -n $FSTAB ]]; then
|
---|
[045b2dc] | 368 | CHROOT_wrt_CopyFstab
|
---|
[877cc6a] | 369 | else
|
---|
[045b2dc] | 370 | CHROOT_wrt_RunAsRoot "$file"
|
---|
[877cc6a] | 371 | fi
|
---|
| 372 | ;;
|
---|
[045b2dc] | 373 | *) CHROOT_wrt_RunAsRoot "$file"
|
---|
[877cc6a] | 374 | ;;
|
---|
| 375 | esac
|
---|
| 376 |
|
---|
| 377 | case "${this_script}" in
|
---|
[532ede6] | 378 | *bootscripts) CHROOT_wrt_RemoveBuildDirs "dummy"
|
---|
| 379 | if [ "${INSTALL_LOG}" = "y" ] ; then
|
---|
| 380 | CHROOT_wrt_LogNewFiles "$name"
|
---|
| 381 | fi ;;
|
---|
| 382 | *network-scripts) CHROOT_wrt_RemoveBuildDirs "dummy"
|
---|
| 383 | if [ "${INSTALL_LOG}" = "y" ] ; then
|
---|
| 384 | CHROOT_wrt_LogNewFiles "$name"
|
---|
| 385 | fi ;;
|
---|
| 386 | *kernel) CHROOT_wrt_RemoveBuildDirs "dummy"
|
---|
| 387 | if [ "${INSTALL_LOG}" = "y" ] ; then
|
---|
| 388 | CHROOT_wrt_LogNewFiles "$name"
|
---|
| 389 | fi ;;
|
---|
[877cc6a] | 390 | esac
|
---|
| 391 |
|
---|
| 392 | # Include a touch of the target name so make can check
|
---|
| 393 | # if it's already been made.
|
---|
[e2ef100] | 394 | wrt_touch
|
---|
[877cc6a] | 395 | #
|
---|
| 396 | #--------------------------------------------------------------------#
|
---|
| 397 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 398 | #--------------------------------------------------------------------#
|
---|
| 399 |
|
---|
| 400 | # Keep the script file name for Makefile dependencies.
|
---|
| 401 | PREV=${this_script}
|
---|
[14eaa9f] | 402 | done # for file in chapter0{7,8}/*
|
---|
[453bef0] | 403 |
|
---|
[877cc6a] | 404 | }
|
---|
| 405 |
|
---|
| 406 |
|
---|
[045b2dc] | 407 |
|
---|
[877cc6a] | 408 | #----------------------------#
|
---|
[045b2dc] | 409 | build_Makefile() { #
|
---|
[877cc6a] | 410 | #----------------------------#
|
---|
[045b2dc] | 411 |
|
---|
[c7c5a53] | 412 | echo "Creating Makefile... ${BOLD}START${OFF}"
|
---|
[045b2dc] | 413 |
|
---|
[877cc6a] | 414 | cd $JHALFSDIR/${PROGNAME}-commands
|
---|
| 415 |
|
---|
| 416 | # Start with a clean Makefile.tmp file
|
---|
[045b2dc] | 417 | >$MKFILE
|
---|
[877cc6a] | 418 |
|
---|
| 419 | chapter4_Makefiles
|
---|
| 420 | chapter5_Makefiles
|
---|
| 421 | chapter6_Makefiles
|
---|
[45f82718] | 422 | # Add the iterations targets, if needed
|
---|
[401f81e] | 423 | [[ "$COMPARE" = "y" ]] && wrt_compare_targets
|
---|
[14eaa9f] | 424 | chapter78_Makefiles
|
---|
[3e7ceed] | 425 | # Add the CUSTOM_TOOLS targets, if needed
|
---|
| 426 | [[ "$CUSTOM_TOOLS" = "y" ]] && wrt_CustomTools_target
|
---|
[877cc6a] | 427 |
|
---|
| 428 | # Add a header, some variables and include the function file
|
---|
| 429 | # to the top of the real Makefile.
|
---|
[195ed9f] | 430 | wrt_Makefile_header
|
---|
[877cc6a] | 431 |
|
---|
| 432 | # Add chroot commands
|
---|
[6ad5a2f] | 433 | CHROOT_LOC="`whereis -b chroot | cut -d " " -f2`"
|
---|
[877cc6a] | 434 | i=1
|
---|
| 435 | for file in chapter06/*chroot* ; do
|
---|
[6ad5a2f] | 436 | chroot=`cat $file | \
|
---|
| 437 | sed -e "s@chroot@$CHROOT_LOC@" \
|
---|
[d3802b1] | 438 | -e '/#!\/bin\/bash/d' \
|
---|
[6ad5a2f] | 439 | -e 's@ \\\@ @g' | \
|
---|
| 440 | tr -d '\n' | \
|
---|
| 441 | sed -e 's/ */ /g' \
|
---|
| 442 | -e 's|\\$|&&|g' \
|
---|
| 443 | -e 's|exit||g' \
|
---|
| 444 | -e 's|$| -c|' \
|
---|
| 445 | -e 's|"$$LFS"|$(MOUNT_PT)|' \
|
---|
[f3a7f3b] | 446 | -e 's|set -e||' \
|
---|
| 447 | -e 's|set +h||'`
|
---|
[877cc6a] | 448 | echo -e "CHROOT$i= $chroot\n" >> $MKFILE
|
---|
| 449 | i=`expr $i + 1`
|
---|
| 450 | done
|
---|
| 451 |
|
---|
| 452 | # Drop in the main target 'all:' and the chapter targets with each sub-target
|
---|
| 453 | # as a dependency.
|
---|
| 454 | (
|
---|
| 455 | cat << EOF
|
---|
[045b2dc] | 456 |
|
---|
[ac9bdc7] | 457 | all: ck_UID mk_SETUP mk_LUSER mk_SUDO mk_CHROOT mk_BOOT create-sbu_du-report mk_BLFS_TOOL mk_CUSTOM_TOOLS
|
---|
[045b2dc] | 458 | @sudo make do_housekeeping
|
---|
[e1fc855] | 459 | @echo $VERSION > lfs-release && \\
|
---|
[9096853] | 460 | sudo mv lfs-release \$(MOUNT_PT)/etc && \\
|
---|
| 461 | sudo chown root:root \$(MOUNT_PT)/etc/lfs-release
|
---|
[e1fc855] | 462 | @/bin/echo -e -n \\
|
---|
| 463 | DISTRIB_ID=\\"Linux From Scratch\\"\\\\n\\
|
---|
| 464 | DISTRIB_RELEASE=\\"$VERSION\\"\\\\n\\
|
---|
| 465 | DISTRIB_CODENAME=\\"$(whoami)-jhalfs\\"\\\\n\\
|
---|
| 466 | DISTRIB_DESCRIPTION=\\"Linux From Scratch\\"\\\\n\\
|
---|
| 467 | > lsb-release && \\
|
---|
| 468 | sudo mv lsb-release \$(MOUNT_PT)/etc && \\
|
---|
| 469 | sudo chown root:root \$(MOUNT_PT)/etc/lsb-release
|
---|
[877cc6a] | 470 | @\$(call echo_finished,$VERSION)
|
---|
| 471 |
|
---|
[045b2dc] | 472 | ck_UID:
|
---|
| 473 | @if [ \`id -u\` = "0" ]; then \\
|
---|
| 474 | echo "--------------------------------------------------"; \\
|
---|
| 475 | echo "You cannot run this makefile from the root account"; \\
|
---|
| 476 | echo "--------------------------------------------------"; \\
|
---|
| 477 | exit 1; \\
|
---|
| 478 | fi
|
---|
| 479 |
|
---|
| 480 | mk_SETUP:
|
---|
| 481 | @\$(call echo_SU_request)
|
---|
[dbcdfd7] | 482 | @sudo make BREAKPOINT=\$(BREAKPOINT) SETUP
|
---|
[045b2dc] | 483 | @touch \$@
|
---|
| 484 |
|
---|
| 485 | mk_LUSER: mk_SETUP
|
---|
| 486 | @\$(call echo_SULUSER_request)
|
---|
[ef32ce5] | 487 | @( \$(SU_LUSER) "make -C \$(MOUNT_PT)/\$(SCRIPT_ROOT) BREAKPOINT=\$(BREAKPOINT) LUSER" )
|
---|
[045b2dc] | 488 | @sudo make restore-luser-env
|
---|
| 489 | @touch \$@
|
---|
| 490 |
|
---|
| 491 | mk_SUDO: mk_LUSER
|
---|
[dbcdfd7] | 492 | @sudo make BREAKPOINT=\$(BREAKPOINT) SUDO
|
---|
[1330ebc] | 493 | @touch \$@
|
---|
| 494 |
|
---|
[045b2dc] | 495 | mk_CHROOT: mk_SUDO
|
---|
| 496 | @\$(call echo_CHROOT_request)
|
---|
[dbcdfd7] | 497 | @( sudo \$(CHROOT1) "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) CHROOT")
|
---|
[045b2dc] | 498 | @touch \$@
|
---|
[877cc6a] | 499 |
|
---|
[045b2dc] | 500 | mk_BOOT: mk_CHROOT
|
---|
| 501 | @\$(call echo_CHROOT_request)
|
---|
[dbcdfd7] | 502 | @( sudo \$(CHROOT2) "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) BOOT")
|
---|
[045b2dc] | 503 | @touch \$@
|
---|
[877cc6a] | 504 |
|
---|
[ac9bdc7] | 505 | mk_BLFS_TOOL: create-sbu_du-report
|
---|
| 506 | @if [ "\$(ADD_BLFS_TOOLS)" = "y" ]; then \\
|
---|
| 507 | \$(call sh_echo_PHASE,Building BLFS_TOOL); \\
|
---|
| 508 | (sudo \$(CHROOT2) "make -C $BLFS_ROOT/work"); \\
|
---|
| 509 | fi;
|
---|
| 510 | @touch \$@
|
---|
| 511 |
|
---|
| 512 | mk_CUSTOM_TOOLS: mk_BLFS_TOOL
|
---|
[3e7ceed] | 513 | @if [ "\$(ADD_CUSTOM_TOOLS)" = "y" ]; then \\
|
---|
[3bc6078] | 514 | \$(call sh_echo_PHASE,Building CUSTOM_TOOLS); \\
|
---|
[3e7ceed] | 515 | sudo mkdir -p ${BUILDDIR}${TRACKING_DIR}; \\
|
---|
[dbcdfd7] | 516 | (sudo \$(CHROOT2) "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) CUSTOM_TOOLS"); \\
|
---|
[3e7ceed] | 517 | fi;
|
---|
| 518 | @touch \$@
|
---|
| 519 |
|
---|
[f60a8b7] | 520 | devices: ck_UID
|
---|
| 521 | sudo mount -v --bind /dev \$(MOUNT_PT)/dev
|
---|
| 522 | sudo mount -vt devpts devpts \$(MOUNT_PT)/dev/pts
|
---|
| 523 | sudo mount -vt proc proc \$(MOUNT_PT)/proc
|
---|
| 524 | sudo mount -vt sysfs sysfs \$(MOUNT_PT)/sys
|
---|
| 525 | if [ -h \$(MOUNT_PT)/dev/shm ]; then \\
|
---|
| 526 | link=\$\$(readlink \$(MOUNT_PT)/dev/shm); \\
|
---|
| 527 | sudo mkdir -p \$(MOUNT_PT)/\$\$link; \\
|
---|
| 528 | sudo mount -vt tmpfs shm \$(MOUNT_PT)/\$\$link; \\
|
---|
[72f2f82] | 529 | unset link; \\
|
---|
| 530 | else \\
|
---|
[f60a8b7] | 531 | sudo mount -vt tmpfs shm \$(MOUNT_PT)/dev/shm; \\
|
---|
[72f2f82] | 532 | fi
|
---|
[7c17066] | 533 |
|
---|
[f60a8b7] | 534 | teardown:
|
---|
| 535 | sudo umount -v \$(MOUNT_PT)/sys
|
---|
| 536 | sudo umount -v \$(MOUNT_PT)/proc
|
---|
| 537 | sudo umount -v \$(MOUNT_PT)/dev/pts
|
---|
| 538 | if [ -h \$(MOUNT_PT)/dev/shm ]; then \\
|
---|
| 539 | link=\$\$(readlink \$(MOUNT_PT)/dev/shm); \\
|
---|
| 540 | sudo umount -v \$(MOUNT_PT)/\$\$link; \\
|
---|
[72f2f82] | 541 | unset link; \\
|
---|
| 542 | else \\
|
---|
[f60a8b7] | 543 | sudo umount -v \$(MOUNT_PT)/dev/shm; \\
|
---|
[72f2f82] | 544 | fi
|
---|
[f60a8b7] | 545 | sudo umount -v \$(MOUNT_PT)/dev
|
---|
[7c17066] | 546 |
|
---|
| 547 | chroot: devices
|
---|
[f60a8b7] | 548 | sudo /usr/sbin/chroot \$(MOUNT_PT) /tools/bin/env -i \\
|
---|
[7c17066] | 549 | HOME=/root TERM=\$(TERM) PS1='\\u:\\w\\\$\$ ' \\
|
---|
| 550 | PATH=/bin:/usr/bin:/sbin:/usr/sbin \\
|
---|
| 551 | /tools/bin/bash --login
|
---|
| 552 | \$(MAKE) teardown
|
---|
[877cc6a] | 553 |
|
---|
[3e7ceed] | 554 | SETUP: $chapter4
|
---|
| 555 | LUSER: $chapter5
|
---|
| 556 | SUDO: $runasroot
|
---|
[aec4483] | 557 | CHROOT: SHELL=/tools/bin/bash
|
---|
[3e7ceed] | 558 | CHROOT: $chapter6
|
---|
| 559 | BOOT: $chapter78
|
---|
| 560 | CUSTOM_TOOLS: $custom_list
|
---|
[fe24ca6] | 561 |
|
---|
[045b2dc] | 562 |
|
---|
[1838bc7] | 563 | create-sbu_du-report: mk_BOOT
|
---|
| 564 | @\$(call echo_message, Building)
|
---|
| 565 | @if [ "\$(ADD_REPORT)" = "y" ]; then \\
|
---|
[ac9bdc7] | 566 | sudo ./create-sbu_du-report.sh logs $VERSION; \\
|
---|
[1838bc7] | 567 | \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
|
---|
| 568 | fi;
|
---|
| 569 | @touch \$@
|
---|
[045b2dc] | 570 |
|
---|
[6ad5a2f] | 571 | restore-luser-env:
|
---|
[877cc6a] | 572 | @\$(call echo_message, Building)
|
---|
[962793a] | 573 | @if [ -f \$(LUSER_HOME)/.bashrc.XXX ]; then \\
|
---|
| 574 | mv -f \$(LUSER_HOME)/.bashrc.XXX \$(LUSER_HOME)/.bashrc; \\
|
---|
[877cc6a] | 575 | fi;
|
---|
[962793a] | 576 | @if [ -f \$(LUSER_HOME)/.bash_profile.XXX ]; then \\
|
---|
| 577 | mv \$(LUSER_HOME)/.bash_profile.XXX \$(LUSER_HOME)/.bash_profile; \\
|
---|
[877cc6a] | 578 | fi;
|
---|
[962793a] | 579 | @chown \$(LUSER):\$(LGROUP) \$(LUSER_HOME)/.bash*
|
---|
[dbcdfd7] | 580 | @\$(call housekeeping)
|
---|
[a858a78] | 581 |
|
---|
[7d9a82d] | 582 | do_housekeeping:
|
---|
[4524fb2] | 583 | @-umount \$(MOUNT_PT)/sys
|
---|
| 584 | @-umount \$(MOUNT_PT)/proc
|
---|
[72f2f82] | 585 | @-if [ -h \$(MOUNT_PT)/dev/shm ]; then \\
|
---|
| 586 | link=\$\$(readlink \$(MOUNT_PT)/dev/shm); \\
|
---|
| 587 | umount \$(MOUNT_PT)/\$\$link; \\
|
---|
| 588 | unset link; \\
|
---|
| 589 | else \\
|
---|
| 590 | umount \$(MOUNT_PT)/dev/shm; \\
|
---|
| 591 | fi
|
---|
[4524fb2] | 592 | @-umount \$(MOUNT_PT)/dev/pts
|
---|
| 593 | @-umount \$(MOUNT_PT)/dev
|
---|
[045b2dc] | 594 | @-rm /tools
|
---|
[6ad5a2f] | 595 | @-if [ ! -f luser-exist ]; then \\
|
---|
| 596 | userdel \$(LUSER); \\
|
---|
[962793a] | 597 | rm -rf \$(LUSER_HOME); \\
|
---|
[7d9a82d] | 598 | fi;
|
---|
[a858a78] | 599 |
|
---|
[fe24ca6] | 600 |
|
---|
[877cc6a] | 601 | EOF
|
---|
| 602 | ) >> $MKFILE
|
---|
| 603 |
|
---|
| 604 | # Bring over the items from the Makefile.tmp
|
---|
| 605 | cat $MKFILE.tmp >> $MKFILE
|
---|
| 606 | rm $MKFILE.tmp
|
---|
[c7c5a53] | 607 | echo "Creating Makefile... ${BOLD}DONE${OFF}"
|
---|
| 608 | }
|
---|