source: blfs-tool@ 2b0f8a5

experimental
Last change on this file since 2b0f8a5 was 2b0f8a5, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Big change allowed by using only menuconfig.

  • Property mode set to 100755
File size: 3.8 KB
RevLine 
[25b52e2]1#!/bin/bash
[00f4966]2# $Id$
3
[25b52e2]4set -e
5
[2fedf49]6# From common/common-functions
7# VT100 colors
8declare -r BLACK=$'\e[1;30m'
9declare -r DK_GRAY=$'\e[0;30m'
10
11declare -r RED=$'\e[31m'
12declare -r GREEN=$'\e[32m'
13declare -r YELLOW=$'\e[33m'
14declare -r BLUE=$'\e[34m'
15declare -r MAGENTA=$'\e[35m'
16declare -r CYAN=$'\e[36m'
17declare -r WHITE=$'\e[37m'
18
19declare -r OFF=$'\e[0m'
20declare -r BOLD=$'\e[1m'
21declare -r REVERSE=$'\e[7m'
22declare -r HIDDEN=$'\e[8m'
23
24declare -r tab_=$'\t'
25declare -r nl_=$'\n'
26
27declare -r DD_BORDER="${BOLD}==============================================================================${OFF}"
28declare -r SD_BORDER="${BOLD}------------------------------------------------------------------------------${OFF}"
29declare -r STAR_BORDER="${BOLD}******************************************************************************${OFF}"
30
31# bold yellow > < pair
32declare -r R_arrow=$'\e[1;33m>\e[0m'
33declare -r L_arrow=$'\e[1;33m<\e[0m'
34
[25b52e2]35
[00f4966]36#>>>>>>>>>>>>>>>ERROR TRAPPING >>>>>>>>>>>>>>>>>>>>
37#-----------------------#
38simple_error() { # Basic error trap.... JUST DIE
39#-----------------------#
40 # If +e then disable text output
41 if [[ "$-" =~ "e" ]]; then
42 echo -e "\n${RED}ERROR:${GREEN} basic error trapped!${OFF}\n" >&2
43 fi
44}
45
46see_ya() {
[9e627f6]47 echo -e "\n${L_arrow}${BOLD}jhalfs-X${R_arrow} exit${OFF}\n"
[00f4966]48}
49##### Simple error TRAPS
50# ctrl-c SIGINT
51# ctrl-y
52# ctrl-z SIGTSTP
53# SIGHUP 1 HANGUP
54# SIGINT 2 INTRERRUPT FROM KEYBOARD Ctrl-C
55# SIGQUIT 3
56# SIGKILL 9 KILL
57# SIGTERM 15 TERMINATION
58# SIGSTOP 17,18,23 STOP THE PROCESS
59#####
60set -e
61trap see_ya 0
62trap simple_error ERR
63trap 'echo -e "\n\n${RED}INTERRUPT${OFF} trapped\n" && exit 2' 1 2 3 15 17 18 23
64#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
65
[2fedf49]66# envars not sourced from configuration file
67COMMON_DIR="common"
[2b0f8a5]68VERBOSITY=1
[00f4966]69
70[[ $VERBOSITY > 0 ]] && echo -n "Loading config params from <configuration>..."
71source configuration
72[[ $? > 0 ]] && echo "file:configuration did not load.." && exit 1
73[[ $VERBOSITY > 0 ]] && echo "OK"
74
[2fedf49]75[[ $VERBOSITY > 0 ]] && echo -n "Loading function <func_validate_configs.sh>..."
76source $COMMON_DIR/func_validate_configs.sh
77[[ $? > 0 ]] && echo " function module did not load.." && exit 2
78[[ $VERBOSITY > 0 ]] && echo "OK"
79[[ $VERBOSITY > 0 ]] && echo "${SD_BORDER}${nl_}"
80
81# Be sure that we have a configuration file
[00f4966]82[[ -z $BOOK_BLFS ]] && echo -e "\nNo BLFS configuration found. Please configure it." && exit 1
83
[2fedf49]84# Set default book version
85BRANCH_ID=${BRANCH_ID:=development}
86
87# Set the SVN tree
88case $BRANCH_ID in
89 dev* | SVN | trunk ) TREE=trunk/BOOK ;;
90 *EDIT* ) echo " You forgot to set the branch or stable book version."
91 echo " Please rerun make and fix the configuration."
92 exit 2
93 ;;
94 branch-* ) TREE=branches/${BRANCH_ID#branch-}/BOOK ;;
95 * ) TREE=tags/${BRANCH_ID}/BOOK ;;
96esac
[00f4966]97
[2fedf49]98# For consistency with other books
99validate_config
100echo "${SD_BORDER}${nl_}"
101echo -n "Are you happy with these settings? yes/no (no): "
102read ANSWER
103if [ x$ANSWER != "xyes" ] ; then
104 echo "${nl_}Fix the configuration options and rerun the script.${nl_}"
105 exit 1
[00f4966]106fi
[2fedf49]107echo "${nl_}${SD_BORDER}${nl_}"
[00f4966]108
[2fedf49]109# Install the files
[00f4966]110[[ ! -d $BLFS_ROOT ]] && mkdir -p $BLFS_ROOT
111
112cp -r BLFS/* $BLFS_ROOT
[e557f50]113cp -r menu $BLFS_ROOT
[2fedf49]114cp $COMMON_DIR/progress_bar.sh $BLFS_ROOT
[e557f50]115cp README.BLFS $BLFS_ROOT
[00f4966]116
[2fedf49]117# Start the work
[00f4966]118cd $BLFS_ROOT
119
[2fedf49]120# Clean-up
121rm -rf libs/.svn
[350c9cb]122rm -rf menu/.svn
[963169f]123rm -rf menu/lxdialog/.svn
[480390a]124
[2fedf49]125
[cac94f6]126# Set some harcoded envars to their proper values
[2d0a2e5]127sed -i 's,blfs-xml,'$BLFS_XML',' update_book.sh libs/book.xsl
[bc40917]128sed -i 's,tracking-dir,'$TRACKING_DIR',' update_book.sh gen-makefile.sh
[00f4966]129
[bc40917]130# Fetch book sources and create packages and meta-packages dependencies files
[2fedf49]131if [[ -d $BLFS_XML ]] ; then
132 ./update_book.sh
133else
[ecfb828]134 ./update_book.sh get $BLFS_XML $TREE
[2fedf49]135fi
136
[1f7e45f]137# Run the menuconfig interface
138make
[00f4966]139
Note: See TracBrowser for help on using the repository browser.