1 | #!/bin/bash
|
---|
2 |
|
---|
3 | # $Id$
|
---|
4 |
|
---|
5 | set -e
|
---|
6 |
|
---|
7 |
|
---|
8 | no_empty_builddir() {
|
---|
9 | 'clear'
|
---|
10 | cat <<- -EOF-
|
---|
11 | ${DD_BORDER}
|
---|
12 |
|
---|
13 | ${tab_}${tab_}${BOLD}${RED}W A R N I N G${OFF}
|
---|
14 | Looks like the \$BUILDDIR directory contains subdirectories
|
---|
15 | from a previous HLFS build.
|
---|
16 |
|
---|
17 | Please format the partition mounted on \$BUILDDIR or set
|
---|
18 | a different build directory before running jhalfs-X.
|
---|
19 | ${OFF}
|
---|
20 | ${DD_BORDER}
|
---|
21 | -EOF-
|
---|
22 | exit
|
---|
23 | }
|
---|
24 |
|
---|
25 |
|
---|
26 | HEADER="# This file is automatically generated by jhalfs-X
|
---|
27 | # DO NOT EDIT THIS FILE MANUALLY
|
---|
28 | #
|
---|
29 | # Generated on `date \"+%F %X %Z\"`"
|
---|
30 |
|
---|
31 |
|
---|
32 |
|
---|
33 | #----------------------------------#
|
---|
34 | wrt_target() { # Create target and initialize log file
|
---|
35 | #----------------------------------#
|
---|
36 | local i=$1
|
---|
37 | local PREV=$2
|
---|
38 | case $i in
|
---|
39 | iteration* ) local LOGFILE=$this_script.log ;;
|
---|
40 | * ) local LOGFILE=$this_script ;;
|
---|
41 | esac
|
---|
42 | (
|
---|
43 | cat << EOF
|
---|
44 |
|
---|
45 | $i: $PREV
|
---|
46 | @\$(call echo_message, Building)
|
---|
47 | @./progress_bar.sh \$@ &
|
---|
48 | @echo -e "\n\`date\`\n\nKB: \`du -skx --exclude=${SCRIPT_ROOT} \$(MOUNT_PT)\`\n" >logs/$LOGFILE
|
---|
49 | EOF
|
---|
50 | ) >> $MKFILE.tmp
|
---|
51 | }
|
---|
52 |
|
---|
53 |
|
---|
54 | #----------------------------------#
|
---|
55 | wrt_target_boot() { # Create target and initialize log file
|
---|
56 | #----------------------------------#
|
---|
57 | local i=$1
|
---|
58 | local PREV=$2
|
---|
59 | case $i in
|
---|
60 | iteration* ) local LOGFILE=$this_script.log ;;
|
---|
61 | * ) local LOGFILE=$this_script ;;
|
---|
62 | esac
|
---|
63 | (
|
---|
64 | cat << EOF
|
---|
65 |
|
---|
66 | $i: $PREV
|
---|
67 | @\$(call echo_message, Building)
|
---|
68 | @./progress_bar.sh \$@ &
|
---|
69 | @echo -e "\n\`date\`\n\nKB: \`du -skx --exclude=${SCRIPT_ROOT}\`\n" >logs/$LOGFILE
|
---|
70 | EOF
|
---|
71 | ) >> $MKFILE.tmp
|
---|
72 | }
|
---|
73 |
|
---|
74 | #----------------------------#
|
---|
75 | get_package_tarball_name() { #
|
---|
76 | #----------------------------#
|
---|
77 | local script_name=$1
|
---|
78 |
|
---|
79 | # The use of 'head' is necessary to limit the return value to the FIRST match..
|
---|
80 | # hopefully this will not cause problems.
|
---|
81 | #
|
---|
82 | case $script_name in
|
---|
83 | tcl) echo $(grep "^tcl" $JHALFSDIR/pkg_tarball_list | head -n1 ) ;;
|
---|
84 | linux-headers) echo $(grep "^linux-headers.*.bz2" $JHALFSDIR/pkg_tarball_list | head -n1 ) ;;
|
---|
85 | *) echo $(grep "^$script_name-[[:digit:]]" $JHALFSDIR/pkg_tarball_list | head -n1 ) ;;
|
---|
86 | esac
|
---|
87 |
|
---|
88 | }
|
---|
89 |
|
---|
90 |
|
---|
91 | #----------------------------------#
|
---|
92 | wrt_test_log() { # Initialize testsuite log file
|
---|
93 | #----------------------------------#
|
---|
94 | local TESTLOGFILE=$1
|
---|
95 | (
|
---|
96 | cat << EOF
|
---|
97 | @echo "export TEST_LOG=$TESTLOGDIR/$TESTLOGFILE" >> envars && \\
|
---|
98 | su - \$(LUSER) -c "echo -e '\n\`date\`\n' >$TESTLOGDIR/$TESTLOGFILE"
|
---|
99 | EOF
|
---|
100 | ) >> $MKFILE.tmp
|
---|
101 | }
|
---|
102 |
|
---|
103 | #----------------------------------#
|
---|
104 | wrt_test_log2() { #
|
---|
105 | #----------------------------------#
|
---|
106 | local TESTLOGFILE=$1
|
---|
107 | (
|
---|
108 | cat << EOF
|
---|
109 | @echo "export TEST_LOG=/$SCRIPT_ROOT/test-logs/$TESTLOGFILE" >> envars && \\
|
---|
110 | echo -e "\n\`date\`\n" >test-logs/$TESTLOGFILE
|
---|
111 | EOF
|
---|
112 | ) >> $MKFILE.tmp
|
---|
113 | }
|
---|
114 |
|
---|
115 | #----------------------------------#
|
---|
116 | wrt_target_vars() { # Target vars for hlfs (cross-build method)
|
---|
117 | #----------------------------------#
|
---|
118 | (
|
---|
119 | cat << EOF
|
---|
120 | @echo "export target=$(uname -m)-${TARGET}" >> envars && \\
|
---|
121 | echo "export ldso=/lib/${LOADER}" >> envars
|
---|
122 | EOF
|
---|
123 | ) >> $MKFILE.tmp
|
---|
124 |
|
---|
125 | }
|
---|
126 |
|
---|
127 |
|
---|
128 | #----------------------------------#
|
---|
129 | wrt_copy_fstab() { #
|
---|
130 | #----------------------------------#
|
---|
131 | local i=$1
|
---|
132 | (
|
---|
133 | cat << EOF
|
---|
134 | @cp -v $FSTAB \$(MOUNT_PT)/etc/fstab >>logs/$i 2>&1
|
---|
135 | EOF
|
---|
136 | ) >> $MKFILE.tmp
|
---|
137 | }
|
---|
138 |
|
---|
139 |
|
---|
140 | #----------------------------------#
|
---|
141 | wrt_copy_fstab2() { #
|
---|
142 | #----------------------------------#
|
---|
143 | local i=$1
|
---|
144 | (
|
---|
145 | cat << EOF
|
---|
146 | @cp -v /sources/fstab /etc/fstab >>logs/$i 2>&1
|
---|
147 | EOF
|
---|
148 | ) >> $MKFILE.tmp
|
---|
149 | }
|
---|
150 |
|
---|
151 |
|
---|
152 | #----------------------------------#
|
---|
153 | wrt_report() { #
|
---|
154 | #----------------------------------#
|
---|
155 | (
|
---|
156 | cat << EOF
|
---|
157 |
|
---|
158 | create-sbu_du-report: $PREV
|
---|
159 | @\$(call echo_message, Building)
|
---|
160 | @./create-sbu_du-report.sh logs $VERSION
|
---|
161 | @\$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report)
|
---|
162 | @touch \$@
|
---|
163 | EOF
|
---|
164 | ) >> $MKFILE.tmp
|
---|
165 |
|
---|
166 | chapter789="$chapter789 create-sbu_du-report"
|
---|
167 | }
|
---|
168 |
|
---|
169 | unset wrt_unpack
|
---|
170 | #----------------------------------#
|
---|
171 | wrt_unpack() { # Unpack and set 'ROOT' var
|
---|
172 | #----------------------------------#
|
---|
173 | local FILE=$1
|
---|
174 | local optSAVE_PREVIOUS=$2
|
---|
175 |
|
---|
176 | if [[ "${optSAVE_PREVIOUS}" != "1" ]]; then
|
---|
177 | (
|
---|
178 | cat << EOF
|
---|
179 | @\$(call remove_existing_dirs,$FILE)
|
---|
180 | EOF
|
---|
181 | ) >> $MKFILE.tmp
|
---|
182 | fi
|
---|
183 |
|
---|
184 | (
|
---|
185 | cat << EOF
|
---|
186 | @\$(call unpack,$FILE)
|
---|
187 | @\$(call get_pkg_root)
|
---|
188 | EOF
|
---|
189 | ) >> $MKFILE.tmp
|
---|
190 |
|
---|
191 | }
|
---|
192 |
|
---|
193 | unset wrt_unpack2
|
---|
194 | #----------------------------------#
|
---|
195 | wrt_unpack2() { #
|
---|
196 | #----------------------------------#
|
---|
197 | local FILE=$1
|
---|
198 | local optSAVE_PREVIOUS=$2
|
---|
199 |
|
---|
200 | if [ "${optSAVE_PREVIOUS}" != "1" ]; then
|
---|
201 | (
|
---|
202 | cat << EOF
|
---|
203 | @\$(call remove_existing_dirs,$FILE)
|
---|
204 | EOF
|
---|
205 | ) >> $MKFILE.tmp
|
---|
206 | fi
|
---|
207 | (
|
---|
208 | cat << EOF
|
---|
209 | @\$(call unpack2,$FILE)
|
---|
210 | @\$(call get_pkg_root,nouser)
|
---|
211 | EOF
|
---|
212 | ) >> $MKFILE.tmp
|
---|
213 | }
|
---|
214 |
|
---|
215 | #----------------------------------#
|
---|
216 | wrt_unpack3() { #
|
---|
217 | #----------------------------------#
|
---|
218 | local FILE=$1
|
---|
219 | local optSAVE_PREVIOUS=$2
|
---|
220 |
|
---|
221 | if [ "${optSAVE_PREVIOUS}" != "1" ]; then
|
---|
222 | (
|
---|
223 | cat << EOF
|
---|
224 | @\$(call remove_existing_dirs2,$FILE)
|
---|
225 | EOF
|
---|
226 | ) >> $MKFILE.tmp
|
---|
227 | fi
|
---|
228 | (
|
---|
229 | cat << EOF
|
---|
230 | @\$(call unpack3,$FILE)
|
---|
231 | @\$(call get_pkg_root2)
|
---|
232 | EOF
|
---|
233 | ) >> $MKFILE.tmp
|
---|
234 | }
|
---|
235 |
|
---|
236 |
|
---|
237 | unset wrt_remove_build_dirs
|
---|
238 | #----------------------------------#
|
---|
239 | wrt_remove_build_dirs() { #
|
---|
240 | #----------------------------------#
|
---|
241 | local name=$1
|
---|
242 | (
|
---|
243 | cat << EOF
|
---|
244 | @\$(call remove_build_dirs,$name)
|
---|
245 | EOF
|
---|
246 | ) >> $MKFILE.tmp
|
---|
247 | }
|
---|
248 |
|
---|
249 | #----------------------------------#
|
---|
250 | wrt_remove_build_dirs2() { #
|
---|
251 | #----------------------------------#
|
---|
252 | local name=$1
|
---|
253 | (
|
---|
254 | cat << EOF
|
---|
255 | @\$(call remove_build_dirs2,$name)
|
---|
256 | EOF
|
---|
257 | ) >> $MKFILE.tmp
|
---|
258 | }
|
---|
259 |
|
---|
260 |
|
---|
261 |
|
---|
262 | unset wrt_touch
|
---|
263 | #----------------------------------#
|
---|
264 | wrt_touch() { #
|
---|
265 | #----------------------------------#
|
---|
266 | (
|
---|
267 | cat << EOF
|
---|
268 | @\$(call housekeeping)
|
---|
269 | EOF
|
---|
270 | ) >> $MKFILE.tmp
|
---|
271 | }
|
---|
272 |
|
---|
273 | unset wrt_RunAsUser
|
---|
274 | #----------------------------------#
|
---|
275 | wrt_RunAsUser() { # Execute script inside time { }, footer to log file
|
---|
276 | #----------------------------------#
|
---|
277 | local this_script=$1
|
---|
278 | local file=$2
|
---|
279 |
|
---|
280 | (
|
---|
281 | cat << EOF
|
---|
282 | @( time { \$(SU_LUSER) "source \$(LUSER_HOME)/.bashrc && \$(CMDSDIR)/`dirname $file`/\$@" >> logs/\$@ 2>&1; } ) 2>> logs/\$@ && \\
|
---|
283 | \$(PRT_DU) >> logs/\$@
|
---|
284 | EOF
|
---|
285 | ) >> $MKFILE.tmp
|
---|
286 | }
|
---|
287 |
|
---|
288 |
|
---|
289 | #----------------------------------#
|
---|
290 | wrt_RunAsRoot() { # Some scripts must be run as root..
|
---|
291 | #----------------------------------#
|
---|
292 | local ENV_MOUNT
|
---|
293 | local this_script=$1
|
---|
294 | local file=$2
|
---|
295 |
|
---|
296 | case ${PROGNAME} in
|
---|
297 | lfs ) MOUNT_ENV="LFS" ;;
|
---|
298 | blfs ) MOUNT_ENV="BLFS" ;;
|
---|
299 | clfs ) MOUNT_ENV="CLFS" ;;
|
---|
300 | clfs2 ) MOUNT_ENV="CLFS" ;;
|
---|
301 | hlfs ) MOUNT_ENV="HLFS" ;;
|
---|
302 | *) echo "undefined progname $PROGNAME"; exit 1
|
---|
303 | esac
|
---|
304 |
|
---|
305 | (
|
---|
306 | cat << EOF
|
---|
307 | @( time { export ${MOUNT_ENV}=\$(MOUNT_PT) && ${PROGNAME}-commands/`dirname $file`/\$@ >>logs/\$@ 2>&1 ; } ) 2>>logs/\$@ && \\
|
---|
308 | \$(PRT_DU_CR) >>logs/\$@
|
---|
309 | EOF
|
---|
310 | ) >> $MKFILE.tmp
|
---|
311 | }
|
---|
312 |
|
---|
313 | #----------------------------------#
|
---|
314 | wrt_run_as_root2() { #
|
---|
315 | #----------------------------------#
|
---|
316 | local this_script=$1
|
---|
317 | local file=$2
|
---|
318 | (
|
---|
319 | cat << EOF
|
---|
320 | @( time { source envars && ${PROGNAME}-commands/`dirname $file`/\$@ >>logs/\$@ 2>&1 ; } ) 2>>logs/\$@ && \\
|
---|
321 | echo -e "\nKB: \`du -skx --exclude=${SCRIPT_ROOT} \`\n" >>logs/\$@
|
---|
322 | EOF
|
---|
323 | ) >> $MKFILE.tmp
|
---|
324 | }
|
---|
325 |
|
---|
326 |
|
---|
327 | unset wrt_run_as_chroot1
|
---|
328 | #----------------------------------#
|
---|
329 | wrt_run_as_chroot1() { #
|
---|
330 | #----------------------------------#
|
---|
331 | local this_script=$1
|
---|
332 | local file=$2
|
---|
333 | (
|
---|
334 | cat << EOF
|
---|
335 | @( time { \$(CHROOT1) 'cd \$(SCRIPT_ROOT) && source envars && \$(crCMDSDIR)/$file >>logs/\$@ 2>&1' ; } ) 2>>logs/\$@ && \\
|
---|
336 | \$(PRT_DU_CR) >> logs/\$@
|
---|
337 | EOF
|
---|
338 | ) >> $MKFILE.tmp
|
---|
339 | }
|
---|
340 |
|
---|
341 | unset wrt_run_as_chroot2
|
---|
342 | #----------------------------------#
|
---|
343 | wrt_run_as_chroot2() { #
|
---|
344 | #----------------------------------#
|
---|
345 | local this_script=$1
|
---|
346 | local file=$2
|
---|
347 | (
|
---|
348 | cat << EOF
|
---|
349 | @( time { \$(CHROOT2) 'cd \$(SCRIPT_ROOT) && source envars && \$(crCMDSDIR)/`dirname $file`/\$@ >>logs/\$@ 2>&1' ; } ) 2>>logs/\$@ && \\
|
---|
350 | \$(PRT_DU_CR) >> logs/\$@
|
---|
351 | EOF
|
---|
352 | ) >> $MKFILE.tmp
|
---|
353 | }
|
---|
354 |
|
---|
355 | unset wrt_target
|
---|
356 | #----------------------------------#
|
---|
357 | wrt_target() { # Create target and initialize log file
|
---|
358 | #----------------------------------#
|
---|
359 | local i=$1
|
---|
360 | local PREV=$2
|
---|
361 | case $i in
|
---|
362 | iteration* ) local LOGFILE="\$@.log" ;;
|
---|
363 | * ) local LOGFILE="\$@" ;;
|
---|
364 | esac
|
---|
365 | (
|
---|
366 | cat << EOF
|
---|
367 |
|
---|
368 | $i: $PREV
|
---|
369 | @\$(call echo_message, Building)
|
---|
370 | @./progress_bar.sh \$@ &
|
---|
371 | @echo -e "\n\`date\`\n\nKB: \`du -skx --exclude=${SCRIPT_ROOT} \$(MOUNT_PT)\`\n" >logs/$LOGFILE
|
---|
372 | EOF
|
---|
373 | ) >> $MKFILE.tmp
|
---|
374 | }
|
---|
375 |
|
---|
376 | #----------------------------------#
|
---|
377 | wrt_target_boot() { # Create target and initialize log file
|
---|
378 | #----------------------------------#
|
---|
379 | local i=$1
|
---|
380 | local PREV=$2
|
---|
381 | case $i in
|
---|
382 | iteration* ) local LOGFILE="\$@.log" ;;
|
---|
383 | * ) local LOGFILE="\$@" ;;
|
---|
384 | esac
|
---|
385 | (
|
---|
386 | cat << EOF
|
---|
387 |
|
---|
388 | $i: $PREV
|
---|
389 | @\$(call echo_message, Building)
|
---|
390 | @./progress_bar.sh \$@ &
|
---|
391 | @echo -e "\n\`date\`\n\nKB: \`du -skx --exclude=${SCRIPT_ROOT}\`\n" >logs/$LOGFILE
|
---|
392 | EOF
|
---|
393 | ) >> $MKFILE.tmp
|
---|
394 | }
|
---|
395 |
|
---|
396 |
|
---|
397 |
|
---|
398 | #----------------------------#
|
---|
399 | run_make() { #
|
---|
400 | #----------------------------#
|
---|
401 | # Test if make must be run.
|
---|
402 | if [ "$RUNMAKE" = "y" ] ; then
|
---|
403 | # Test to make sure we're running the build as root
|
---|
404 | if [ "$UID" != "0" ] ; then
|
---|
405 | echo "You must be logged in as root to successfully build the system."
|
---|
406 | exit 1
|
---|
407 | fi
|
---|
408 | # Build the system
|
---|
409 | if [ -e $MKFILE ] ; then
|
---|
410 | echo -ne "Building the system...\n"
|
---|
411 | cd $JHALFSDIR && make
|
---|
412 | echo -ne "done\n"
|
---|
413 | fi
|
---|
414 | fi
|
---|
415 | }
|
---|
416 |
|
---|
417 |
|
---|
418 | #----------------------------#
|
---|
419 | clean_builddir() { #
|
---|
420 | #----------------------------#
|
---|
421 | # Test if the clean must be done.
|
---|
422 | if [ "${CLEAN}" = "y" ]; then
|
---|
423 | # Test to make sure we're running the clean as root
|
---|
424 | if [ "$UID" != "0" ] ; then
|
---|
425 | echo "You must be logged in as root to clean the build directory."
|
---|
426 | exit 1
|
---|
427 | fi
|
---|
428 | # Test to make sure that the build directory was populated by jhalfs
|
---|
429 | if [ ! -d $JHALFSDIR ] || [ ! -d $BUILDDIR/sources ] ; then
|
---|
430 | echo "Looks like $BUILDDIR was not populated by a previous jhalfs-X run."
|
---|
431 | exit 1
|
---|
432 | else
|
---|
433 | # Clean the build directory
|
---|
434 | echo -ne "Cleaning $BUILDDIR...\n"
|
---|
435 | rm -rf $BUILDDIR/{bin,boot,dev,etc,home,lib,media,mnt,opt,proc,root,sbin,srv,sys,tmp,tools,cross-tools,usr,var}
|
---|
436 | echo -ne "Cleaning $JHALFSDIR...\n"
|
---|
437 | rm -rf $JHALFSDIR/{0*,1*,envars,sources-dir,*commands,*logs,Makefile,*.xsl,makefile-functions,pkg_tarball_list,*.config,*.sh}
|
---|
438 | echo -ne "Cleaning remainig extracted sources in $BUILDDIR/sources...\n"
|
---|
439 | rm -rf `find $BUILDDIR/sources/* -maxdepth 0 -type d`
|
---|
440 | echo -ne "done\n"
|
---|
441 | fi
|
---|
442 | fi
|
---|
443 | }
|
---|
444 |
|
---|
445 | #----------------------------#
|
---|
446 | get_book() { #
|
---|
447 | #----------------------------#
|
---|
448 | cd $JHALFSDIR
|
---|
449 |
|
---|
450 | if [ -z $WORKING_COPY ] ; then
|
---|
451 | # Check for Subversion instead of just letting the script hit 'svn' and fail.
|
---|
452 | test `type -p svn` || eval "echo \"This feature requires Subversion.\"
|
---|
453 | exit 1"
|
---|
454 | echo -n "Downloading the $PROGNAME document, $LFSVRS version... "
|
---|
455 |
|
---|
456 | case $PROGNAME in
|
---|
457 | lfs) svn_root="LFS" ;;
|
---|
458 | hlfs) svn_root="HLFS" ;;
|
---|
459 | clfs) svn_root="cross-lfs" ;;
|
---|
460 | clfs2) svn_root="cross-lfs" ;;
|
---|
461 | *) echo "BOOK not defined in function <get_book>"
|
---|
462 | exit 1 ;;
|
---|
463 | esac
|
---|
464 | # Grab a fresh book if it's missing, otherwise, update it from the
|
---|
465 | # repo. If we've already extracted the commands, move on to getting the
|
---|
466 | # sources.
|
---|
467 | if [ -d ${PROGNAME}-$LFSVRS ] ; then
|
---|
468 | cd ${PROGNAME}-$LFSVRS
|
---|
469 | if LC_ALL=C svn up | grep -q At && \
|
---|
470 | test -d $JHALFSDIR/${PROGNAME}-commands && \
|
---|
471 | test -f $JHALFSDIR/pkg_tarball_list ; then
|
---|
472 | # Set the canonical book version
|
---|
473 | echo -ne "done\n"
|
---|
474 | cd $JHALFSDIR
|
---|
475 | case $PROGNAME in
|
---|
476 | clfs | clfs2)
|
---|
477 | VERSION=$(xmllint --noent $BOOK/prologue/$ARCH/bookinfo.xml 2>/dev/null | grep subtitle | sed -e 's/^.*ion //' -e 's/<\/.*//') ;;
|
---|
478 | *)
|
---|
479 | VERSION=$(xmllint --noent $BOOK/prologue/bookinfo.xml 2>/dev/null | grep subtitle | sed -e 's/^.*ion //' -e 's/<\/.*//') ;;
|
---|
480 | esac
|
---|
481 | get_sources
|
---|
482 | else
|
---|
483 | echo -ne "done\n"
|
---|
484 | extract_commands
|
---|
485 | fi
|
---|
486 | else
|
---|
487 | svn co $SVN/${svn_root}/${TREE} ${PROGNAME}-$LFSVRS >>$LOGDIR/$LOG 2>&1
|
---|
488 | echo -ne "done\n"
|
---|
489 | extract_commands
|
---|
490 | fi
|
---|
491 |
|
---|
492 | else
|
---|
493 | echo -ne "Using $BOOK as book's sources ...\n"
|
---|
494 | extract_commands
|
---|
495 | fi
|
---|
496 | echo -ne " Document version ${L_arrow}${BOLD}${VERSION}${R_arrow}\n"
|
---|
497 | }
|
---|
498 |
|
---|
499 | #----------------------------#
|
---|
500 | extract_commands() { #
|
---|
501 | #----------------------------#
|
---|
502 |
|
---|
503 | # Check for libxslt instead of just letting the script hit 'xsltproc' and fail.
|
---|
504 | test `type -p xsltproc` || eval "echo \"This feature requires libxslt.\"
|
---|
505 | exit 1"
|
---|
506 |
|
---|
507 | cd $JHALFSDIR
|
---|
508 | case $PROGNAME in
|
---|
509 | clfs | clfs2 )
|
---|
510 | VERSION=$(xmllint --noent $BOOK/prologue/$ARCH/bookinfo.xml 2>/dev/null | grep subtitle | sed -e 's/^.*ion //' -e 's/<\/.*//') ;;
|
---|
511 | *)
|
---|
512 | VERSION=$(xmllint --noent $BOOK/prologue/bookinfo.xml 2>/dev/null | grep subtitle | sed -e 's/^.*ion //' -e 's/<\/.*//') ;;
|
---|
513 | esac
|
---|
514 |
|
---|
515 | # Start clean
|
---|
516 | if [ -d ${PROGNAME}-commands ]; then
|
---|
517 | rm -rf ${PROGNAME}-commands
|
---|
518 | mkdir -v ${PROGNAME}-commands
|
---|
519 | fi
|
---|
520 | echo -n "Extracting commands for"
|
---|
521 |
|
---|
522 | # Dump the commands in shell script form from the HLFS book.
|
---|
523 | case ${PROGNAME} in
|
---|
524 | clfs)
|
---|
525 | echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture"
|
---|
526 | xsltproc --nonet \
|
---|
527 | --xinclude \
|
---|
528 | --stringparam method $METHOD \
|
---|
529 | --stringparam testsuite $TEST \
|
---|
530 | --stringparam bomb-testsuite $BOMB_TEST \
|
---|
531 | --stringparam vim-lang $VIMLANG \
|
---|
532 | --stringparam timezone $TIMEZONE \
|
---|
533 | --stringparam page $PAGE \
|
---|
534 | --stringparam lang $LANG \
|
---|
535 | --stringparam keymap $KEYMAP \
|
---|
536 | -o ./${PROGNAME}-commands/ $XSL $BOOK/$ARCH-index.xml >>$LOGDIR/$LOG 2>&1
|
---|
537 | ;;
|
---|
538 |
|
---|
539 | clfs2)
|
---|
540 | echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture"
|
---|
541 | xsltproc --nonet \
|
---|
542 | --xinclude \
|
---|
543 | --stringparam vim-lang $VIMLANG \
|
---|
544 | --stringparam timezone $TIMEZONE \
|
---|
545 | --stringparam page $PAGE \
|
---|
546 | --stringparam lang $LANG \
|
---|
547 | --stringparam keymap $KEYMAP \
|
---|
548 | -o ./${PROGNAME}-commands/ $XSL $BOOK/$ARCH-index.xml >>$LOGDIR/$LOG 2>&1
|
---|
549 | ;;
|
---|
550 | hlfs)
|
---|
551 | echo -n " ${L_arrow}${BOLD}$MODEL${R_arrow} HLFS libc implementation"
|
---|
552 | xsltproc --nonet \
|
---|
553 | --xinclude \
|
---|
554 | --stringparam model $MODEL \
|
---|
555 | --stringparam testsuite $TEST \
|
---|
556 | --stringparam bomb-testsuite $BOMB_TEST \
|
---|
557 | --stringparam timezone $TIMEZONE \
|
---|
558 | --stringparam page $PAGE \
|
---|
559 | --stringparam lang $LANG \
|
---|
560 | --stringparam lc_all $LC_ALL \
|
---|
561 | --stringparam keymap $KEYMAP \
|
---|
562 | --stringparam grsecurity_host $GRSECURITY_HOST \
|
---|
563 | -o ./${PROGNAME}-commands/ $XSL $BOOK/index.xml >>$LOGDIR/$LOG 2>&1
|
---|
564 | ;;
|
---|
565 | lfs)
|
---|
566 | echo -n " ${L_arrow}${BOLD}LFS${R_arrow} build"
|
---|
567 | xsltproc --nonet \
|
---|
568 | --xinclude \
|
---|
569 | --stringparam testsuite $TEST \
|
---|
570 | --stringparam bomb-testsuite $BOMB_TEST \
|
---|
571 | --stringparam vim-lang $VIMLANG \
|
---|
572 | --stringparam timezone $TIMEZONE \
|
---|
573 | --stringparam page $PAGE \
|
---|
574 | --stringparam lang $LANG \
|
---|
575 | -o ./${PROGNAME}-commands/ $XSL $BOOK/index.xml >>$LOGDIR/$LOG 2>&1
|
---|
576 | ;;
|
---|
577 | *) exit 1 ;;
|
---|
578 | esac
|
---|
579 |
|
---|
580 | echo " ...OK"
|
---|
581 |
|
---|
582 | # Make the scripts executable.
|
---|
583 | chmod -R +x $JHALFSDIR/${PROGNAME}-commands
|
---|
584 |
|
---|
585 | # Create the packages file. We need it for proper Makefile creation
|
---|
586 | create_package_list
|
---|
587 |
|
---|
588 | # Done. Moving on...
|
---|
589 | get_sources
|
---|
590 | }
|
---|
591 |
|
---|
592 | #----------------------------#
|
---|
593 | create_package_list() { #
|
---|
594 | #----------------------------#
|
---|
595 |
|
---|
596 | # Create the packages file. We need it for proper Makefile creation
|
---|
597 | rm -f pkg_tarball_list
|
---|
598 | echo -n "Creating <${PROGNAME}> list of tarball names for $BOOK $ARCH"
|
---|
599 | case ${PROGNAME} in
|
---|
600 | clfs | clfs2)
|
---|
601 | xsltproc --nonet --xinclude -o pkg_tarball_list packages.xsl \
|
---|
602 | $BOOK/materials/${ARCH}-chapter.xml >>$LOGDIR/$LOG 2>&1
|
---|
603 | ;;
|
---|
604 | hlfs)
|
---|
605 | xsltproc --nonet --xinclude -o pkg_tarball_list packages.xsl \
|
---|
606 | $BOOK/chapter04/chapter04.xml >>$LOGDIR/$LOG 2>&1
|
---|
607 | ;;
|
---|
608 | lfs)
|
---|
609 | xsltproc --nonet --xinclude -o pkg_tarball_list packages.xsl \
|
---|
610 | $BOOK/chapter03/chapter03.xml >>$LOGDIR/$LOG 2>&1
|
---|
611 | ;;
|
---|
612 | esac
|
---|
613 |
|
---|
614 | if [[ "${BLFS_TOOL}" = "y" ]] ; then
|
---|
615 | (
|
---|
616 | cat << EOF
|
---|
617 | libxml2-2.6.26.tar.gz
|
---|
618 | libxslt-1.1.17.tar.gz
|
---|
619 | docbook-xsl-1.69.1.tar.bz2
|
---|
620 | links-2.1pre21.tar.bz2
|
---|
621 | sudo-1.6.8p12.tar.gz
|
---|
622 | wget-1.10.2.tar.gz
|
---|
623 | subversion-1.3.1.tar.bz2
|
---|
624 | gpm-1.20.1.tar.bz2
|
---|
625 | EOF
|
---|
626 | ) >> pkg_tarball_list
|
---|
627 | fi
|
---|
628 |
|
---|
629 | echo " ...OK"
|
---|
630 |
|
---|
631 | }
|
---|
632 |
|
---|
633 |
|
---|
634 | #----------------------------#
|
---|
635 | get_sources() { # Download file, write name to MISSING_FILES.DMP if an error
|
---|
636 | #----------------------------#
|
---|
637 | local saveIFS=$IFS
|
---|
638 | local IFS line URL1 URL2 FILE BOOKMD5 MD5 HAVEMD5 fromARCHIVE
|
---|
639 |
|
---|
640 | # Test if the packages must be downloaded
|
---|
641 | [ ! "$GETPKG" = "y" ] && return
|
---|
642 |
|
---|
643 | gs_wrt_message(){
|
---|
644 | echo "${RED}$1${OFF}"
|
---|
645 | echo "$1" >> MISSING_FILES.DMP
|
---|
646 | }
|
---|
647 | # Housekeeping
|
---|
648 | [[ ! -d $BUILDDIR/sources ]] && mkdir $BUILDDIR/sources
|
---|
649 | cd $BUILDDIR/sources
|
---|
650 | [[ -f MD5SUMS ]] && rm MD5SUMS
|
---|
651 | [[ -f MISSING_FILES.DMP ]] && rm MISSING_FILES.DMP
|
---|
652 | [[ -f urls.lst ]] && rm urls.lst
|
---|
653 |
|
---|
654 | # Generate URLs file
|
---|
655 | create_urls
|
---|
656 |
|
---|
657 | IFS=$'\x0A' # Modify the 'internal field separator' to break on 'LF' only
|
---|
658 | for line in `cat urls.lst`; do
|
---|
659 | IFS=$saveIFS # Restore the system defaults
|
---|
660 |
|
---|
661 | # Skip some packages if they aren't needed
|
---|
662 | case $line in
|
---|
663 | */tcl* | */expect* | */dejagnu* | */tree* | */gcc-testsuite* )
|
---|
664 | [[ "$TEST" = "0" ]] && continue
|
---|
665 | ;;
|
---|
666 | */vim-*-lang* )
|
---|
667 | [[ "$VIMLANG" = "0" ]] && continue
|
---|
668 | ;;
|
---|
669 | *linux/linux-* )
|
---|
670 | [[ -z "$CONFIG" ]] && [[ -z "$BOOT_CONFIG" ]] && \
|
---|
671 | [[ "$GETKERNEL" = "n" ]] && continue
|
---|
672 | ;;
|
---|
673 | esac
|
---|
674 |
|
---|
675 | # Locations
|
---|
676 | URL1=`echo $line | cut -d" " -f2` # Preferred URL
|
---|
677 | URL2=`echo $line | cut -d" " -f1` # Fallback Upstream URL
|
---|
678 | FILE=`basename $URL1` # File name
|
---|
679 | BOOKMD5=`echo $line | cut -d" " -f3` # MD5 book value
|
---|
680 |
|
---|
681 | # Validation pair
|
---|
682 | MD5="$BOOKMD5 $FILE"
|
---|
683 | HAVEMD5=1
|
---|
684 |
|
---|
685 | set -e
|
---|
686 | # If the file exists in the archive copy it to the
|
---|
687 | # $BUILDDIR/sources dir. MD5SUM will be validated later.
|
---|
688 | if [ ! -z ${SRC_ARCHIVE} ] &&
|
---|
689 | [ -d ${SRC_ARCHIVE} ] &&
|
---|
690 | [ -f ${SRC_ARCHIVE}/$FILE ]; then
|
---|
691 | cp ${SRC_ARCHIVE}/$FILE .
|
---|
692 | echo "$FILE: -- copied from $SRC_ARCHIVE"
|
---|
693 | fromARCHIVE=1
|
---|
694 | else
|
---|
695 | echo "${BOLD}${YELLOW}$FILE: not found in ${SRC_ARCHIVE}${OFF}"
|
---|
696 | fromARCHIVE=0
|
---|
697 | # If the file does not exist yet in /sources download a fresh one
|
---|
698 | if [ ! -f $FILE ] ; then
|
---|
699 | if ! wget $URL1 && ! wget $URL2 ; then
|
---|
700 | gs_wrt_message "$FILE not found in the SRC_ARCHIVE or on any server..SKIPPING"
|
---|
701 | continue
|
---|
702 | fi
|
---|
703 | fi
|
---|
704 | fi
|
---|
705 |
|
---|
706 | # IF the md5sum does not match the existing files
|
---|
707 | if ! echo "$MD5" | md5sum -c - >/dev/null ; then
|
---|
708 | [[ $fromARCHIVE = "1" ]] && echo "${BOLD}${YELLOW}MD5SUM did not match SRC_ARCHIVE copy${OFF}"
|
---|
709 | [[ $fromARCHIVE = "0" ]] && echo "${BOLD}${YELLOW}MD5SUM did not match REMOTE copy${OFF}"
|
---|
710 | # Remove the old file and download a new one
|
---|
711 | rm -fv $FILE
|
---|
712 | # Force storage in SRC_ARCHIVE
|
---|
713 | fromARCHIVE=0;
|
---|
714 | # Try to retrieve again the file. Servers in reverse order.
|
---|
715 | if ! wget $URL2 && ! wget $URL1 ; then
|
---|
716 | gs_wrt_message "$FILE not found on the servers.. SKIPPING"
|
---|
717 | continue
|
---|
718 | fi
|
---|
719 | fi
|
---|
720 |
|
---|
721 | # Validate the MD5SUM one last time
|
---|
722 | if ! echo "$MD5" | md5sum -c - >/dev/null ; then
|
---|
723 | gs_wrt_message "$FILE does not match MD5SUMS value"
|
---|
724 | # Force generation of MD5SUM
|
---|
725 | HAVEMD5=0
|
---|
726 | fi
|
---|
727 |
|
---|
728 | # Generate a fresh MD5SUM for this file
|
---|
729 | if [[ "$HAVEMD5" = "0" ]] ; then
|
---|
730 | echo "${BOLD}${YELLOW}Generating a new MD5SUM for ${OFF}$FILE"
|
---|
731 | echo "NEW MD5SUM: $(md5sum $FILE)" >> MISSING_FILES.DMP
|
---|
732 | fi
|
---|
733 |
|
---|
734 | # Good or bad we write the original md5sum to a file
|
---|
735 | echo "$MD5" >> MD5SUMS
|
---|
736 |
|
---|
737 | # Copy the freshly downloaded file
|
---|
738 | # to the source archive.
|
---|
739 | if [ ! -z ${SRC_ARCHIVE} ] &&
|
---|
740 | [ -d ${SRC_ARCHIVE} ] &&
|
---|
741 | [ -w ${SRC_ARCHIVE} ] &&
|
---|
742 | [ "$fromARCHIVE" = "0" ] ; then
|
---|
743 | echo "Storing file:<$FILE> in the package archive"
|
---|
744 | cp -f $FILE ${SRC_ARCHIVE}
|
---|
745 | fi
|
---|
746 |
|
---|
747 | done
|
---|
748 |
|
---|
749 | if [[ -s MISSING_FILES.DMP ]]; then
|
---|
750 | echo -e "\n\n${tab_}${RED} One or more files were not retrieved or have bad MD5SUMS.\n${tab_} Check ${L_arrow}$BUILDDIR/sources/MISSING_FILES.DMP${R_arrow} for names ${OFF}\n"
|
---|
751 | # Do not allow the automatic execution of the Makefile.
|
---|
752 | echo "${tab_}${BOLD}${RED}*** ${YELLOW}Automatic execution of the generated makefile has been inhibited. ${RED}***${OFF}${nl_}"
|
---|
753 | RUNMAKE="n"
|
---|
754 | fi
|
---|
755 | }
|
---|
756 |
|
---|
757 | #----------------------------#
|
---|
758 | create_urls() { #
|
---|
759 | #----------------------------#
|
---|
760 | cd $JHALFSDIR
|
---|
761 |
|
---|
762 | case ${PROGNAME} in
|
---|
763 | clfs)
|
---|
764 | echo -n "Creating CLFS <${ARCH}> specific URLs file"
|
---|
765 | xsltproc --nonet --xinclude \
|
---|
766 | --stringparam server $SERVER \
|
---|
767 | -o $BUILDDIR/sources/urls.lst urls.xsl \
|
---|
768 | $BOOK/materials/$ARCH-chapter.xml >>$LOGDIR/$LOG 2>&1
|
---|
769 | echo " ...OK"
|
---|
770 | ;;
|
---|
771 | clfs2)
|
---|
772 | echo -n "Creating CLFS2 <${ARCH}> specific URLs file"
|
---|
773 | xsltproc --nonet --xinclude \
|
---|
774 | --stringparam server $SERVER \
|
---|
775 | -o $BUILDDIR/sources/urls.lst urls.xsl \
|
---|
776 | $BOOK/materials/$ARCH-chapter.xml >>$LOGDIR/$LOG 2>&1
|
---|
777 | echo " ...OK"
|
---|
778 | ;;
|
---|
779 | hlfs)
|
---|
780 | echo -n "Creating HLFS <${MODEL}> specific URLs file"
|
---|
781 | xsltproc --nonet --xinclude \
|
---|
782 | --stringparam server $SERVER \
|
---|
783 | --stringparam model $MODEL \
|
---|
784 | -o $BUILDDIR/sources/urls.lst urls.xsl \
|
---|
785 | $BOOK/chapter04/chapter04.xml >>$LOGDIR/$LOG 2>&1
|
---|
786 | echo " ...OK"
|
---|
787 | ;;
|
---|
788 | lfs)
|
---|
789 | echo -n "Creating LFS specific URLs file"
|
---|
790 | xsltproc --nonet --xinclude \
|
---|
791 | --stringparam server $SERVER \
|
---|
792 | -o ../sources/urls.lst urls.xsl \
|
---|
793 | $BOOK/chapter03/chapter03.xml >>$LOGDIR/$LOG 2>&1
|
---|
794 | echo " ...OK"
|
---|
795 | ;;
|
---|
796 | esac
|
---|
797 |
|
---|
798 | cd $BUILDDIR/sources
|
---|
799 |
|
---|
800 | [[ "${BLFS_TOOL}" = "y" ]] && add_blfs_deps_urls
|
---|
801 | }
|
---|
802 |
|
---|
803 | #----------------------------# Hardcoded URLs and MD5.
|
---|
804 | add_blfs_deps_urls() { # No easy way to extract it.
|
---|
805 | #----------------------------# Some FTP mirrors may not work
|
---|
806 |
|
---|
807 | local BLFS_SERVER="${SERVER}/pub/blfs/conglomeration/"
|
---|
808 |
|
---|
809 | if [[ "${DEP_LIBXML}" = "y" ]] ; then
|
---|
810 | echo "ftp://xmlsoft.org/libxml2/libxml2-2.6.26.tar.gz ${BLFS_SERVER}libxml2/libxml2-2.6.26.tar.gz 2d8d3805041edab967368b497642f981" >> urls.lst
|
---|
811 | fi
|
---|
812 |
|
---|
813 | if [[ "${DEP_LIBXSLT}" = "y" ]] ; then
|
---|
814 | echo "ftp://xmlsoft.org/libxslt/libxslt-1.1.17.tar.gz ${BLFS_SERVER}libxslt/libxslt-1.1.17.tar.gz fde6a7a93c0eb14cba628692fa3a1000" >> urls.lst
|
---|
815 | fi
|
---|
816 |
|
---|
817 | if [[ "${DEP_DBXSL}" = "y" ]] ; then
|
---|
818 | echo "http://prdownloads.sourceforge.net/docbook/docbook-xsl-1.69.1.tar.bz2 ${BLFS_SERVER}docbook-xsl/docbook-xsl-1.69.1.tar.bz2 6ebd29a67f2dcc3f2220f475ee6f6552" >> urls.lst
|
---|
819 | fi
|
---|
820 |
|
---|
821 | if [[ "${DEP_LIKS}" = "y" ]] ; then
|
---|
822 | echo "http://links.twibright.com/download/links-2.1pre21.tar.bz2 ${BLFS_SERVER}links/links-2.1pre21.tar.bz2 7687e2c32e337e11c6e9d8cd8c5202c9" >> urls.lst
|
---|
823 | fi
|
---|
824 |
|
---|
825 | if [[ "${DEP_SUDO}" = "y" ]] ; then
|
---|
826 | echo "http://www.courtesan.com/sudo/dist/sudo-1.6.8p12.tar.gz ${BLFS_SERVER}sudo/sudo-1.6.8p12.tar.gz b29893c06192df6230dd5f340f3badf5" >> urls.lst
|
---|
827 | fi
|
---|
828 |
|
---|
829 | if [[ "${DEP_WGET}" = "y" ]] ; then
|
---|
830 | echo "ftp://ftp.gnu.org/gnu/wget/wget-1.10.2.tar.gz ${BLFS_SERVER}wget/wget-1.10.2.tar.gz 795fefbb7099f93e2d346b026785c4b8" >> urls.lst
|
---|
831 | fi
|
---|
832 |
|
---|
833 | if [[ "${DEP_SVN}" = "y" ]] ; then
|
---|
834 | echo "http://subversion.tigris.org/tarballs/subversion-1.3.1.tar.bz2 ${BLFS_SERVER}subversion/subversion-1.3.1.tar.bz2 07b95963968ae345541ca99d0e7bf082" >> urls.lst
|
---|
835 | fi
|
---|
836 |
|
---|
837 | if [[ "${DEP_GPM}" = "y" ]] ; then
|
---|
838 | echo "ftp://arcana.linux.it/pub/gpm/gpm-1.20.1.tar.bz2 ${BLFS_SERVER}gpm/gpm-1.20.1.tar.bz2 2c63e827d755527950d9d13fe3d87692" >> urls.lst
|
---|
839 | fi
|
---|
840 |
|
---|
841 | }
|
---|