[91ff6a9] | 1 | #!/bin/bash
|
---|
[877cc6a] | 2 |
|
---|
| 3 | ###################################
|
---|
| 4 | ### FUNCTIONS ###
|
---|
| 5 | ###################################
|
---|
| 6 |
|
---|
| 7 |
|
---|
[045b2dc] | 8 | #############################################################
|
---|
| 9 |
|
---|
| 10 |
|
---|
[ebe1ba6] | 11 | #-------------------------#
|
---|
| 12 | chapter_targets() { #
|
---|
| 13 | #-------------------------#
|
---|
| 14 | # $1 is the chapter number. Pad it with 0 to the left to obtain a 2-digit
|
---|
| 15 | # number:
|
---|
| 16 | printf -v dir chapter%02d $1
|
---|
| 17 |
|
---|
[3da8c49] | 18 | # $2 contains the build number if rebuilding for ICA
|
---|
| 19 | if [[ -z "$2" ]] ; then
|
---|
| 20 | local N=""
|
---|
| 21 | else
|
---|
| 22 | local N=-build_$2
|
---|
| 23 | local CHROOT_TGT=""
|
---|
| 24 | mkdir ${dir}$N
|
---|
| 25 | cp ${dir}/* ${dir}$N
|
---|
| 26 | for script in ${dir}$N/* ; do
|
---|
| 27 | # Overwrite existing symlinks, files, and dirs
|
---|
| 28 | sed -e 's/ln *-sv/&f/g' \
|
---|
| 29 | -e 's/mv *-v/&f/g' \
|
---|
| 30 | -e 's/mkdir *-v/&p/g' -i ${script}
|
---|
| 31 | # Rename the scripts
|
---|
| 32 | mv ${script} ${script}$N
|
---|
| 33 | done
|
---|
| 34 | # Remove Bzip2 binaries before make install (LFS-6.2 compatibility)
|
---|
| 35 | sed -e 's@make install@rm -vf /usr/bin/bz*\n&@' -i ${dir}$N/*-bzip2$N
|
---|
| 36 | # Remove openssl-<version> from /usr/share/doc (LFS-9.x), because
|
---|
| 37 | # otherwise the mv command creates an openssl directory.
|
---|
| 38 | sed -e 's@mv -v@rm -rfv /usr/share/doc/openssl-*\n&@' \
|
---|
| 39 | -i ${dir}$N/*-openssl$N
|
---|
| 40 | fi
|
---|
| 41 |
|
---|
| 42 | echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter $1$N${R_arrow}"
|
---|
[877cc6a] | 43 |
|
---|
[3da8c49] | 44 | for file in ${dir}$N/* ; do
|
---|
[903eefd] | 45 | # Keep the script file name
|
---|
| 46 | this_script=`basename $file`
|
---|
[877cc6a] | 47 |
|
---|
[ebe1ba6] | 48 | # Some scripts need peculiar actions:
|
---|
| 49 | # - Stripping at the end of system build: lfs.xsl does not generate
|
---|
| 50 | # correct commands if the user does not want to strip, so skip it
|
---|
| 51 | # in this case
|
---|
[3da8c49] | 52 | # - do not reinstall linux-headers when rebuilding
|
---|
[ebe1ba6] | 53 | # - grub config: must be done manually; skip it
|
---|
| 54 | # - handle fstab and .config. Skip kernel if .config not supplied
|
---|
[903eefd] | 55 | case "${this_script}" in
|
---|
[84d0d39] | 56 | *stripping*) [[ "${STRIP}" = "n" ]] && continue ;;
|
---|
[3da8c49] | 57 | *linux-headers*) [[ -n "$N" ]] && continue ;;
|
---|
[ebe1ba6] | 58 | 8*grub) (( nb_chaps == 5 )) && continue ;;
|
---|
| 59 | 10*grub) continue ;;
|
---|
| 60 | *fstab) [[ -z "${FSTAB}" ]] ||
|
---|
| 61 | [[ ${FSTAB} == $BUILDDIR/sources/fstab ]] ||
|
---|
| 62 | cp ${FSTAB} $BUILDDIR/sources/fstab ;;
|
---|
| 63 | *kernel) [[ -z ${CONFIG} ]] && continue
|
---|
| 64 | [[ ${CONFIG} == $BUILDDIR/sources/kernel-config ]] ||
|
---|
| 65 | cp ${CONFIG} $BUILDDIR/sources/kernel-config ;;
|
---|
[903eefd] | 66 | esac
|
---|
[3da8c49] | 67 | # Grab the name of the target
|
---|
[93814d1] | 68 | # This is only used to check the name in "opt_override" or "BLACKLIST"
|
---|
[3da8c49] | 69 | name=`echo ${this_script} | sed -e 's@[0-9]\{3,4\}-@@' \
|
---|
| 70 | -e 's@-pass[0-9]\{1\}@@' \
|
---|
| 71 | -e 's@-libstdc++@@' \
|
---|
[706e5bf] | 72 | -e 's,'$N',,' \
|
---|
| 73 | -e 's@-32@@'`
|
---|
[3da8c49] | 74 |
|
---|
| 75 | # Find the name of the tarball and the version of the package
|
---|
| 76 | # If it doesn't exist, we skip it in iterations rebuilds (except stripping
|
---|
| 77 | # and revisedchroot, where .a and .la files are removed).
|
---|
| 78 | pkg_tarball=$(sed -n 's/tar -xf \(.*\)/\1/p' $file)
|
---|
| 79 | pkg_version=$(sed -n 's/VERSION=\(.*\)/\1/p' $file)
|
---|
| 80 |
|
---|
| 81 | if [[ "$pkg_tarball" = "" ]] && [[ -n "$N" ]] ; then
|
---|
| 82 | case "${this_script}" in
|
---|
[756863b] | 83 | *stripping*|*cleanup*|*revised*) ;;
|
---|
[3da8c49] | 84 | *) continue ;;
|
---|
| 85 | esac
|
---|
| 86 | fi
|
---|
[877cc6a] | 87 |
|
---|
[ebe1ba6] | 88 | # Append the name of the script to a list. The name of the
|
---|
| 89 | # list is contained in the variable Makefile_target. We adjust this
|
---|
| 90 | # variable at various points. Note that it is initialized to "SETUP"
|
---|
| 91 | # in the main function, before calling this function for the first time.
|
---|
| 92 | case "${this_script}" in
|
---|
| 93 | *settingenvironment) Makefile_target=LUSER_TGT ;;
|
---|
| 94 | *changingowner ) Makefile_target=SUDO_TGT ;;
|
---|
| 95 | *creatingdirs ) Makefile_target=CHROOT_TGT ;;
|
---|
| 96 | *bootscripts ) Makefile_target=BOOT_TGT ;; # case of sysv book
|
---|
| 97 | *network ) Makefile_target=BOOT_TGT ;; # case of systemd book
|
---|
| 98 | esac
|
---|
| 99 | eval $Makefile_target=\"\$$Makefile_target ${this_script}\"
|
---|
| 100 |
|
---|
[903eefd] | 101 | #--------------------------------------------------------------------#
|
---|
| 102 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 103 | #--------------------------------------------------------------------#
|
---|
| 104 |
|
---|
| 105 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 106 | # as a dependency. Also call the echo_message function.
|
---|
[ebe1ba6] | 107 | case $Makefile_target in
|
---|
| 108 | CHROOT_TGT) CHROOT_wrt_target "${this_script}" "$PREV" "$pkg_version" ;;
|
---|
| 109 | *) LUSER_wrt_target "${this_script}" "$PREV" "$pkg_version" ;;
|
---|
| 110 | esac
|
---|
| 111 |
|
---|
| 112 | # If $pkg_tarball isn't empty, we've got a package...
|
---|
| 113 | if [ "$pkg_tarball" != "" ] ; then
|
---|
| 114 | # Touch timestamp file if installed files logs shall be created.
|
---|
[3da8c49] | 115 | # But only for the final install chapter and not when rebuilding it
|
---|
| 116 | if [ "${INSTALL_LOG}" = "y" ] &&
|
---|
| 117 | (( 1+nb_chaps <= $1 )) &&
|
---|
| 118 | [ "x$N" = x ] ; then
|
---|
[ebe1ba6] | 119 | CHROOT_wrt_TouchTimestamp
|
---|
| 120 | fi
|
---|
| 121 | # Always initialize the test log file, since the test instructions may
|
---|
| 122 | # be "uncommented" by the user
|
---|
| 123 | case $Makefile_target in
|
---|
| 124 | CHROOT_TGT) CHROOT_wrt_test_log "${this_script}" "$pkg_version" ;;
|
---|
| 125 | LUSER_TGT ) LUSER_wrt_test_log "${this_script}" "$pkg_version" ;;
|
---|
| 126 | esac
|
---|
[903eefd] | 127 |
|
---|
[ebe1ba6] | 128 | # If using optimizations, write the instructions
|
---|
| 129 | case "${OPTIMIZE}$1${nb_chaps}${this_script}${REALSBU}" in
|
---|
[63190e6] | 130 | 0* | *binutils-pass1y | 15* | 167* | 177*) ;;
|
---|
| 131 | *kernel*) ;; # No CFLAGS for kernel
|
---|
| 132 | *) wrt_optimize "$name" ;;
|
---|
| 133 | esac
|
---|
| 134 | # MAKEFLAGS is set even if no optimization now.
|
---|
| 135 | # For new books, the scripts contain the MAKEFLAGS, so no
|
---|
| 136 | # need to set them in the envars except if binutils-pass1
|
---|
| 137 | # and REALSBU=y. For Old books, N_PARALLEL and JH_MAKEFLAGS
|
---|
| 138 | # are set and we must set the envars.
|
---|
| 139 | case "${mkf_included}${this_script}${REALSBU}" in
|
---|
| 140 | *binutils-pass1y)
|
---|
[d3dbebe] | 141 | wrt_makeflags "$name" "-j1" "1" ;;
|
---|
[63190e6] | 142 | n*)
|
---|
[d3dbebe] | 143 | wrt_makeflags "$name" "$JH_MAKEFLAGS" "$N_PARALLEL" ;;
|
---|
[ebe1ba6] | 144 | esac
|
---|
| 145 | fi
|
---|
| 146 |
|
---|
| 147 | # Some scriptlet have a special treatment; otherwise standard
|
---|
[903eefd] | 148 | case "${this_script}" in
|
---|
| 149 | *addinguser)
|
---|
| 150 | (
|
---|
[088130f] | 151 | # /var/lib may already exist and be owned by root if blfs tools
|
---|
| 152 | # have been installed.
|
---|
[903eefd] | 153 | cat << EOF
|
---|
| 154 | @if [ -f luser-id ]; then \\
|
---|
| 155 | function useradd() { true; }; \\
|
---|
| 156 | function groupadd() { true; }; \\
|
---|
| 157 | export -f useradd groupadd; \\
|
---|
| 158 | fi; \\
|
---|
| 159 | export LFS=\$(MOUNT_PT) && \\
|
---|
| 160 | \$(CMDSDIR)/`dirname $file`/\$@ >> \$(LOGDIR)/\$@ 2>&1; \\
|
---|
| 161 | \$(PRT_DU) >>logs/\$@
|
---|
| 162 | @chown \$(LUSER):\$(LGROUP) envars
|
---|
[5562bf1] | 163 | @if [ -d "\$(MOUNT_PT)/var/lib" ]; then \\
|
---|
| 164 | chown \$(LUSER):\$(LGROUP) \$(MOUNT_PT)/var/lib; \\
|
---|
| 165 | fi
|
---|
[903eefd] | 166 | @chmod -R a+wt $JHALFSDIR
|
---|
| 167 | @chmod a+wt \$(SRCSDIR)
|
---|
[877cc6a] | 168 | EOF
|
---|
[903eefd] | 169 | ) >> $MKFILE.tmp
|
---|
| 170 | ;;
|
---|
[ebe1ba6] | 171 | *settingenvironment)
|
---|
| 172 | (
|
---|
| 173 | cat << EOF
|
---|
| 174 | @cd && \\
|
---|
| 175 | function source() { true; } && \\
|
---|
| 176 | export -f source && \\
|
---|
| 177 | \$(CMDSDIR)/`dirname $file`/\$@ >> \$(LOGDIR)/\$@ 2>&1 && \\
|
---|
| 178 | sed 's|/mnt/lfs|\$(MOUNT_PT)|' -i .bashrc && \\
|
---|
| 179 | echo source $JHALFSDIR/envars >> .bashrc
|
---|
| 180 | @\$(PRT_DU) >>logs/\$@
|
---|
| 181 | EOF
|
---|
| 182 | ) >> $MKFILE.tmp
|
---|
| 183 | ;;
|
---|
| 184 | *fstab) if [[ -n "$FSTAB" ]]; then
|
---|
| 185 | CHROOT_wrt_CopyFstab
|
---|
| 186 | else
|
---|
| 187 | CHROOT_wrt_RunAsRoot "$file"
|
---|
| 188 | fi
|
---|
| 189 | ;;
|
---|
| 190 |
|
---|
[0a0753d] | 191 | *)
|
---|
[ebe1ba6] | 192 | # Insert date and disk usage at the top of the log file, the script
|
---|
| 193 | # run and date and disk usage again at the bottom of the log file.
|
---|
| 194 | case "${Makefile_target}" in
|
---|
| 195 | SETUP_TGT | SUDO_TGT) wrt_RunAsRoot "$file" "$pkg_version" ;;
|
---|
| 196 | LUSER_TGT) LUSER_wrt_RunAsUser "$file" "$pkg_version" ;;
|
---|
| 197 | CHROOT_TGT | BOOT_TGT) CHROOT_wrt_RunAsRoot "$file" "$pkg_version" ;;
|
---|
| 198 | esac
|
---|
| 199 | ;;
|
---|
[903eefd] | 200 | esac
|
---|
[045b2dc] | 201 |
|
---|
[ebe1ba6] | 202 | # Write installed files log and remove the build directory(ies)
|
---|
| 203 | # except if the package build fails.
|
---|
| 204 | if [ "$pkg_tarball" != "" ] ; then
|
---|
[3da8c49] | 205 | if [ "${INSTALL_LOG}" = "y" ] &&
|
---|
| 206 | (( 1+nb_chaps <= $1 )) &&
|
---|
| 207 | [ "x${N}" = "x" ] ; then
|
---|
[706e5bf] | 208 | CHROOT_wrt_LogNewFiles "${this_script}"
|
---|
[ebe1ba6] | 209 | fi
|
---|
| 210 | fi
|
---|
| 211 |
|
---|
[903eefd] | 212 | # Include a touch of the target name so make can check
|
---|
| 213 | # if it's already been made.
|
---|
| 214 | wrt_touch
|
---|
| 215 | #
|
---|
| 216 | #--------------------------------------------------------------------#
|
---|
| 217 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 218 | #--------------------------------------------------------------------#
|
---|
| 219 |
|
---|
| 220 | # Keep the script file name for Makefile dependencies.
|
---|
| 221 | PREV=${this_script}
|
---|
[3da8c49] | 222 | # Set "system_build" var for iteration targets
|
---|
| 223 | if [ -z "$N" ] && (( 1+nb_chaps == $1 )); then
|
---|
| 224 | system_build="$system_build $this_script"
|
---|
| 225 | fi
|
---|
| 226 |
|
---|
[ebe1ba6] | 227 | done # end for file in $dir/*
|
---|
[3da8c49] | 228 | # Set "system_build" when rebuilding: note the CHROOT_TGT is local
|
---|
| 229 | # in that case.
|
---|
| 230 | if [ -n "$N" ]; then
|
---|
| 231 | system_build="$CHROOT_TGT"
|
---|
| 232 | fi
|
---|
[877cc6a] | 233 | }
|
---|
| 234 |
|
---|
| 235 | #----------------------------#
|
---|
[045b2dc] | 236 | build_Makefile() { #
|
---|
[877cc6a] | 237 | #----------------------------#
|
---|
[045b2dc] | 238 |
|
---|
[c7c5a53] | 239 | echo "Creating Makefile... ${BOLD}START${OFF}"
|
---|
[045b2dc] | 240 |
|
---|
[2bd2fb8] | 241 | cd "$JHALFSDIR/$COMMANDS"
|
---|
[877cc6a] | 242 |
|
---|
[ebe1ba6] | 243 | # Start with empty files
|
---|
[045b2dc] | 244 | >$MKFILE
|
---|
[ebe1ba6] | 245 | >$MKFILE.tmp
|
---|
| 246 |
|
---|
| 247 | # Ensure the first dependency is empty
|
---|
| 248 | unset PREV
|
---|
[877cc6a] | 249 |
|
---|
[ebe1ba6] | 250 | # We begin with the SETUP target; successive targets will be assigned in
|
---|
| 251 | # the chapter_targets function.
|
---|
| 252 | Makefile_target=SETUP_TGT
|
---|
| 253 |
|
---|
| 254 | # We need to know the chapter numbering, which depends on the version
|
---|
| 255 | # of the book. Use the number of subdirs to know which version we have
|
---|
[6f74ca1] | 256 | chaps=($(echo chapter*))
|
---|
[ebe1ba6] | 257 | nb_chaps=${#chaps[*]} # 5 if classical version, 7 if new version
|
---|
| 258 | # DEBUG
|
---|
| 259 | # echo chaps: ${chaps[*]}
|
---|
| 260 | # echo nb_chaps: $nb_chaps
|
---|
| 261 | # end DEBUG
|
---|
| 262 |
|
---|
[63190e6] | 263 | # We need to know if we have an old or a new book (with included MAKEFLAGS)
|
---|
| 264 | # we grep for MAKEFLAGS in chapter04 to find out.
|
---|
| 265 | if grep -q MAKEFLAGS chapter04/*; then
|
---|
| 266 | mkf_included=y
|
---|
| 267 | else
|
---|
| 268 | mkf_included=n
|
---|
| 269 | fi
|
---|
| 270 |
|
---|
[ebe1ba6] | 271 | # Make a temporary file with all script targets
|
---|
| 272 | for (( i = 4; i < nb_chaps+4; i++ )); do
|
---|
| 273 | chapter_targets $i
|
---|
| 274 | if (( i == nb_chaps )); then : # we have finished temporary tools
|
---|
| 275 | # Add the save target, if needed
|
---|
| 276 | [[ "$SAVE_CH5" = "y" ]] && wrt_save_target $Makefile_target
|
---|
| 277 | fi
|
---|
[3da8c49] | 278 | if (( i == 1+nb_chaps )); then : # we have finished final system
|
---|
| 279 | # Add the iterations targets, if needed
|
---|
| 280 | [[ "$COMPARE" = "y" ]] && wrt_compare_targets $i
|
---|
| 281 | fi
|
---|
[ebe1ba6] | 282 | done
|
---|
[3e7ceed] | 283 | # Add the CUSTOM_TOOLS targets, if needed
|
---|
| 284 | [[ "$CUSTOM_TOOLS" = "y" ]] && wrt_CustomTools_target
|
---|
[877cc6a] | 285 |
|
---|
| 286 | # Add a header, some variables and include the function file
|
---|
| 287 | # to the top of the real Makefile.
|
---|
[195ed9f] | 288 | wrt_Makefile_header
|
---|
[877cc6a] | 289 |
|
---|
| 290 | # Add chroot commands
|
---|
[6ad5a2f] | 291 | CHROOT_LOC="`whereis -b chroot | cut -d " " -f2`"
|
---|
[877cc6a] | 292 | i=1
|
---|
[d68eb1b] | 293 | for file in ../chroot-scripts/*chroot* ; do
|
---|
[6ad5a2f] | 294 | chroot=`cat $file | \
|
---|
[abc8b27] | 295 | perl -pe 's|\\\\\n||g' | \
|
---|
| 296 | tr -s [:space:] | \
|
---|
| 297 | grep chroot | \
|
---|
| 298 | sed -e "s|chroot|$CHROOT_LOC|" \
|
---|
[6ad5a2f] | 299 | -e 's|\\$|&&|g' \
|
---|
[abc8b27] | 300 | -e 's|"$$LFS"|$(MOUNT_PT)|'`
|
---|
[877cc6a] | 301 | echo -e "CHROOT$i= $chroot\n" >> $MKFILE
|
---|
| 302 | i=`expr $i + 1`
|
---|
| 303 | done
|
---|
| 304 |
|
---|
[cacc6c5] | 305 | # If CPUSET is defined and not equal to "all", then we define a first target
|
---|
| 306 | # that calls a script which re-enters make calling target all
|
---|
| 307 | if [ -n "$CPUSET" ] && [ "$CPUSET" != all ]; then
|
---|
| 308 | (
|
---|
| 309 | cat << EOF
|
---|
| 310 |
|
---|
| 311 | all-with-cpuset:
|
---|
[09ac7fc] | 312 | @CPUSPEC="\$(CPUSET)" ./run-in-cgroup.sh \$(MAKE) all
|
---|
[cacc6c5] | 313 | EOF
|
---|
| 314 | ) >> $MKFILE
|
---|
| 315 | fi
|
---|
[877cc6a] | 316 | # Drop in the main target 'all:' and the chapter targets with each sub-target
|
---|
[fd90f80] | 317 | # as a dependency. Also prevent running targets in parallel.
|
---|
[877cc6a] | 318 | (
|
---|
| 319 | cat << EOF
|
---|
[045b2dc] | 320 |
|
---|
[fd90f80] | 321 | .NOTPARALLEL:
|
---|
| 322 |
|
---|
[9728b23] | 323 | all: ck_UID ck_terminal mk_SETUP mk_LUSER mk_SUDO mk_CHROOT mk_BOOT create-sbu_du-report mk_BLFS_TOOL mk_CUSTOM_TOOLS
|
---|
[3722d31] | 324 | @sudo env LFS=\$(MOUNT_PT) kernfs-scripts/teardown.sh
|
---|
[262e174] | 325 | EOF
|
---|
| 326 | ) >> $MKFILE
|
---|
| 327 | # With systemd, the commands in chapter 9 do not create a
|
---|
| 328 | # valid /etc/resolv.conf, so that if blfs_tools are installed, and
|
---|
| 329 | # make-ca is run, it cannot connect. In this case, resolv.conf
|
---|
| 330 | # from the host has been copied, and we need to remove it now.
|
---|
| 331 | if [ "$INITSYS" = systemd ]; then
|
---|
| 332 | (
|
---|
| 333 | cat << EOF
|
---|
| 334 | @sudo rm -v \$(MOUNT_PT)/etc/resolv.conf
|
---|
| 335 | EOF
|
---|
| 336 | ) >> $MKFILE
|
---|
| 337 | fi
|
---|
| 338 | (
|
---|
| 339 | cat << EOF
|
---|
[045b2dc] | 340 | @sudo make do_housekeeping
|
---|
[e1fc855] | 341 | @echo $VERSION > lfs-release && \\
|
---|
[9096853] | 342 | sudo mv lfs-release \$(MOUNT_PT)/etc && \\
|
---|
| 343 | sudo chown root:root \$(MOUNT_PT)/etc/lfs-release
|
---|
[e1fc855] | 344 | @/bin/echo -e -n \\
|
---|
| 345 | DISTRIB_ID=\\"Linux From Scratch\\"\\\\n\\
|
---|
| 346 | DISTRIB_RELEASE=\\"$VERSION\\"\\\\n\\
|
---|
| 347 | DISTRIB_CODENAME=\\"$(whoami)-jhalfs\\"\\\\n\\
|
---|
| 348 | DISTRIB_DESCRIPTION=\\"Linux From Scratch\\"\\\\n\\
|
---|
| 349 | > lsb-release && \\
|
---|
| 350 | sudo mv lsb-release \$(MOUNT_PT)/etc && \\
|
---|
| 351 | sudo chown root:root \$(MOUNT_PT)/etc/lsb-release
|
---|
[56c1fff] | 352 | @/bin/echo -e -n \\
|
---|
| 353 | NAME=\\"Linux From Scratch\\"\\\\n\\
|
---|
| 354 | VERSION=\\"$VERSION\\"\\\\n\\
|
---|
| 355 | ID=lfs\\\\n\\
|
---|
| 356 | PRETTY_NAME=\\"Linux From Scratch $VERSION\\"\\\\n\\
|
---|
| 357 | VERSION_CODENAME=\\"$(whoami)-jhalfs\\"\\\\n\\
|
---|
| 358 | > os-release && \\
|
---|
| 359 | sudo mv os-release \$(MOUNT_PT)/etc && \\
|
---|
| 360 | sudo chown root:root \$(MOUNT_PT)/etc/os-release
|
---|
[877cc6a] | 361 | @\$(call echo_finished,$VERSION)
|
---|
| 362 |
|
---|
[045b2dc] | 363 | ck_UID:
|
---|
| 364 | @if [ \`id -u\` = "0" ]; then \\
|
---|
| 365 | echo "--------------------------------------------------"; \\
|
---|
| 366 | echo "You cannot run this makefile from the root account"; \\
|
---|
| 367 | echo "--------------------------------------------------"; \\
|
---|
| 368 | exit 1; \\
|
---|
| 369 | fi
|
---|
| 370 |
|
---|
[9728b23] | 371 | ck_terminal:
|
---|
[7e0a1b8] | 372 | @stty size | ( read L C; \\
|
---|
| 373 | if (( L < 24 )) || (( C < 80 )) ; then \\
|
---|
[9728b23] | 374 | echo "--------------------------------------------------"; \\
|
---|
[7e0a1b8] | 375 | echo "Terminal too small: \$\$C columns x \$\$L lines";\\
|
---|
[9728b23] | 376 | echo "Minimum: 80 columns x 24 lines";\\
|
---|
| 377 | echo "--------------------------------------------------"; \\
|
---|
| 378 | exit 1; \\
|
---|
[7e0a1b8] | 379 | fi )
|
---|
[9728b23] | 380 |
|
---|
[045b2dc] | 381 | mk_SETUP:
|
---|
| 382 | @\$(call echo_SU_request)
|
---|
[dd7e0f67] | 383 | @sudo make save-luser
|
---|
[dbcdfd7] | 384 | @sudo make BREAKPOINT=\$(BREAKPOINT) SETUP
|
---|
[045b2dc] | 385 | @touch \$@
|
---|
| 386 |
|
---|
| 387 | mk_LUSER: mk_SETUP
|
---|
| 388 | @\$(call echo_SULUSER_request)
|
---|
[903eefd] | 389 | @\$(SU_LUSER) "make -C \$(MOUNT_PT)/\$(SCRIPT_ROOT) BREAKPOINT=\$(BREAKPOINT) LUSER"
|
---|
| 390 | @sudo make restore-luser
|
---|
[045b2dc] | 391 | @touch \$@
|
---|
| 392 |
|
---|
| 393 | mk_SUDO: mk_LUSER
|
---|
[a73ed74] | 394 | @sudo rm -f envars
|
---|
[dbcdfd7] | 395 | @sudo make BREAKPOINT=\$(BREAKPOINT) SUDO
|
---|
[1330ebc] | 396 | @touch \$@
|
---|
| 397 |
|
---|
[200cc01] | 398 | mk_CHROOT: mk_SUDO devices
|
---|
[045b2dc] | 399 | @\$(call echo_CHROOT_request)
|
---|
[d68eb1b] | 400 | @( sudo \$(CHROOT1) -c "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) CHROOT")
|
---|
[045b2dc] | 401 | @touch \$@
|
---|
[877cc6a] | 402 |
|
---|
[200cc01] | 403 | mk_BOOT: mk_CHROOT devices
|
---|
[045b2dc] | 404 | @\$(call echo_CHROOT_request)
|
---|
[20051e0] | 405 | @( sudo \$(CHROOT1) -c "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) BOOT")
|
---|
[045b2dc] | 406 | @touch \$@
|
---|
[877cc6a] | 407 |
|
---|
[200cc01] | 408 | mk_BLFS_TOOL: create-sbu_du-report devices
|
---|
[ac9bdc7] | 409 | @if [ "\$(ADD_BLFS_TOOLS)" = "y" ]; then \\
|
---|
| 410 | \$(call sh_echo_PHASE,Building BLFS_TOOL); \\
|
---|
[20051e0] | 411 | (sudo \$(CHROOT1) -c "make -C $BLFS_ROOT/work"); \\
|
---|
[ac9bdc7] | 412 | fi;
|
---|
| 413 | @touch \$@
|
---|
| 414 |
|
---|
[200cc01] | 415 | mk_CUSTOM_TOOLS: mk_BLFS_TOOL devices
|
---|
[3e7ceed] | 416 | @if [ "\$(ADD_CUSTOM_TOOLS)" = "y" ]; then \\
|
---|
[3bc6078] | 417 | \$(call sh_echo_PHASE,Building CUSTOM_TOOLS); \\
|
---|
[3e7ceed] | 418 | sudo mkdir -p ${BUILDDIR}${TRACKING_DIR}; \\
|
---|
[20051e0] | 419 | (sudo \$(CHROOT1) -c "cd \$(SCRIPT_ROOT) && make BREAKPOINT=\$(BREAKPOINT) CUSTOM_TOOLS"); \\
|
---|
[3e7ceed] | 420 | fi;
|
---|
| 421 | @touch \$@
|
---|
| 422 |
|
---|
[f60a8b7] | 423 | devices: ck_UID
|
---|
[3722d31] | 424 | sudo env LFS=\$(MOUNT_PT) kernfs-scripts/devices.sh
|
---|
[d39252b] | 425 | EOF
|
---|
| 426 | ) >> $MKFILE
|
---|
[262e174] | 427 | # With systemd, the commands in chapter 9 do not create a
|
---|
| 428 | # valid /etc/resolv.conf, so that if we want to enter chroot,
|
---|
| 429 | # and systemd has not yet been run (otherwise /etc/resolv.conf
|
---|
| 430 | # exists), we just copy resolv.conf from the host.
|
---|
[d39252b] | 431 | if [ "$INITSYS" = systemd ]; then
|
---|
| 432 | (
|
---|
| 433 | cat << EOF
|
---|
[262e174] | 434 | if ! [ -e \$(MOUNT_PT)/etc/resolv.conf ]; then \\
|
---|
| 435 | sudo cp -v /etc/resolv.conf \$(MOUNT_PT)/etc; \\
|
---|
| 436 | sudo touch \$(MOUNT_PT)/etc/.host-resolvconf; \\
|
---|
| 437 | fi
|
---|
[d39252b] | 438 | EOF
|
---|
| 439 | ) >> $MKFILE
|
---|
| 440 | fi
|
---|
| 441 | (
|
---|
| 442 | cat << EOF
|
---|
[13c475b] | 443 |
|
---|
[2e1c1c3] | 444 | teardown:
|
---|
[3722d31] | 445 | sudo env LFS=\$(MOUNT_PT) kernfs-scripts/teardown.sh
|
---|
[262e174] | 446 | EOF
|
---|
| 447 | ) >> $MKFILE
|
---|
| 448 | # With systemd, the commands in chapter 9 do not create a
|
---|
| 449 | # valid /etc/resolv.conf, so that if we want to enter chroot,
|
---|
| 450 | # and systemd has not yet been run (otherwise /etc/resolv.conf
|
---|
| 451 | # exists), we just copy resolv.conf from the host.
|
---|
| 452 | # We need to remove it now, if it has been created.
|
---|
| 453 | if [ "$INITSYS" = systemd ]; then
|
---|
| 454 | (
|
---|
| 455 | cat << EOF
|
---|
| 456 | if [ -e \$(MOUNT_PT)/etc/.host-resolvconf ]; then \\
|
---|
| 457 | sudo rm -v \$(MOUNT_PT)/etc/resolv.conf; \\
|
---|
| 458 | sudo rm -v \$(MOUNT_PT)/etc/.host-resolvconf; \\
|
---|
| 459 | fi
|
---|
| 460 | EOF
|
---|
| 461 | ) >> $MKFILE
|
---|
| 462 | fi
|
---|
| 463 | (
|
---|
| 464 | cat << EOF
|
---|
[d39252b] | 465 |
|
---|
| 466 | chroot1: devices
|
---|
[c552eab] | 467 | -sudo \$(CHROOT1)
|
---|
[d39252b] | 468 | \$(MAKE) teardown
|
---|
[7c17066] | 469 |
|
---|
| 470 | chroot: devices
|
---|
[c552eab] | 471 | -sudo \$(CHROOT1)
|
---|
[7c17066] | 472 | \$(MAKE) teardown
|
---|
[877cc6a] | 473 |
|
---|
[ebe1ba6] | 474 | SETUP: $SETUP_TGT
|
---|
| 475 | LUSER: $LUSER_TGT
|
---|
| 476 | SUDO: $SUDO_TGT
|
---|
[13c475b] | 477 | EOF
|
---|
| 478 | ) >> $MKFILE
|
---|
[262e174] | 479 | # With systemd, the commands in chapter 9 do not create a
|
---|
| 480 | # valid /etc/resolv.conf, so that if blfs_tools are installed, and
|
---|
| 481 | # make-ca is run, it cannot connect. We just copy resolv.conf
|
---|
| 482 | # from the host. We'll remove it at the end.
|
---|
[13c475b] | 483 | if [ "$INITSYS" = systemd ]; then
|
---|
| 484 | (
|
---|
| 485 | cat << EOF
|
---|
[262e174] | 486 | @cp -v /etc/resolv.conf \$(MOUNT_PT)/etc
|
---|
[13c475b] | 487 |
|
---|
| 488 | EOF
|
---|
| 489 | ) >> $MKFILE
|
---|
| 490 | fi
|
---|
| 491 | (
|
---|
| 492 | cat << EOF
|
---|
[a73ed74] | 493 | CHROOT: SHELL=\$(filter %bash,\$(CHROOT1))
|
---|
[ebe1ba6] | 494 | CHROOT: $CHROOT_TGT
|
---|
| 495 | BOOT: $BOOT_TGT
|
---|
[3e7ceed] | 496 | CUSTOM_TOOLS: $custom_list
|
---|
[fe24ca6] | 497 |
|
---|
[1838bc7] | 498 | create-sbu_du-report: mk_BOOT
|
---|
| 499 | @\$(call echo_message, Building)
|
---|
| 500 | @if [ "\$(ADD_REPORT)" = "y" ]; then \\
|
---|
[c57747d] | 501 | sudo ./create-sbu_du-report.sh logs $VERSION $(date --iso-8601); \\
|
---|
[1838bc7] | 502 | \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
|
---|
[903eefd] | 503 | fi
|
---|
[1838bc7] | 504 | @touch \$@
|
---|
[045b2dc] | 505 |
|
---|
[903eefd] | 506 | save-luser:
|
---|
[877cc6a] | 507 | @\$(call echo_message, Building)
|
---|
[49e2745] | 508 | @LUSER_ID=\$\$(grep '^\$(LUSER):' /etc/passwd | cut -d: -f3); \\
|
---|
[dd7e0f67] | 509 | if [ -n "\$\$LUSER_ID" ]; then \\
|
---|
[903eefd] | 510 | if [ ! -d \$(LUSER_HOME).XXX ]; then \\
|
---|
| 511 | mv \$(LUSER_HOME){,.XXX}; \\
|
---|
| 512 | mkdir \$(LUSER_HOME); \\
|
---|
| 513 | chown \$(LUSER):\$(LGROUP) \$(LUSER_HOME); \\
|
---|
| 514 | fi; \\
|
---|
[dd7e0f67] | 515 | echo "\$\$LUSER_ID" > luser-id; \\
|
---|
| 516 | echo User \$(LUSER) exists with ID \$\$LUSER_ID; \\
|
---|
[903eefd] | 517 | else \\
|
---|
[49e2745] | 518 | rm -f luser-id; \\
|
---|
[dd7e0f67] | 519 | echo User \$(LUSER) does not exist; \\
|
---|
| 520 | echo It will be created with book instructions.; \\
|
---|
[903eefd] | 521 | fi
|
---|
[dbcdfd7] | 522 | @\$(call housekeeping)
|
---|
[a858a78] | 523 |
|
---|
[903eefd] | 524 | restore-luser:
|
---|
| 525 | @\$(call echo_message, Building)
|
---|
| 526 | @if [ -f luser-id ]; then \\
|
---|
| 527 | rm -rf \$(LUSER_HOME); \\
|
---|
| 528 | mv \$(LUSER_HOME){.XXX,}; \\
|
---|
| 529 | rm luser-id; \\
|
---|
| 530 | else \\
|
---|
[6ad5a2f] | 531 | userdel \$(LUSER); \\
|
---|
[903eefd] | 532 | groupdel \$(LGROUP); \\
|
---|
[962793a] | 533 | rm -rf \$(LUSER_HOME); \\
|
---|
[903eefd] | 534 | fi
|
---|
| 535 | @\$(call housekeeping)
|
---|
| 536 |
|
---|
| 537 | do_housekeeping:
|
---|
[706e5bf] | 538 | @-rm -f /tools
|
---|
[a858a78] | 539 |
|
---|
[877cc6a] | 540 | EOF
|
---|
| 541 | ) >> $MKFILE
|
---|
| 542 |
|
---|
| 543 | # Bring over the items from the Makefile.tmp
|
---|
| 544 | cat $MKFILE.tmp >> $MKFILE
|
---|
| 545 | rm $MKFILE.tmp
|
---|
[c7c5a53] | 546 | echo "Creating Makefile... ${BOLD}DONE${OFF}"
|
---|
| 547 | }
|
---|