1 | # $Id$
|
---|
2 |
|
---|
3 | validate_target() {
|
---|
4 |
|
---|
5 | local -r ERROR_MSG_pt1='The variable \"${L_arrow}TARGET${R_arrow}\" value ${L_arrow}${BOLD}${TARGET}${R_arrow} is invalid for the ${L_arrow}${BOLD}${ARCH}${R_arrow} architecture'
|
---|
6 | local -r ERROR_MSG_pt2=' check the config file ${BOLD}${GREEN}\<$(echo $PROGNAME | tr [a-z] [A-Z])/config\> or \<common/config\>${OFF}'
|
---|
7 |
|
---|
8 | local -r PARAM_VALS='TARGET: ${L_arrow}${BOLD}${TARGET}${OFF}${R_arrow}'
|
---|
9 | local -r PARAM_VALS2='TARGET32: ${L_arrow}${BOLD}${TARGET32}${OFF}${R_arrow}'
|
---|
10 |
|
---|
11 | write_error_and_die() {
|
---|
12 | echo -e "\n${DD_BORDER}"
|
---|
13 | echo -e "`eval echo ${ERROR_MSG_pt1}`" >&2
|
---|
14 | echo -e "`eval echo ${ERROR_MSG_pt2}`" >&2
|
---|
15 | echo -e "${DD_BORDER}\n"
|
---|
16 | exit 1
|
---|
17 | }
|
---|
18 |
|
---|
19 | if [[ ! "${TARGET32}" = "" ]]; then
|
---|
20 | echo -e "`eval echo $PARAM_VALS2`"
|
---|
21 | fi
|
---|
22 | echo -e "`eval echo $PARAM_VALS`"
|
---|
23 |
|
---|
24 | case "${ARCH}" in
|
---|
25 | "x86") [[ "${TARGET}" = "i486-pc-linux-gnu" ]] && return
|
---|
26 | [[ "${TARGET}" = "i586-pc-linux-gnu" ]] && return
|
---|
27 | [[ "${TARGET}" = "i686-pc-linux-gnu" ]] && return
|
---|
28 | ;;
|
---|
29 | "ppc") [[ "${TARGET}" = "powerpc-unknown-linux-gnu" ]] && return
|
---|
30 | ;;
|
---|
31 | "mips") [[ "${TARGET}" = "mipsel-unknown-linux-gnu" ]] && return
|
---|
32 | [[ "${TARGET}" = "mips-unknown-linux-gnu" ]] && return
|
---|
33 | ;;
|
---|
34 | "sparc") [[ "${TARGET}" = "sparcv9-unknown-linux-gnu" ]] && return
|
---|
35 | ;;
|
---|
36 | "sparcv8") [[ "${TARGET}" = "sparc-unknown-linux-gnu" ]] && return
|
---|
37 | ;;
|
---|
38 | "x86_64-64") [[ "${TARGET}" = "x86_64-unknown-linux-gnu" ]] && return
|
---|
39 | ;;
|
---|
40 | "mips64-64") [[ "${TARGET}" = "mipsel-unknown-linux-gnu" ]] && return
|
---|
41 | [[ "${TARGET}" = "mips-unknown-linux-gnu" ]] && return
|
---|
42 | ;;
|
---|
43 | "sparc64-64") [[ "${TARGET}" = "sparc64-unknown-linux-gnu" ]] && return
|
---|
44 | ;;
|
---|
45 | "alpha") [[ "${TARGET}" = "alpha-unknown-linux-gnu" ]] && return
|
---|
46 | ;;
|
---|
47 | "x86_64") [[ "${TARGET}" = "x86_64-unknown-linux-gnu" ]] &&
|
---|
48 | [[ "${TARGET32}" = "i686-pc-linux-gnu" ]] && return
|
---|
49 | ;;
|
---|
50 | "mips64") [[ "${TARGET}" = "mipsel-unknown-linux-gnu" ]] &&
|
---|
51 | [[ "${TARGET32}" = "mipsel-unknown-linux-gnu" ]] && return
|
---|
52 |
|
---|
53 | [[ "${TARGET}" = "mips-unknown-linux-gnu" ]] &&
|
---|
54 | [[ "${TARGET32}" = "mips-unknown-linux-gnu" ]] && return
|
---|
55 | ;;
|
---|
56 | "sparc64") [[ "${TARGET}" = "sparc64-unknown-linux-gnu" ]] &&
|
---|
57 | [[ "${TARGET32}" = "sparcv9-unknown-linux-gnu" ]] && return
|
---|
58 | ;;
|
---|
59 | "ppc64") [[ "${TARGET}" = "powerpc64-unknown-linux-gnu" ]] &&
|
---|
60 | [[ "${TARGET32}" = "powerpc-unknown-linux-gnu" ]] && return
|
---|
61 | ;;
|
---|
62 | *) write_error_and_die
|
---|
63 | ;;
|
---|
64 | esac
|
---|
65 |
|
---|
66 | # If you end up here then there was an error SO...
|
---|
67 | write_error_and_die
|
---|
68 | }
|
---|
69 |
|
---|
70 |
|
---|
71 | #----------------------------#
|
---|
72 | validate_config() { # Are the config values sane (within reason)
|
---|
73 | #----------------------------#
|
---|
74 | : <<inline_doc
|
---|
75 | Validates the configuration parameters. The global var PROGNAME selects the
|
---|
76 | parameter list.
|
---|
77 |
|
---|
78 | input vars: none
|
---|
79 | externals: color constants
|
---|
80 | PROGNAME (lfs,clfs,hlfs,blfs)
|
---|
81 | modifies: none
|
---|
82 | returns: nothing
|
---|
83 | on error: write text to console and dies
|
---|
84 | on success: write text to console and returns
|
---|
85 | inline_doc
|
---|
86 |
|
---|
87 | # First internal variables, then the ones that change the book's flavour, and lastly system configuration variables
|
---|
88 | local -r blfs_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE HPKG DEPEND TEST"
|
---|
89 | local -r hlfs_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE HPKG RUNMAKE MODEL GRSECURITY_HOST TEST STRIP FSTAB CONFIG KEYMAP PAGE TIMEZONE LANG LC_ALL"
|
---|
90 | local -r clfs_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE HPKG RUNMAKE METHOD ARCH TARGET TEST STRIP FSTAB BOOT_CONFIG CONFIG KEYMAP VIMLANG PAGE TIMEZONE LANG"
|
---|
91 | local -r lfs_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE HPKG RUNMAKE TEST STRIP FSTAB CONFIG VIMLANG PAGE TIMEZONE LANG"
|
---|
92 |
|
---|
93 | local -r ERROR_MSG_pt1='The variable \"${L_arrow}${config_param}${R_arrow}\" value ${L_arrow}${BOLD}${!config_param}${R_arrow} is invalid,'
|
---|
94 | local -r ERROR_MSG_pt2=' check the config file ${BOLD}${GREEN}\<$(echo $PROGNAME | tr [a-z] [A-Z])/config\> or \<common/config\>${OFF}'
|
---|
95 | local -r PARAM_VALS='${config_param}: ${L_arrow}${BOLD}${!config_param}${OFF}${R_arrow}'
|
---|
96 |
|
---|
97 | local PARAM_LIST=
|
---|
98 |
|
---|
99 | local config_param
|
---|
100 | local validation_str
|
---|
101 |
|
---|
102 | write_error_and_die() {
|
---|
103 | echo -e "\n${DD_BORDER}"
|
---|
104 | echo -e "`eval echo ${ERROR_MSG_pt1}`" >&2
|
---|
105 | echo -e "`eval echo ${ERROR_MSG_pt2}`" >&2
|
---|
106 | echo -e "${DD_BORDER}\n"
|
---|
107 | exit 1
|
---|
108 | }
|
---|
109 |
|
---|
110 | validate_str() {
|
---|
111 | # This is the 'regexp' test available in bash-3.0..
|
---|
112 | # using it as a poor man's test for substring
|
---|
113 | echo -e "`eval echo $PARAM_VALS`"
|
---|
114 | if [[ ! "${validation_str}" =~ "x${!config_param}x" ]] ; then
|
---|
115 | # parameter value entered is no good
|
---|
116 | write_error_and_die
|
---|
117 | fi
|
---|
118 | }
|
---|
119 |
|
---|
120 | set +e
|
---|
121 | for PARAM_GROUP in ${PROGNAME}_PARAM_LIST; do
|
---|
122 | for config_param in ${!PARAM_GROUP}; do
|
---|
123 | # This is a tricky little piece of code.. executes a cmd string.
|
---|
124 | case $config_param in
|
---|
125 | BUILDDIR) # We cannot have an <empty> or </> root mount point
|
---|
126 | echo -e "`eval echo $PARAM_VALS`"
|
---|
127 | if [[ "xx x/x" =~ "x${!config_param}x" ]]; then
|
---|
128 | write_error_and_die
|
---|
129 | fi
|
---|
130 | continue ;;
|
---|
131 | TIMEZONE) continue;;
|
---|
132 | MKFILE) continue;;
|
---|
133 | HPKG) validation_str="x0x x1x"; validate_str; continue ;;
|
---|
134 | RUNMAKE) validation_str="x0x x1x"; validate_str; continue ;;
|
---|
135 | TEST) validation_str="x0x x1x x2x x3x"; validate_str; continue ;;
|
---|
136 | STRIP) validation_str="x0x x1x"; validate_str; continue ;;
|
---|
137 | VIMLANG) validation_str="x0x x1x"; validate_str; continue ;;
|
---|
138 | DEPEND) validation_str="x0x x1x x2x"; validate_str; continue ;;
|
---|
139 | MODEL) validation_str="xglibcx xuclibcx"; validate_str; continue ;;
|
---|
140 | PAGE) validation_str="xletterx xA4x"; validate_str; continue ;;
|
---|
141 | GRSECURITY_HOST) validation_str="x0x x1x"; validate_str; continue ;;
|
---|
142 | METHOD) validation_str="xchrootx xbootx"; validate_str; continue ;;
|
---|
143 | ARCH) validation_str="xx86x xx86_64x xx86_64-64x xsparcx xsparcv8x xsparc64x xsparc64-64x xmipsx xmips64x xmips64-64x xppcx xppc64x xalphax"; validate_str; continue ;;
|
---|
144 | TARGET) validate_target; continue ;;
|
---|
145 | esac
|
---|
146 |
|
---|
147 |
|
---|
148 | if [[ "${config_param}" = "LC_ALL" ]]; then
|
---|
149 | echo "`eval echo $PARAM_VALS`"
|
---|
150 | [[ -z "${!config_param}" ]] && continue
|
---|
151 | # See it the locale values exist on this machine
|
---|
152 | if [[ "`locale -a | grep -c ${!config_param}`" > 0 ]]; then
|
---|
153 | continue
|
---|
154 | else # If you make it this far then there is a problem
|
---|
155 | write_error_and_die
|
---|
156 | fi
|
---|
157 | fi
|
---|
158 |
|
---|
159 | if [[ "${config_param}" = "LANG" ]]; then
|
---|
160 | echo "`eval echo $PARAM_VALS`"
|
---|
161 | [[ -z "${!config_param}" ]] && continue
|
---|
162 | # See it the locale values exist on this machine
|
---|
163 | if [[ "`locale -a | grep -c ${!config_param}`" > 0 ]]; then
|
---|
164 | continue
|
---|
165 | else # If you make it this far then there is a problem
|
---|
166 | write_error_and_die
|
---|
167 | fi
|
---|
168 | fi
|
---|
169 |
|
---|
170 |
|
---|
171 | if [[ "${config_param}" = "KEYMAP" ]]; then
|
---|
172 | echo "`eval echo $PARAM_VALS`"
|
---|
173 | [[ "${!config_param}" = "none" ]] && continue
|
---|
174 | if [[ -e "/usr/share/kbd/keymaps/${!config_param}" ]] &&
|
---|
175 | [[ -s "/usr/share/kbd/keymaps/${!config_param}" ]]; then
|
---|
176 | continue
|
---|
177 | else
|
---|
178 | write_error_and_die
|
---|
179 | fi
|
---|
180 | fi
|
---|
181 |
|
---|
182 | if [[ "${config_param}" = "SRC_ARCHIVE" ]]; then
|
---|
183 | echo -n "`eval echo $PARAM_VALS`"
|
---|
184 | if [ ! -z ${SRC_ARCHIVE} ]; then
|
---|
185 | if [ ! -d ${SRC_ARCHIVE} ]; then
|
---|
186 | echo " -- is NOT a directory"
|
---|
187 | write_error_and_die
|
---|
188 | fi
|
---|
189 | if [ ! -w ${SRC_ARCHIVE} ]; then
|
---|
190 | echo -n "${nl_} [${BOLD}${YELLOW}WARN$OFF] You do not have <write> access to this directory, ${nl_}${tab_}downloaded files can not be saved in this archive"
|
---|
191 | fi
|
---|
192 | fi
|
---|
193 | echo
|
---|
194 | continue
|
---|
195 | fi
|
---|
196 |
|
---|
197 | if [[ "${config_param}" = "FSTAB" ]]; then
|
---|
198 | echo "`eval echo $PARAM_VALS`"
|
---|
199 | [[ -z "${!config_param}" ]] && continue
|
---|
200 | if [[ -e "${!config_param}" ]] &&
|
---|
201 | [[ -s "${!config_param}" ]]; then
|
---|
202 | continue
|
---|
203 | else
|
---|
204 | write_error_and_die
|
---|
205 | fi
|
---|
206 | fi
|
---|
207 |
|
---|
208 | if [[ "${config_param}" = "BOOK" ]]; then
|
---|
209 | echo "`eval echo $PARAM_VALS`"
|
---|
210 | [[ ! "${WC}" = 1 ]] && continue
|
---|
211 | [[ -z "${!config_param}" ]] && continue
|
---|
212 | if [[ -e "${!config_param}" ]] &&
|
---|
213 | [[ -s "${!config_param}" ]]; then
|
---|
214 | continue
|
---|
215 | else
|
---|
216 | write_error_and_die
|
---|
217 | fi
|
---|
218 | fi
|
---|
219 |
|
---|
220 | if [[ "${config_param}" = "CONFIG" ]]; then
|
---|
221 | echo "`eval echo $PARAM_VALS`"
|
---|
222 | [[ -z "${!config_param}" ]] && continue
|
---|
223 | if [[ -e "${!config_param}" ]] &&
|
---|
224 | [[ -s "${!config_param}" ]]; then
|
---|
225 | continue
|
---|
226 | else
|
---|
227 | write_error_and_die
|
---|
228 | fi
|
---|
229 | fi
|
---|
230 |
|
---|
231 | if [[ "${config_param}" = "BOOT_CONFIG" ]]; then
|
---|
232 | if [[ "${METHOD}" = "boot" ]]; then
|
---|
233 | echo "`eval echo $PARAM_VALS`"
|
---|
234 | # There must be a config file when the build method is 'boot'
|
---|
235 | [[ -e "${!config_param}" ]] && [[ -s "${!config_param}" ]] && continue
|
---|
236 | # If you make it this far then there is a problem
|
---|
237 | write_error_and_die
|
---|
238 | fi
|
---|
239 | fi
|
---|
240 | done
|
---|
241 | done
|
---|
242 |
|
---|
243 | set -e
|
---|
244 | echo "$tab_***${BOLD}${GREEN} ${PARAM_GROUP%%_*T} config parameters look good${OFF} ***"
|
---|
245 | }
|
---|