source: install-blfs-tools.sh@ a690d42

ablfs-more legacy trunk
Last change on this file since a690d42 was e25788e, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

install-blfs-tools.sh: Minor tidy up

  • Property mode set to 100755
File size: 7.1 KB
RevLine 
[e576789]1#!/bin/bash
[fd4a798]2
[e576789]3set -e
4
[65d7d46]5: << inline_doc
6Installs a set-up to build BLFS packages.
7You can set these variables:
8TRACKING_DIR : where the installed package file is kept.
[506120ee]9 (default /var/lib/jhalfs/BLFS)
10INITSYS : which books do you want? 'sysv' or 'systemd' (default sysv)
[65d7d46]11BLFS_ROOT : where the installed tools will be installed, relative to $HOME.
12 Must start with a '/' (default /blfs_root)
13BLFS_BRANCH_ID: development, branch-xxx, xxx (where xxx is a valid tag)
14 (default development)
[506120ee]15LFS_BRANCH_ID : development, branch-xxx, xxx (where xxx is a valid tag)
16 (default development)
[65d7d46]17Examples:
181 - If you plan to use the tools to build BLFS on top of LFS, but you did not
19use jhalfs, or forgot to include the jhalfs-blfs tools:
[2dd1992]20(as root) mkdir -p /var/lib/jhalfs/BLFS && chown -R <user> /var/lib/jhalfs
[39dc04a]21(as user) INITSYS=<your system> ./install-blfs-tools.sh
[84440e6]222 - To install with only user privileges (default to sysv):
[2dd1992]23TRACKING_DIR=$HOME/blfs_root/trackdir ./install-blfs-tools.sh
[e5d44f5]24
25This script can also be called automatically after running make in this
26directory. The parameters will then be taken from the configuration file.
[65d7d46]27inline_doc
28
29
[e576789]30# VT100 colors
31declare -r BLACK=$'\e[1;30m'
32declare -r DK_GRAY=$'\e[0;30m'
33
34declare -r RED=$'\e[31m'
35declare -r GREEN=$'\e[32m'
36declare -r YELLOW=$'\e[33m'
37declare -r BLUE=$'\e[34m'
38declare -r MAGENTA=$'\e[35m'
39declare -r CYAN=$'\e[36m'
40declare -r WHITE=$'\e[37m'
41
42declare -r OFF=$'\e[0m'
43declare -r BOLD=$'\e[1m'
44declare -r REVERSE=$'\e[7m'
45declare -r HIDDEN=$'\e[8m'
46
47declare -r tab_=$'\t'
48declare -r nl_=$'\n'
49
50declare -r DD_BORDER="${BOLD}==============================================================================${OFF}"
51declare -r SD_BORDER="${BOLD}------------------------------------------------------------------------------${OFF}"
52declare -r STAR_BORDER="${BOLD}******************************************************************************${OFF}"
[e5d44f5]53declare -r dotSTR=".................." # Format display of parameters and versions
[e576789]54
55# bold yellow > < pair
56declare -r R_arrow=$'\e[1;33m>\e[0m'
57declare -r L_arrow=$'\e[1;33m<\e[0m'
58VERBOSITY=1
59
[e5d44f5]60# Take parameters from "configuration" if $1="auto"
61if [ "$1" = auto ]; then
62 [[ $VERBOSITY > 0 ]] && echo -n "Loading configuration ... "
63 source configuration
64 [[ $? > 0 ]] && echo -e "\nconfiguration could not be loaded" && exit 2
65 [[ $VERBOSITY > 0 ]] && echo "OK"
66fi
67
68if [ "$BOOK_BLFS" = y ]; then
69## Read variables and sanity checks
[7a10c525]70 [[ "$relGIT" = y ]] && BLFS_BRANCH_ID=development
[e5d44f5]71 [[ "$BRANCH" = y ]] && BLFS_BRANCH_ID=$BRANCH_ID
72 [[ "$WORKING_COPY" = y ]] && BLFS_BOOK=$BOOK
73 [[ "$BRANCH_ID" = "**EDIT ME**" ]] &&
[506120ee]74 echo You have not set the BLFS book version or branch && exit 1
[e5d44f5]75 [[ "$BOOK" = "**EDIT ME**" ]] &&
[506120ee]76 echo You have not set the BLFS working copy location && exit 1
[7a10c525]77 [[ "$LFS_relGIT" = y ]] && LFS_BRANCH_ID=development
[506120ee]78 [[ "$LFS_BRANCH" = y ]] && LFS_BRANCH_ID=$BLFS_LFS_BRANCH_ID
79 [[ "$LFS_WORKING_COPY" = y ]] && LFS_BOOK=$BLFS_LFS_BOOK
80 [[ "$LFS_BRANCH_ID" = "**EDIT ME**" ]] &&
81 echo You have not set the LFS book version or branch && exit 1
82 [[ "$LFS_BOOK" = "**EDIT ME**" ]] &&
83 echo You have not set the LFS working copy location && exit 1
[e5d44f5]84fi
85
[e576789]86COMMON_DIR="common"
[e5d44f5]87# blfs-tool envars
[e576789]88BLFS_TOOL='y'
89BUILDDIR=$(cd ~;pwd)
[65d7d46]90BLFS_ROOT="${BLFS_ROOT:=/blfs_root}"
91TRACKING_DIR="${TRACKING_DIR:=/var/lib/jhalfs/BLFS}"
[39dc04a]92INITSYS="${INITSYS:=sysv}"
[e5d44f5]93BLFS_BRANCH_ID=${BLFS_BRANCH_ID:=development}
[506120ee]94LFS_BRANCH_ID=${LFS_BRANCH_ID:=development}
[e5d44f5]95BLFS_XML=${BLFS_XML:=blfs-xml}
[506120ee]96LFS_XML=${LFS_XML:=lfs-xml}
[e5d44f5]97
98# Validate the configuration:
[506120ee]99PARAMS="BLFS_ROOT TRACKING_DIR INITSYS BLFS_XML LFS_XML"
[e5d44f5]100if [ "$WORKING_COPY" = y ]; then
[506120ee]101 PARAMS="$PARAMS WORKING_COPY BLFS_BOOK"
[e5d44f5]102else
103 PARAMS="$PARAMS BLFS_BRANCH_ID"
104fi
[506120ee]105if [ "$LFS_WORKING_COPY" = y ]; then
106 PARAMS="$PARAMS LFS_WORKING_COPY LFS_BOOK"
107else
108 PARAMS="$PARAMS LFS_BRANCH_ID"
109fi
[e5d44f5]110# Format for displaying parameters:
111declare -r PARAM_VALS='${config_param}${dotSTR:${#config_param}} ${L_arrow}${BOLD}${!config_param}${OFF}${R_arrow}'
112
113for config_param in $PARAMS; do
114 echo -e "`eval echo $PARAM_VALS`"
115done
[e576789]116
[e5d44f5]117echo "${SD_BORDER}${nl_}"
118echo -n "Are you happy with these settings? yes/no (no): "
119read ANSWER
120if [ x$ANSWER != "xyes" ] ; then
121 echo "${nl_}Rerun make and fix your settings.${nl_}"
122 exit
123fi
[e576789]124[[ $VERBOSITY > 0 ]] && echo "${SD_BORDER}${nl_}"
125
126#*******************************************************************#
[e25788e]127[[ $VERBOSITY > 0 ]] && echo -n "Loading function <func_check_version.sh> ..."
[e576789]128source $COMMON_DIR/libs/func_check_version.sh
129[[ $? > 0 ]] && echo " function module did not load.." && exit 2
[e25788e]130[[ $VERBOSITY > 0 ]] && echo " OK"
[e576789]131
132[[ $VERBOSITY > 0 ]] && echo "${SD_BORDER}${nl_}"
133
134case $BLFS_BRANCH_ID in
[7a10c525]135 development ) BLFS_TREE=trunk ;;
136 branch-* ) BLFS_TREE=${BLFS_BRANCH_ID#branch-} ;;
137 * ) BLFS_TREE=${BLFS_BRANCH_ID} ;;
[e576789]138esac
[506120ee]139case $LFS_BRANCH_ID in
[7a10c525]140 development ) LFS_TREE=trunk ;;
141 branch-* ) LFS_TREE=${LFS_BRANCH_ID#branch-} ;;
142 * ) LFS_TREE=${LFS_BRANCH_ID} ;;
[506120ee]143esac
[e576789]144
145# Check for build prerequisites.
146echo
[65d7d46]147 check_alfs_tools
148 check_blfs_tools
[e576789]149echo "${SD_BORDER}${nl_}"
150
151# Install the files
[e25788e]152[[ $VERBOSITY > 0 ]] && echo -n "Populating the ${BUILDDIR}${BLFS_ROOT} directory "
[e576789]153[[ ! -d ${BUILDDIR}${BLFS_ROOT} ]] && mkdir -pv ${BUILDDIR}${BLFS_ROOT}
[e5d44f5]154rm -rf ${BUILDDIR}${BLFS_ROOT}/*
[e576789]155cp -r BLFS/* ${BUILDDIR}${BLFS_ROOT}
156cp -r menu ${BUILDDIR}${BLFS_ROOT}
157cp $COMMON_DIR/progress_bar.sh ${BUILDDIR}${BLFS_ROOT}
158cp README.BLFS ${BUILDDIR}${BLFS_ROOT}
159[[ $VERBOSITY > 0 ]] && echo "... OK"
160
161# Clean-up
[e25788e]162[[ $VERBOSITY > 0 ]] && echo -n "Cleaning the ${BUILDDIR}${BLFS_ROOT} directory "
[2dd1992]163# We do not want to keep an old version of the book:
[e5d44f5]164rm -rf ${BUILDDIR}${BLFS_ROOT}/$BLFS_XML
[506120ee]165rm -rf ${BUILDDIR}${BLFS_ROOT}/$LFS_XML
[e576789]166
167# Set some harcoded envars to their proper values
168sed -i s@tracking-dir@$TRACKING_DIR@ \
169 ${BUILDDIR}${BLFS_ROOT}/{Makefile,gen-makefile.sh}
[65d7d46]170
171# Ensures the tracking directory exists.
172# Throws an error if it does not exist and the user does not
173# have write permission to create it.
174# If it exists, does nothing.
175mkdir -p $TRACKING_DIR
[e576789]176[[ $VERBOSITY > 0 ]] && echo "... OK"
177
[e5d44f5]178[[ -z "$BLFS_BOOK" ]] ||
[506120ee]179[[ $BLFS_BOOK = $BUILDDIR$BLFS_ROOT/$BLFS_XML ]] || {
[e25788e]180[[ $VERBOSITY > 0 ]] && echo -n "Retrieving BLFS working copy (may take some time) "
[e5d44f5]181cp -a $BLFS_BOOK $BUILDDIR$BLFS_ROOT/$BLFS_XML
[e25788e]182[[ $VERBOSITY > 0 ]] && echo "... OK"
[506120ee]183}
184
185[[ -z "$LFS_BOOK" ]] ||
186[[ $LFS_BOOK = $BUILDDIR$BLFS_ROOT/$LFS_XML ]] || {
[e25788e]187[[ $VERBOSITY > 0 ]] && echo -n "Retrieving the LFS working copy (may take some time) "
[506120ee]188cp -a $LFS_BOOK $BUILDDIR$BLFS_ROOT/$LFS_XML
[e25788e]189[[ $VERBOSITY > 0 ]] && echo "... OK"
[506120ee]190}
[e5d44f5]191
[e25788e]192[[ $VERBOSITY > 0 ]] && echo "Initializing the BLFS tool directory "
[2dd1992]193make -j1 -C $BUILDDIR$BLFS_ROOT \
194 TRACKING_DIR=$TRACKING_DIR \
[39dc04a]195 REV=$INITSYS \
[506120ee]196 LFS_XML=$BUILDDIR$BLFS_ROOT/$LFS_XML \
[7a10c525]197 LFS-GIT=git://git.linuxfromscratch.org/lfs.git \
198 LFS-BRANCH=${LFS_TREE} \
[e5d44f5]199 BLFS_XML=$BUILDDIR$BLFS_ROOT/$BLFS_XML \
[7a10c525]200 GIT=git://git.linuxfromscratch.org/blfs.git \
201 BLFS-BRANCH=${BLFS_TREE} \
[2dd1992]202 $BUILDDIR$BLFS_ROOT/packages.xml
[e576789]203[[ $VERBOSITY > 0 ]] && echo "... OK"
204
Note: See TracBrowser for help on using the repository browser.