source: install-blfs-tools.sh@ 88e5cbc

ablfs-more trunk
Last change on this file since 88e5cbc was 9b99ada, checked in by Pierre Labastie <pierre.labastie@…>, 2 years ago

Change variable names and logic for BLFS book

Only use BLFS_COMMIT instead of BLFS_BRANCH_ID, BLFS_TREE, BLFS_BOOK
Same for le LFS_BLFS variables

  • Property mode set to 100755
File size: 6.3 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)
[9b99ada]13BLFS_COMMIT : any commit (branch/tag/sha)
14 (default trunk)
15LFS_COMMIT : any commit (branch/tag/sha)
16 (default trunk)
[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
[9b99ada]70 [[ "$BRANCH" = y ]] && BLFS_COMMIT=$COMMIT
[e5d44f5]71 [[ "$WORKING_COPY" = y ]] && BLFS_BOOK=$BOOK
72 [[ "$BOOK" = "**EDIT ME**" ]] &&
[506120ee]73 echo You have not set the BLFS working copy location && exit 1
[9b99ada]74 [[ "$LFS_BRANCH" = y ]] && LFS_COMMIT=$BLFS_LFS_COMMIT
[506120ee]75 [[ "$LFS_WORKING_COPY" = y ]] && LFS_BOOK=$BLFS_LFS_BOOK
76 [[ "$LFS_BOOK" = "**EDIT ME**" ]] &&
77 echo You have not set the LFS working copy location && exit 1
[e5d44f5]78fi
79
[e576789]80COMMON_DIR="common"
[e5d44f5]81# blfs-tool envars
[e576789]82BLFS_TOOL='y'
83BUILDDIR=$(cd ~;pwd)
[65d7d46]84BLFS_ROOT="${BLFS_ROOT:=/blfs_root}"
85TRACKING_DIR="${TRACKING_DIR:=/var/lib/jhalfs/BLFS}"
[39dc04a]86INITSYS="${INITSYS:=sysv}"
[9b99ada]87BLFS_COMMIT=${BLFS_COMMIT:=trunk}
88LFS_COMMIT=${LFS_COMMIT:=trunk}
[e5d44f5]89BLFS_XML=${BLFS_XML:=blfs-xml}
[506120ee]90LFS_XML=${LFS_XML:=lfs-xml}
[e5d44f5]91
92# Validate the configuration:
[506120ee]93PARAMS="BLFS_ROOT TRACKING_DIR INITSYS BLFS_XML LFS_XML"
[e5d44f5]94if [ "$WORKING_COPY" = y ]; then
[506120ee]95 PARAMS="$PARAMS WORKING_COPY BLFS_BOOK"
[e5d44f5]96else
[9b99ada]97 PARAMS="$PARAMS BLFS_COMMIT"
[e5d44f5]98fi
[506120ee]99if [ "$LFS_WORKING_COPY" = y ]; then
100 PARAMS="$PARAMS LFS_WORKING_COPY LFS_BOOK"
101else
[9b99ada]102 PARAMS="$PARAMS LFS_COMMIT"
[506120ee]103fi
[e5d44f5]104# Format for displaying parameters:
105declare -r PARAM_VALS='${config_param}${dotSTR:${#config_param}} ${L_arrow}${BOLD}${!config_param}${OFF}${R_arrow}'
106
107for config_param in $PARAMS; do
108 echo -e "`eval echo $PARAM_VALS`"
109done
[e576789]110
[e5d44f5]111echo "${SD_BORDER}${nl_}"
112echo -n "Are you happy with these settings? yes/no (no): "
113read ANSWER
114if [ x$ANSWER != "xyes" ] ; then
115 echo "${nl_}Rerun make and fix your settings.${nl_}"
116 exit
117fi
[e576789]118[[ $VERBOSITY > 0 ]] && echo "${SD_BORDER}${nl_}"
119
120#*******************************************************************#
[e25788e]121[[ $VERBOSITY > 0 ]] && echo -n "Loading function <func_check_version.sh> ..."
[e576789]122source $COMMON_DIR/libs/func_check_version.sh
123[[ $? > 0 ]] && echo " function module did not load.." && exit 2
[e25788e]124[[ $VERBOSITY > 0 ]] && echo " OK"
[e576789]125
126[[ $VERBOSITY > 0 ]] && echo "${SD_BORDER}${nl_}"
127
128# Check for build prerequisites.
129echo
[65d7d46]130 check_alfs_tools
[e576789]131echo "${SD_BORDER}${nl_}"
132
133# Install the files
[e25788e]134[[ $VERBOSITY > 0 ]] && echo -n "Populating the ${BUILDDIR}${BLFS_ROOT} directory "
[e576789]135[[ ! -d ${BUILDDIR}${BLFS_ROOT} ]] && mkdir -pv ${BUILDDIR}${BLFS_ROOT}
[e5d44f5]136rm -rf ${BUILDDIR}${BLFS_ROOT}/*
[e576789]137cp -r BLFS/* ${BUILDDIR}${BLFS_ROOT}
138cp -r menu ${BUILDDIR}${BLFS_ROOT}
139cp $COMMON_DIR/progress_bar.sh ${BUILDDIR}${BLFS_ROOT}
140cp README.BLFS ${BUILDDIR}${BLFS_ROOT}
141[[ $VERBOSITY > 0 ]] && echo "... OK"
142
143# Clean-up
[e25788e]144[[ $VERBOSITY > 0 ]] && echo -n "Cleaning the ${BUILDDIR}${BLFS_ROOT} directory "
[2dd1992]145# We do not want to keep an old version of the book:
[e5d44f5]146rm -rf ${BUILDDIR}${BLFS_ROOT}/$BLFS_XML
[506120ee]147rm -rf ${BUILDDIR}${BLFS_ROOT}/$LFS_XML
[e576789]148
149# Set some harcoded envars to their proper values
150sed -i s@tracking-dir@$TRACKING_DIR@ \
[b734bfb]151 ${BUILDDIR}${BLFS_ROOT}/{Makefile,gen-makefile.sh,gen_pkg_book.sh}
[65d7d46]152
153# Ensures the tracking directory exists.
154# Throws an error if it does not exist and the user does not
155# have write permission to create it.
156# If it exists, does nothing.
157mkdir -p $TRACKING_DIR
[e576789]158[[ $VERBOSITY > 0 ]] && echo "... OK"
159
[e5d44f5]160[[ -z "$BLFS_BOOK" ]] ||
[506120ee]161[[ $BLFS_BOOK = $BUILDDIR$BLFS_ROOT/$BLFS_XML ]] || {
[e25788e]162[[ $VERBOSITY > 0 ]] && echo -n "Retrieving BLFS working copy (may take some time) "
[e5d44f5]163cp -a $BLFS_BOOK $BUILDDIR$BLFS_ROOT/$BLFS_XML
[e25788e]164[[ $VERBOSITY > 0 ]] && echo "... OK"
[506120ee]165}
166
167[[ -z "$LFS_BOOK" ]] ||
168[[ $LFS_BOOK = $BUILDDIR$BLFS_ROOT/$LFS_XML ]] || {
[e25788e]169[[ $VERBOSITY > 0 ]] && echo -n "Retrieving the LFS working copy (may take some time) "
[506120ee]170cp -a $LFS_BOOK $BUILDDIR$BLFS_ROOT/$LFS_XML
[e25788e]171[[ $VERBOSITY > 0 ]] && echo "... OK"
[506120ee]172}
[e5d44f5]173
[e25788e]174[[ $VERBOSITY > 0 ]] && echo "Initializing the BLFS tool directory "
[2dd1992]175make -j1 -C $BUILDDIR$BLFS_ROOT \
176 TRACKING_DIR=$TRACKING_DIR \
[39dc04a]177 REV=$INITSYS \
[506120ee]178 LFS_XML=$BUILDDIR$BLFS_ROOT/$LFS_XML \
[9b99ada]179 LFS-BRANCH=${LFS_COMMIT} \
[e5d44f5]180 BLFS_XML=$BUILDDIR$BLFS_ROOT/$BLFS_XML \
[9b99ada]181 BLFS-BRANCH=${BLFS_COMMIT} \
[2dd1992]182 $BUILDDIR$BLFS_ROOT/packages.xml
[e576789]183[[ $VERBOSITY > 0 ]] && echo "... OK"
184
Note: See TracBrowser for help on using the repository browser.