[fe30c61] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | #----------------------------#
|
---|
| 4 | get_book() { #
|
---|
| 5 | #----------------------------#
|
---|
| 6 | cd $JHALFSDIR
|
---|
| 7 |
|
---|
[2fd624d] | 8 | if [ -z "$WORKING_COPY" ] ; then
|
---|
[de57ef4] | 9 | # Check for Subversion or git instead of just letting the script fail.
|
---|
[de67016] | 10 | test `type -p git` || eval "echo \"This feature requires Git.\"
|
---|
| 11 | exit 1"
|
---|
[de57ef4] | 12 |
|
---|
[2bf44e2] | 13 | echo -n "Downloading the lfs document, branch/tag/commit: $COMMIT... "
|
---|
[fe30c61] | 14 |
|
---|
| 15 | # Grab a fresh book if it's missing, otherwise, update it from the
|
---|
| 16 | # repo. If we've already extracted the commands, move on to getting the
|
---|
| 17 | # sources.
|
---|
[2fd624d] | 18 | if [ ! -d "$BOOK"/.git ]; then
|
---|
| 19 | git clone "$REPO" "$BOOK" >>"$LOGDIR/$LOG" 2>&1
|
---|
| 20 | if [ "$COMMIT" != trunk ]; then
|
---|
| 21 | pushd "$BOOK" >/dev/null
|
---|
| 22 | echo "Checking out $COMMIT at $PWD"
|
---|
| 23 | git checkout "$COMMIT" >>"$LOGDIR/$LOG" 2>&1
|
---|
| 24 | popd >/dev/null
|
---|
[92b7cb8] | 25 | fi
|
---|
[1cf621b] | 26 | else
|
---|
[2fd624d] | 27 | cd "$BOOK"
|
---|
[de67016] | 28 | # If the repo is in "detached head" state, git pull fails, so get
|
---|
[2fd624d] | 29 | # back first to trunk:
|
---|
| 30 | git checkout trunk >>"$LOGDIR/$LOG" 2>&1
|
---|
| 31 | git pull >>"$LOGDIR/$LOG" 2>&1
|
---|
| 32 | if [ "$COMMIT" != "trunk" ]; then
|
---|
| 33 | git checkout "$COMMIT" >>"$LOGDIR/$LOG" 2>&1
|
---|
[de67016] | 34 | fi
|
---|
[fe30c61] | 35 | fi
|
---|
[1cf621b] | 36 | echo -ne "done\n"
|
---|
[fe30c61] | 37 |
|
---|
[de57ef4] | 38 | else # Working copy
|
---|
[fe30c61] | 39 | echo -ne "Using $BOOK as book's sources ...\n"
|
---|
| 40 | fi
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | #----------------------------#
|
---|
| 44 | extract_commands() { #
|
---|
| 45 | #----------------------------#
|
---|
| 46 |
|
---|
| 47 | cd $JHALFSDIR
|
---|
[d68eb1b] | 48 | # Clean
|
---|
[2bd2fb8] | 49 | rm -rf "$COMMANDS"
|
---|
[fe30c61] | 50 |
|
---|
[d68eb1b] | 51 | # Extract the commands
|
---|
| 52 | echo -n "Extracting commands for"
|
---|
[8825e69] | 53 | echo -n " ${L_arrow}${BOLD}LFS${R_arrow} build... "
|
---|
| 54 | # The scripts pages are xincluded by the book, so must
|
---|
| 55 | # be generated for running xsltproc
|
---|
| 56 | pushd $BOOK > /dev/null
|
---|
| 57 | if [ -f process-scripts.sh ]; then
|
---|
| 58 | bash process-scripts.sh >> $LOGDIR/$LOG 2>&1
|
---|
| 59 | fi
|
---|
| 60 | # Recent git versions need version.ent to be generated
|
---|
| 61 | if [ -f git-version.sh ]; then
|
---|
| 62 | bash git-version.sh "$INITSYS" >> $LOGDIR/$LOG 2>&1
|
---|
| 63 | fi
|
---|
| 64 | popd > /dev/null
|
---|
| 65 |
|
---|
| 66 | # First profile the book, for revision and arch. Note that
|
---|
| 67 | # MULTIBLIB is set to "default" if pure 64 bit book. In this case,
|
---|
| 68 | # profiling on arch is useless, but does not hurt either.
|
---|
| 69 | xsltproc --nonet \
|
---|
| 70 | --xinclude \
|
---|
| 71 | --stringparam profile.revision "$INITSYS" \
|
---|
| 72 | --stringparam profile.arch "$MULTILIB" \
|
---|
| 73 | --output prbook.xml \
|
---|
| 74 | $BOOK/stylesheets/lfs-xsl/profile.xsl \
|
---|
| 75 | $BOOK/index.xml >> $LOGDIR/$LOG 2>&1
|
---|
| 76 |
|
---|
| 77 | # Use the profiled book for generating the scriptlets
|
---|
| 78 | xsltproc --nonet \
|
---|
| 79 | --stringparam testsuite "$TEST" \
|
---|
| 80 | --stringparam bomb-testsuite "$BOMB_TEST" \
|
---|
| 81 | --stringparam ncurses5 "$NCURSES5" \
|
---|
| 82 | --stringparam strip "$STRIP" \
|
---|
| 83 | --stringparam del-la-files "$DEL_LA_FILES" \
|
---|
| 84 | --stringparam full-locale "$FULL_LOCALE" \
|
---|
| 85 | --stringparam timezone "$TIMEZONE" \
|
---|
| 86 | --stringparam page "$PAGE" \
|
---|
| 87 | --stringparam lang "$LANG" \
|
---|
| 88 | --stringparam pkgmngt "$PKGMNGT" \
|
---|
| 89 | --stringparam wrap-install "$WRAP_INSTALL" \
|
---|
| 90 | --stringparam hostname "$HOSTNAME" \
|
---|
| 91 | --stringparam interface "$INTERFACE" \
|
---|
| 92 | --stringparam ip "$IP_ADDR" \
|
---|
| 93 | --stringparam gateway "$GATEWAY" \
|
---|
| 94 | --stringparam prefix "$PREFIX" \
|
---|
| 95 | --stringparam broadcast "$BROADCAST" \
|
---|
| 96 | --stringparam domain "$DOMAIN" \
|
---|
| 97 | --stringparam nameserver1 "$DNS1" \
|
---|
| 98 | --stringparam nameserver2 "$DNS2" \
|
---|
| 99 | --stringparam font "$FONT" \
|
---|
| 100 | --stringparam fontmap "$FONTMAP" \
|
---|
| 101 | --stringparam unicode "$UNICODE" \
|
---|
| 102 | --stringparam keymap "$KEYMAP" \
|
---|
| 103 | --stringparam local "$LOCAL" \
|
---|
| 104 | --stringparam log-level "$LOG_LEVEL" \
|
---|
| 105 | --stringparam script-root "$SCRIPT_ROOT" \
|
---|
| 106 | --output "./${COMMANDS}/" \
|
---|
| 107 | $XSL \
|
---|
| 108 | prbook.xml >> $LOGDIR/$LOG 2>&1
|
---|
| 109 | # Remove flags requesting user action in some cases. Much easier here than
|
---|
| 110 | # in the stylesheet...
|
---|
| 111 | sed -i 's/-iv /-v /' "./${COMMANDS}/"chapter??/*kernel*
|
---|
[fe30c61] | 112 |
|
---|
[b11c10b] | 113 | echo "done"
|
---|
[fe30c61] | 114 |
|
---|
| 115 | # Make the scripts executable.
|
---|
[2bd2fb8] | 116 | chmod -R +x "$JHALFSDIR/${COMMANDS}"
|
---|
[8825e69] | 117 | create_chroot_scripts
|
---|
| 118 | create_kernfs_scripts
|
---|
[fe30c61] | 119 |
|
---|
[840b9ba] | 120 | # we create the VERSION variable here. Should maybe go into its own
|
---|
| 121 | # function. But at this point we can use the profiled xml to get
|
---|
| 122 | # version from lfs-release in the lfs case.
|
---|
[8825e69] | 123 | VERSION=$(grep 'echo.*lfs-release' prbook.xml | sed 's/.*echo[ ]*\([^ ]*\).*/\1/')
|
---|
[840b9ba] | 124 |
|
---|
[fe30c61] | 125 | # Done. Moving on...
|
---|
| 126 | get_sources
|
---|
| 127 | }
|
---|
| 128 |
|
---|
[d68eb1b] | 129 | #----------------------------#
|
---|
[13c475b] | 130 | create_chroot_scripts() { #
|
---|
[d68eb1b] | 131 | #----------------------------#
|
---|
| 132 |
|
---|
[13c475b] | 133 | rm -rf chroot-scripts
|
---|
[d68eb1b] | 134 | echo -n "Creating chroot commands scripts from $BOOK"
|
---|
| 135 | if [ ! -z $ARCH ] ; then echo -n " $ARCH" ; fi
|
---|
| 136 | echo -n "... "
|
---|
[8825e69] | 137 | xsltproc --nonet --xinclude \
|
---|
| 138 | -o chroot-scripts/ chroot.xsl \
|
---|
| 139 | $BOOK/chapter0?/*chroot*.xml >> $LOGDIR/$LOG 2>&1
|
---|
[d68eb1b] | 140 | echo "done"
|
---|
| 141 |
|
---|
| 142 | }
|
---|
[13c475b] | 143 |
|
---|
| 144 | #----------------------------#
|
---|
| 145 | create_kernfs_scripts() { #
|
---|
| 146 | #----------------------------#
|
---|
| 147 |
|
---|
| 148 | rm -rf kernfs-scripts
|
---|
| 149 | mkdir kernfs-scripts
|
---|
| 150 | echo -n "Creating virtual kernel FS commands scripts from $BOOK"
|
---|
| 151 | if [ ! -z $ARCH ] ; then echo -n " $ARCH" ; fi
|
---|
| 152 | echo -n "... "
|
---|
[8825e69] | 153 | xsltproc --nonet \
|
---|
| 154 | -o kernfs-scripts/devices.sh kernfs.xsl \
|
---|
| 155 | $BOOK/*/kernfs.xml >> $LOGDIR/$LOG 2>&1
|
---|
| 156 | xsltproc --nonet \
|
---|
| 157 | -o kernfs-scripts/teardown.sh kernfs.xsl \
|
---|
| 158 | $BOOK/chapter??/reboot.xml >> $LOGDIR/$LOG 2>&1
|
---|
| 159 |
|
---|
[13c475b] | 160 | echo "done"
|
---|
| 161 |
|
---|
| 162 | }
|
---|