1 | #!/bin/bash
|
---|
2 | set -e
|
---|
3 | # Pass trap handlers to functions
|
---|
4 | set -E
|
---|
5 |
|
---|
6 | # VT100 colors
|
---|
7 | declare -r RED=$'\e[31m'
|
---|
8 | declare -r GREEN=$'\e[32m'
|
---|
9 | declare -r YELLOW=$'\e[33m'
|
---|
10 |
|
---|
11 | # shellcheck disable=SC2034
|
---|
12 | declare -r BLUE=$'\e[34m'
|
---|
13 | declare -r OFF=$'\e[0m'
|
---|
14 | declare -r BOLD=$'\e[1m'
|
---|
15 | declare -r tab_=$'\t'
|
---|
16 | declare -r nl_=$'\n'
|
---|
17 |
|
---|
18 | # shellcheck disable=SC2034
|
---|
19 | declare -r DD_BORDER="${BOLD}==============================================================================${OFF}"
|
---|
20 | # shellcheck disable=SC2034
|
---|
21 | declare -r SD_BORDER="${BOLD}------------------------------------------------------------------------------${OFF}"
|
---|
22 | # shellcheck disable=SC2034
|
---|
23 | declare -r STAR_BORDER="${BOLD}******************************************************************************${OFF}"
|
---|
24 |
|
---|
25 | # bold yellow > < pair
|
---|
26 | declare -r R_arrow=$'\e[1;33m>\e[0m'
|
---|
27 | declare -r L_arrow=$'\e[1;33m<\e[0m'
|
---|
28 |
|
---|
29 |
|
---|
30 | #>>>>>>>>>>>>>>>ERROR TRAPPING >>>>>>>>>>>>>>>>>>>>
|
---|
31 | #-----------------------#
|
---|
32 | simple_error() { # Basic error trap.... JUST DIE
|
---|
33 | #-----------------------#
|
---|
34 | LASTLINE="$1"
|
---|
35 | LASTERR="$2"
|
---|
36 | LASTSOURCE="$4"
|
---|
37 | error_message "${GREEN} Error $LASTERR at $LASTSOURCE line ${LASTLINE}!"
|
---|
38 | }
|
---|
39 |
|
---|
40 | see_ya() {
|
---|
41 | printf '\n%b%bjhalfs%b exit%b\n' "$L_arrow" "$BOLD" "$R_arrow" "$OFF"
|
---|
42 | }
|
---|
43 | ##### Simple error TRAPS
|
---|
44 | # ctrl-c SIGINT
|
---|
45 | # ctrl-y
|
---|
46 | # ctrl-z SIGTSTP
|
---|
47 | # SIGHUP 1 HANGUP
|
---|
48 | # SIGINT 2 INTRERRUPT FROM KEYBOARD Ctrl-C
|
---|
49 | # SIGQUIT 3
|
---|
50 | # SIGKILL 9 KILL
|
---|
51 | # SIGTERM 15 TERMINATION
|
---|
52 | # SIGSTOP 17,18,23 STOP THE PROCESS
|
---|
53 | #####
|
---|
54 | set -e
|
---|
55 | trap see_ya 0
|
---|
56 | trap 'simple_error "${LINENO}" "$?" "${FUNCNAME}" "${BASH_SOURCE}"' ERR
|
---|
57 | trap 'echo -e "\n\n${RED}INTERRUPT${OFF} trapped\n" && exit 2' \
|
---|
58 | HUP INT QUIT TERM # STOP stops tterminal output and does not seem to
|
---|
59 | # execute the handler
|
---|
60 | #>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
---|
61 |
|
---|
62 | simple_message() {
|
---|
63 | # Prevents having to check $VERBOSITY everywhere
|
---|
64 | if [ "$VERBOSITY" -ne 0 ] ; then
|
---|
65 | # shellcheck disable=SC2059
|
---|
66 | printf "$*"
|
---|
67 | fi
|
---|
68 | }
|
---|
69 |
|
---|
70 | warning_message() {
|
---|
71 | simple_message "${YELLOW}\\nWARNING:${OFF} $*\\n\\n"
|
---|
72 | }
|
---|
73 |
|
---|
74 | error_message() {
|
---|
75 | # Prints an error message and exits with LASTERR or 1
|
---|
76 | if [ -n "$LASTERR" ] ; then
|
---|
77 | LASTERR=$(printf '%d' "$LASTERR")
|
---|
78 | else
|
---|
79 | LASTERR=1
|
---|
80 | fi
|
---|
81 | # If +e then disable text output
|
---|
82 | if [[ "$-" =~ e ]]; then
|
---|
83 | printf '\n\n%bERROR:%b %s\n' "$RED" "$OFF" "$*" >&2
|
---|
84 | fi
|
---|
85 | exit "$LASTERR"
|
---|
86 | }
|
---|
87 |
|
---|
88 | load_file() {
|
---|
89 | # source files in a consistent way with an optional message
|
---|
90 | file="$1"
|
---|
91 | shift
|
---|
92 | msg="Loading file ${file}..."
|
---|
93 | [ -z "$*" ] || msg="$*..."
|
---|
94 | simple_message "$msg"
|
---|
95 |
|
---|
96 | # shellcheck disable=SC1090
|
---|
97 | source "$file" 2>/dev/null || error_message "$file did not load"
|
---|
98 | simple_message "OK\\n"
|
---|
99 | }
|
---|
100 |
|
---|
101 | git_commit=$(git log -1 --format=format:"%h %ad")
|
---|
102 | version="
|
---|
103 | ${BOLD} \"jhalfs\"${OFF} builder tool (development) $git_commit
|
---|
104 |
|
---|
105 | Copyright (C) 2005-2021, the jhalfs team:
|
---|
106 | Jeremy Huntwork
|
---|
107 | George Boudreau
|
---|
108 | Manuel Canales Esparcia
|
---|
109 | Thomas Pegg
|
---|
110 | Matthew Burgess
|
---|
111 | Pierre Labastie
|
---|
112 |
|
---|
113 | Unless specified, all the files in this directory and its sub-directories
|
---|
114 | are subjected to the ${BOLD}MIT license${OFF}. See the ${BOLD}LICENSE${OFF} file.
|
---|
115 |
|
---|
116 | The files in the ${BOLD}menu${OFF} directory are subjected to the ${BOLD}ISC License${OFF}.
|
---|
117 | See ${BOLD}LICENSE.txt${OFF} and ${BOLD}README${OFF} in that directory.
|
---|
118 | "
|
---|
119 |
|
---|
120 | usage="${nl_}${tab_}${BOLD}${RED}This script cannot be called directly${OFF}
|
---|
121 | ${tab_}Type ${BOLD}make${OFF} to run the tool, or
|
---|
122 | ${tab_}Type ${BOLD}./jhalfs -v${OFF} to display version information."
|
---|
123 |
|
---|
124 | case $1 in
|
---|
125 | -v ) echo "$version" && exit ;;
|
---|
126 | run ) : ;;
|
---|
127 | * ) echo "$usage" && exit 1 ;;
|
---|
128 | esac
|
---|
129 |
|
---|
130 | # If the user has not saved his configuration file, let's ask
|
---|
131 | # if he or she really wants to run this stuff
|
---|
132 | time_current=$(stat -c '%Y' configuration 2>/dev/null || date +%s)
|
---|
133 | time_old=$(stat -c '%Y' configuration.old 2>/dev/null || printf '%s' "$time_current")
|
---|
134 | if [ "$(printf '%d' "$time_old")" -ge "$(printf '%d' "$time_current")" ] ; then
|
---|
135 | printf 'Do you want to run jhalfs? yes/no (yes): '
|
---|
136 | read -r ANSWER
|
---|
137 | case ${ANSWER:0:1} in
|
---|
138 | n|N) printf "\nExiting gracefully.\n"; exit ;;
|
---|
139 | esac
|
---|
140 | fi
|
---|
141 |
|
---|
142 | # Change this to 0 to suppress almost all messages
|
---|
143 | VERBOSITY=1
|
---|
144 |
|
---|
145 | load_file configuration "Loading config params from <configuration>"
|
---|
146 |
|
---|
147 | # These are boolean vars generated from Config.in.
|
---|
148 | # ISSUE: If a boolean parameter is not set to y(es) there
|
---|
149 | # is no variable defined by the menu app. This can
|
---|
150 | # cause a headache if you are not aware.
|
---|
151 | # The following variables MUST exist. If they don't, the
|
---|
152 | # default value is n(o).
|
---|
153 | RUNMAKE=${RUNMAKE:-n}
|
---|
154 | GETPKG=${GETPKG:-n}
|
---|
155 | COMPARE=${COMPARE:-n}
|
---|
156 | RUN_ICA=${RUN_ICA:-n}
|
---|
157 | PKGMNGT=${PKGMNGT:-n}
|
---|
158 | WRAP_INSTALL=${WRAP_INSTALL:-n}
|
---|
159 | BOMB_TEST=${BOMB_TEST:-n}
|
---|
160 | STRIP=${STRIP:=n}
|
---|
161 | REPORT=${REPORT:=n}
|
---|
162 | NCURSES5=${NCURSES5:-n}
|
---|
163 | DEL_LA_FILES=${DEL_LA_FILES:-n}
|
---|
164 | FULL_LOCALE=${FULL_LOCALE:-n}
|
---|
165 | GRSECURITY_HOST=${GRSECURITY_HOST:-n}
|
---|
166 | CUSTOM_TOOLS=${CUSTOM_TOOLS:-n}
|
---|
167 | REBUILD_MAKEFILE=${REBUILD_MAKEFILE:-n}
|
---|
168 | INSTALL_LOG=${INSTALL_LOG:-n}
|
---|
169 | CLEAN=${CLEAN:=n}
|
---|
170 | SET_SSP=${SET_SSP:=n}
|
---|
171 | SET_ASLR=${SET_ASLR:=n}
|
---|
172 | SET_PAX=${SET_PAX:=n}
|
---|
173 | SET_HARDENED_TMP=${SET_HARDENED_TMP:=n}
|
---|
174 | SET_WARNINGS=${SET_WARNINGS:=n}
|
---|
175 | SET_MISC=${SET_MISC:=n}
|
---|
176 | SET_BLOWFISH=${SET_BLOWFISH:=n}
|
---|
177 | UNICODE=${UNICODE:=n}
|
---|
178 | LOCAL=${LOCAL:=n}
|
---|
179 | REALSBU=${REALSBU:=n}
|
---|
180 | SAVE_CH5=${SAVE_CH5:=n}
|
---|
181 |
|
---|
182 | if [[ "${NO_PROGRESS_BAR}" = "y" ]] ; then
|
---|
183 | # shellcheck disable=SC2034
|
---|
184 | NO_PROGRESS="#"
|
---|
185 | fi
|
---|
186 |
|
---|
187 | # Sanity check on the location of $BUILDDIR / $JHALFSDIR
|
---|
188 | CWD="$(cd "$(dirname "$0")" && pwd)"
|
---|
189 | if [[ $JHALFSDIR == "$CWD" ]]; then
|
---|
190 | echo " The jhalfs source directory conflicts with the jhalfs build directory."
|
---|
191 | echo " Please move the source directory or change the build directory."
|
---|
192 | exit 2
|
---|
193 | fi
|
---|
194 |
|
---|
195 | # Book sources envars
|
---|
196 | BRANCH_ID=${BRANCH_ID:=development}
|
---|
197 |
|
---|
198 | case $BRANCH_ID in
|
---|
199 | development )
|
---|
200 | case $PROGNAME in
|
---|
201 | clfs* ) TREE="" ;;
|
---|
202 | * ) TREE=trunk ;;
|
---|
203 | esac
|
---|
204 | LFSVRS=development
|
---|
205 | ;;
|
---|
206 | *EDIT* ) echo " You forgot to set the branch or stable book version."
|
---|
207 | echo " Please rerun make and fix the configuration."
|
---|
208 | exit 2 ;;
|
---|
209 | branch-* )
|
---|
210 | case $PROGNAME in
|
---|
211 | lfs )
|
---|
212 | LFSVRS=${BRANCH_ID}
|
---|
213 | TREE=${BRANCH_ID#branch-}
|
---|
214 | ;;
|
---|
215 | clfs* )
|
---|
216 | LFSVRS=${BRANCH_ID}
|
---|
217 | TREE=${BRANCH_ID#branch-}
|
---|
218 | ;;
|
---|
219 | esac
|
---|
220 | ;;
|
---|
221 | * )
|
---|
222 | case $PROGNAME in
|
---|
223 | lfs )
|
---|
224 | LFSVRS=${BRANCH_ID}
|
---|
225 | TREE=${BRANCH_ID}
|
---|
226 | ;;
|
---|
227 | hlfs )
|
---|
228 | LFSVRS=${BRANCH_ID}
|
---|
229 | TREE=tags/${BRANCH_ID}/BOOK
|
---|
230 | ;;
|
---|
231 | clfs* )
|
---|
232 | LFSVRS=${BRANCH_ID}
|
---|
233 | TREE=clfs-${BRANCH_ID}
|
---|
234 | ;;
|
---|
235 | * )
|
---|
236 | esac
|
---|
237 | ;;
|
---|
238 | esac
|
---|
239 |
|
---|
240 | # Set the document location...
|
---|
241 | BOOK=${BOOK:=$JHALFSDIR/$PROGNAME-$LFSVRS}
|
---|
242 |
|
---|
243 |
|
---|
244 | #--- Envars not sourced from configuration
|
---|
245 | # shellcheck disable=SC2034
|
---|
246 | case $PROGNAME in
|
---|
247 | clfs ) declare -r GIT="git://git.clfs.org/cross-lfs" ;;
|
---|
248 | clfs2 ) declare -r GIT="git://git.clfs.org/clfs-sysroot" ;;
|
---|
249 | clfs3 ) declare -r GIT="git://git.clfs.org/clfs-embedded" ;;
|
---|
250 | *) declare -r GIT="git://git.linuxfromscratch.org" ;;
|
---|
251 | esac
|
---|
252 |
|
---|
253 | declare -r LOG=000-masterscript.log
|
---|
254 | # Needed for fetching BLFS book sources when building CLFS
|
---|
255 | # shellcheck disable=SC2034
|
---|
256 | # declare -r GIT="git://git.linuxfromscratch.org"
|
---|
257 |
|
---|
258 | # Set true internal variables
|
---|
259 | COMMON_DIR="common"
|
---|
260 | PACKAGE_DIR=$(echo "$PROGNAME" | tr '[:lower:]' '[:upper:]')
|
---|
261 | MODULE=$PACKAGE_DIR/master.sh
|
---|
262 | PKGMNGTDIR="pkgmngt"
|
---|
263 | # The name packageManager.xml is hardcoded in *.xsl, so no variable.
|
---|
264 |
|
---|
265 | for file in \
|
---|
266 | "$COMMON_DIR/common-functions" \
|
---|
267 | "$COMMON_DIR/libs/func_book_parser" \
|
---|
268 | "$COMMON_DIR/libs/func_download_pkgs" \
|
---|
269 | "$COMMON_DIR/libs/func_wrt_Makefile" \
|
---|
270 | "$MODULE" ; do
|
---|
271 | load_file "$file"
|
---|
272 | done
|
---|
273 |
|
---|
274 | simple_message "${SD_BORDER}${nl_}"
|
---|
275 |
|
---|
276 |
|
---|
277 | #*******************************************************************#
|
---|
278 | LASTERR=2
|
---|
279 | for file in \
|
---|
280 | "$COMMON_DIR/libs/func_check_version.sh" \
|
---|
281 | "$COMMON_DIR/libs/func_validate_configs.sh" \
|
---|
282 | "$COMMON_DIR/libs/func_custom_pkgs" ; do
|
---|
283 | load_file "$file"
|
---|
284 | done
|
---|
285 | unset LASTERR
|
---|
286 |
|
---|
287 | simple_message "${SD_BORDER}${nl_}"
|
---|
288 | simple_message "Checking tools required for jhalfs${nl_}"
|
---|
289 | check_alfs_tools
|
---|
290 | simple_message "${SD_BORDER}${nl_}"
|
---|
291 |
|
---|
292 | # blfs-tool envars
|
---|
293 | BLFS_TOOL=${BLFS_TOOL:-n}
|
---|
294 | if [[ "${BLFS_TOOL}" = "y" ]] ; then
|
---|
295 | simple_message 'Checking supplementary tools for installing BLFS'
|
---|
296 | check_blfs_tools
|
---|
297 | simple_message "${SD_BORDER}${nl_}"
|
---|
298 | BLFS_GIT=${BLFS_GIT:-n}
|
---|
299 | BLFS_WORKING_COPY=${BLFS_WORKING_COPY:-n}
|
---|
300 | BLFS_BRANCH=${BLFS_BRANCH:-n}
|
---|
301 | if [[ "${BLFS_GIT}" = "y" ]]; then
|
---|
302 | BLFS_BRANCH_ID=development
|
---|
303 | BLFS_TREE=trunk
|
---|
304 | elif [[ "${BLFS_WORKING_COPY}" = "y" ]]; then
|
---|
305 | if [[ ! -d "$BLFS_WC_LOCATION/postlfs" ]] ; then
|
---|
306 | echo " BLFS tools: This is not a working copy: $BLFS_WC_LOCATION."
|
---|
307 | echo " Please rerun make and fix the configuration."
|
---|
308 | exit 2
|
---|
309 | fi
|
---|
310 | BLFS_TREE=$(cd $BLFS_WC_LOCATION; git branch --show-current)
|
---|
311 | BLFS_BRANCH_ID=${BLFS_TREE/trunk/development}
|
---|
312 | elif [[ "${BLFS_BRANCH}" = "y" ]] ; then
|
---|
313 | case $BLFS_BRANCH_ID in
|
---|
314 | *EDIT* ) echo " You forgot to set the BLFS branch or stable book version."
|
---|
315 | echo " Please rerun make and fix the configuration."
|
---|
316 | exit 2 ;;
|
---|
317 | * ) BLFS_TREE=${BLFS_BRANCH_ID#branch-}
|
---|
318 | esac
|
---|
319 | fi
|
---|
320 | load_file "${COMMON_DIR}/libs/func_install_blfs"
|
---|
321 | fi
|
---|
322 |
|
---|
323 | ###################################
|
---|
324 | ### MAIN ###
|
---|
325 | ###################################
|
---|
326 |
|
---|
327 |
|
---|
328 | validate_config
|
---|
329 | echo "${SD_BORDER}${nl_}"
|
---|
330 | echo -n "Are you happy with these settings? yes/no (no): "
|
---|
331 | read -r ANSWER
|
---|
332 | if [ "x$ANSWER" != "xyes" ] ; then
|
---|
333 | echo "${nl_}Rerun make to fix the configuration options.${nl_}"
|
---|
334 | exit
|
---|
335 | fi
|
---|
336 | echo "${nl_}${SD_BORDER}${nl_}"
|
---|
337 |
|
---|
338 | # Load additional modules or configuration files based on global settings
|
---|
339 | # compare module
|
---|
340 | if [[ "$COMPARE" = "y" ]]; then
|
---|
341 | load_file "${COMMON_DIR}/libs/func_compare.sh" 'Loading compare module'
|
---|
342 | fi
|
---|
343 | #
|
---|
344 | # save module
|
---|
345 | if [[ "$SAVE_CH5" = "y" ]]; then
|
---|
346 | load_file "${COMMON_DIR}/libs/func_save.sh" 'Loading save module'
|
---|
347 | fi
|
---|
348 | #
|
---|
349 | # optimize module
|
---|
350 | if [[ "$OPTIMIZE" != "0" ]]; then
|
---|
351 | load_file optimize/optimize_functions 'Loading optimization module'
|
---|
352 | #
|
---|
353 | # optimize configurations
|
---|
354 | load_file optimize/opt_config 'Loading optimization config'
|
---|
355 | # The number of parallel jobs is taken from configuration now
|
---|
356 | # shellcheck disable=SC2034
|
---|
357 | JH_MAKEFLAGS="-j${N_PARALLEL}"
|
---|
358 | # Validate optimize settings, if required
|
---|
359 | validate_opt_settings
|
---|
360 | fi
|
---|
361 | #
|
---|
362 |
|
---|
363 | if [[ "$REBUILD_MAKEFILE" = "n" ]] ; then
|
---|
364 |
|
---|
365 | # If requested, clean the build directory
|
---|
366 | clean_builddir
|
---|
367 |
|
---|
368 | if [[ ! -d $JHALFSDIR ]]; then
|
---|
369 | sudo mkdir -p "$JHALFSDIR"
|
---|
370 | # Do not assume there is a group named as $USER, do not use
|
---|
371 | # $USER:$USER...
|
---|
372 | sudo chown "$USER" "$JHALFSDIR"
|
---|
373 | fi
|
---|
374 |
|
---|
375 | # Create $BUILDDIR/sources even though it could be created by get_sources()
|
---|
376 | if [[ ! -d $BUILDDIR/sources ]]; then
|
---|
377 | sudo mkdir -p "$BUILDDIR/sources"
|
---|
378 | sudo chmod a+wt "$BUILDDIR/sources"
|
---|
379 | fi
|
---|
380 |
|
---|
381 | # Create the log directory
|
---|
382 | if [[ ! -d $LOGDIR ]]; then
|
---|
383 | mkdir "$LOGDIR"
|
---|
384 | fi
|
---|
385 | true >"$LOGDIR/$LOG"
|
---|
386 |
|
---|
387 | # Copy common helper files
|
---|
388 | cp "$COMMON_DIR"/{makefile-functions,progress_bar.sh} "$JHALFSDIR/"
|
---|
389 |
|
---|
390 | # Copy needed stylesheets
|
---|
391 | cp "$COMMON_DIR"/{packages.xsl,chroot.xsl,kernfs.xsl} "$JHALFSDIR/"
|
---|
392 |
|
---|
393 | # Fix the XSL book parser
|
---|
394 | case $PROGNAME in
|
---|
395 | clfs* ) sed 's,FAKEDIR,'"${BOOK}/BOOK"',' "${PACKAGE_DIR}/${XSL}" > "${JHALFSDIR}/${XSL}" ;;
|
---|
396 | lfs | hlfs ) sed 's,FAKEDIR,'"$BOOK"',' "${PACKAGE_DIR}/${XSL}" > "${JHALFSDIR}/${XSL}" ;;
|
---|
397 | * ) ;;
|
---|
398 | esac
|
---|
399 | export XSL=$JHALFSDIR/${XSL}
|
---|
400 |
|
---|
401 | # Copy packageManager.xml, if needed
|
---|
402 | [[ "$PKGMNGT" = "y" ]] && [[ "$PROGNAME" = "lfs" ]] && {
|
---|
403 | sed s@BOOK@"$BOOK"@ "$PKGMNGTDIR/packageManager.xml" > \
|
---|
404 | "$JHALFSDIR/"packageManager.xml
|
---|
405 | cp "$PKGMNGTDIR/packInstall.sh" "$JHALFSDIR/"
|
---|
406 | }
|
---|
407 |
|
---|
408 | # Copy urls.xsl, if needed
|
---|
409 | [[ "$GETPKG" = "y" ]] && cp "$COMMON_DIR/urls.xsl" "$JHALFSDIR/"
|
---|
410 |
|
---|
411 | # Always create the test-log directory to allow user to "uncomment" test
|
---|
412 | # instructions
|
---|
413 | install -d -m 1777 "$TESTLOGDIR"
|
---|
414 |
|
---|
415 | # Create the installed-files directory, if needed
|
---|
416 | [[ "$INSTALL_LOG" = "y" ]] && [[ ! -d $FILELOGDIR ]] && install -d -m 1777 "$FILELOGDIR"
|
---|
417 |
|
---|
418 | # Prepare report creation, if needed
|
---|
419 | if [[ "$REPORT" = "y" ]]; then
|
---|
420 | cp $COMMON_DIR/create-sbu_du-report.sh "$JHALFSDIR/"
|
---|
421 | # After making sure that all looks sane, dump the settings to a file
|
---|
422 | # This file will be used to create the REPORT header
|
---|
423 | validate_config >"$JHALFSDIR/jhalfs.config"
|
---|
424 | fi
|
---|
425 |
|
---|
426 | # Copy optimize files, if needed
|
---|
427 | [[ "$OPTIMIZE" != "0" ]] && cp optimize/opt_override "$JHALFSDIR/"
|
---|
428 |
|
---|
429 | # Copy compare files, if needed
|
---|
430 | if [[ "$COMPARE" = "y" ]]; then
|
---|
431 | mkdir -p "$JHALFSDIR/extras"
|
---|
432 | cp extras/* "$JHALFSDIR/extras"
|
---|
433 | fi
|
---|
434 |
|
---|
435 | # Copy custom tools config files, if requested
|
---|
436 | if [[ "${CUSTOM_TOOLS}" = "y" ]]; then
|
---|
437 | echo "Copying custom tool scripts to $JHALFSDIR"
|
---|
438 | mkdir -p "$JHALFSDIR/custom-commands"
|
---|
439 | cp -f custom/config/* "$JHALFSDIR/custom-commands"
|
---|
440 | fi
|
---|
441 |
|
---|
442 | # Download or updates the book source
|
---|
443 | # Note that all customization to $JHALFSDIR have to be done before this.
|
---|
444 | # But the LFS book is needed for BLFS tools.
|
---|
445 | get_book
|
---|
446 | # At this point, we should have a way to know whether we have a cross
|
---|
447 | # or regular book... In case of cross, prohibite TEST=3
|
---|
448 | # the position of gcc-pass2 (chapter 6 or 5) tells us (not valid for
|
---|
449 | # cross-chap5 branch).
|
---|
450 | if (( TEST == 3 )) && \
|
---|
451 | [ -f "$BOOK/chapter06/gcc-pass2.xml" ]; then
|
---|
452 | TEST=2
|
---|
453 | fi
|
---|
454 | extract_commands
|
---|
455 | echo "${SD_BORDER}${nl_}"
|
---|
456 | cd "$CWD" # the functions above change directory
|
---|
457 |
|
---|
458 | # Install blfs-tool, if requested.
|
---|
459 | if [[ "${BLFS_TOOL}" = "y" ]] ; then
|
---|
460 | echo Installing BLFS book and tools
|
---|
461 | install_blfs_tools 2>&1 | tee -a "$LOGDIR/$LOG"
|
---|
462 | [[ ${PIPESTATUS[0]} != 0 ]] && exit 1
|
---|
463 | fi
|
---|
464 |
|
---|
465 | fi
|
---|
466 |
|
---|
467 | # shellcheck disable=SC2034
|
---|
468 | if [[ "$REBUILD_MAKEFILE" = "y" ]] ; then
|
---|
469 | # Sanity check: users tend to tick "rebuild Makefile"
|
---|
470 | # without generating one first. Check we have one:
|
---|
471 | if [ ! -f $MKFILE ]; then
|
---|
472 | set -e
|
---|
473 | error_message "You cannot \"rebuild Makefile\" without first building one"
|
---|
474 | fi
|
---|
475 | # When regenerating the Makefile, we need to know also the
|
---|
476 | # canonical book version
|
---|
477 | case $PROGNAME in
|
---|
478 | clfs* )
|
---|
479 | VERSION=$(xmllint --noent "$BOOK/prologue/$ARCH/bookinfo.xml" 2>/dev/null | grep subtitle | sed -e 's/^.*ion //' -e 's/<\/.*//') ;;
|
---|
480 | lfs)
|
---|
481 | version_is_in=general.ent
|
---|
482 | if [ -x $BOOK/git-version.sh ]; then
|
---|
483 | ( cd $BOOK && ./git-version.sh )
|
---|
484 | version_is_in=version.ent
|
---|
485 | fi
|
---|
486 | if [[ "$INITSYS" = "sysv" ]] ; then
|
---|
487 | VERSION=$(grep 'ENTITY version ' "$BOOK/$version_is_in" | cut -d\" -f2)
|
---|
488 | else
|
---|
489 | VERSION=$(grep 'ENTITY versiond' "$BOOK/$version_is_in" | cut -d\" -f2)
|
---|
490 | fi
|
---|
491 | ;;
|
---|
492 | *)
|
---|
493 | VERSION=$(xmllint --noent "$BOOK/prologue/bookinfo.xml" 2>/dev/null | grep subtitle | sed -e 's/^.*ion //' -e 's/<\/.*//') ;;
|
---|
494 | esac
|
---|
495 | fi
|
---|
496 |
|
---|
497 | build_Makefile
|
---|
498 |
|
---|
499 | echo "${SD_BORDER}${nl_}"
|
---|
500 |
|
---|
501 | # Check for build prerequisites.
|
---|
502 | echo
|
---|
503 | cd "$CWD"
|
---|
504 | check_prerequisites
|
---|
505 | echo "${SD_BORDER}${nl_}"
|
---|
506 | # All is well, run the build (if requested)
|
---|
507 | run_make
|
---|