source: common/libs/func_book_parser@ 04952c63

new_features
Last change on this file since 04952c63 was 7bd0866, checked in by Pierre Labastie <pierre@…>, 8 years ago

Merge trunk up to revision 3864

  • Property mode set to 100644
File size: 10.0 KB
Line 
1#!/bin/bash
2
3# $Id$
4
5#----------------------------#
6get_book() { #
7#----------------------------#
8 cd $JHALFSDIR
9
10 if [ -z $WORKING_COPY ] ; then
11# Check for Subversion instead of just letting the script hit 'svn' and fail.
12 test `type -p svn` || eval "echo \"This feature requires Subversion.\"
13 exit 1"
14 echo -n "Downloading the $PROGNAME document, $LFSVRS version... "
15
16 case $PROGNAME in
17 lfs) svn_root="LFS" ;;
18 hlfs) svn_root="HLFS" ;;
19 clfs*) ;;
20 *) echo "BOOK not defined in function <get_book>"
21 exit 1 ;;
22 esac
23 # Grab a fresh book if it's missing, otherwise, update it from the
24 # repo. If we've already extracted the commands, move on to getting the
25 # sources.
26 if [ $PROGNAME == "lfs" ] || [ $PROGNAME == "hlfs" ] &&
27 [ ! -d ${PROGNAME}-${LFSVRS}/.svn ]; then
28 svn co $SVN/${svn_root}/${TREE} ${PROGNAME}-$LFSVRS >>$LOGDIR/$LOG 2>&1
29 elif [ $PROGNAME == "clfs" ] || [ $PROGNAME == "clfs2" ] ||
30 [ $PROGNAME == "clfs3" ] && [ ! -d ${PROGNAME}-${LFSVRS}/.git ]; then
31 echo $TREE
32 git clone $GIT ${PROGNAME}-$LFSVRS >>$LOGDIR/$LOG 2>&1
33 if [ ! $TREE == "development" ]; then
34 cd ${PROGNAME}-$LFSVRS
35 echo "Checking out $LFSVRS at $PWD in $TREE"
36 git checkout ${TREE} >>$LOGDIR/$LOG 2>&1
37 fi
38 else
39 cd ${PROGNAME}-$LFSVRS
40 case $PROGNAME in
41 clfs*) git pull >>$LOGDIR/$LOG 2>&1
42 if [ ! $TREE == "development" ]; then
43 git checkout ${TREE} >>$LOGDIR/$LOG 2>&1
44 fi
45 ;;
46 lfs | hlfs) svn up >>$LOGDIR/$LOG 2>&1 ;;
47 *) ;;
48 esac
49 fi
50 echo -ne "done\n"
51
52 else
53 echo -ne "Using $BOOK as book's sources ...\n"
54 fi
55}
56
57#----------------------------#
58extract_commands() { #
59#----------------------------#
60
61 cd $JHALFSDIR
62 case $PROGNAME in
63 clfs*)
64 VERSION=$(xmllint --noent $BOOK/BOOK/prologue/$ARCH/bookinfo.xml 2>/dev/null | grep subtitle | sed -e 's/^.*ion //' -e 's/<\/.*//') ;;
65 lfs)
66 if [ "$INITSYS" = "sysv" ] ; then
67 VERSION=$(grep 'ENTITY version ' $BOOK/general.ent| cut -d\" -f2)
68 else
69 VERSION=$(grep 'ENTITY versiond' $BOOK/general.ent| cut -d\" -f2)
70 fi
71 ;;
72 *)
73 VERSION=$(xmllint --noent $BOOK/prologue/bookinfo.xml 2>/dev/null | grep subtitle | sed -e 's/^.*ion //' -e 's/<\/.*//') ;;
74 esac
75
76 # Clean
77 rm -rf ${PROGNAME}-commands
78
79 # Extract the commands
80 echo -n "Extracting commands for"
81 case ${PROGNAME} in
82 clfs)
83 echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture... "
84 xsltproc --nonet \
85 --xinclude \
86 --stringparam method $METHOD \
87 --stringparam testsuite $TEST \
88 --stringparam bomb-testsuite $BOMB_TEST \
89 --stringparam vim-lang $VIMLANG \
90 --stringparam timezone $TIMEZONE \
91 --stringparam page $PAGE \
92 --stringparam lang $LANG \
93 --stringparam sparc $SPARC64_PROC \
94 --stringparam x86 $TARGET \
95 --stringparam mips $TARGET \
96 -o ./${PROGNAME}-commands/ \
97 $XSL \
98 $BOOK/BOOK/$ARCH-index.xml >>$LOGDIR/$LOG 2>&1
99 ;;
100
101 clfs2)
102 echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture... "
103 xsltproc --nonet \
104 --xinclude \
105 --stringparam vim-lang $VIMLANG \
106 --stringparam timezone $TIMEZONE \
107 --stringparam page $PAGE \
108 --stringparam lang $LANG \
109 --output ./${PROGNAME}-commands/ \
110 $XSL \
111 $BOOK/BOOK/$ARCH-index.xml >>$LOGDIR/$LOG 2>&1
112 ;;
113
114 clfs3)
115 echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture... "
116 xsltproc --nonet \
117 --xinclude \
118 --stringparam endian x$ENDIAN \
119 --stringparam timezone $TIMEZONE \
120 --stringparam page $PAGE \
121 --stringparam lang $LANG \
122 --output ./${PROGNAME}-commands/ \
123 $XSL \
124 $BOOK/BOOK/$ARCH-index.xml >>$LOGDIR/$LOG 2>&1
125 ;;
126
127 hlfs)
128 echo -n " ${L_arrow}${BOLD}$MODEL + $KERNEL${R_arrow} HLFS flavour... "
129 xsltproc --nonet \
130 --xinclude \
131 --stringparam model $MODEL \
132 --stringparam kernel $KERNEL \
133 --stringparam testsuite $TEST \
134 --stringparam bomb-testsuite $BOMB_TEST \
135 --stringparam features \
136 x$SSP$ASLR$PAX$HARDENED_TMP$WARNINGS$MISC$BLOWFISH \
137 --stringparam timezone $TIMEZONE \
138 --stringparam page $PAGE \
139 --stringparam lang $LANG \
140 --stringparam grsecurity_host $GRSECURITY_HOST \
141 --output ./${PROGNAME}-commands/ \
142 $XSL \
143 $BOOK/index.xml >>$LOGDIR/$LOG 2>&1
144 ;;
145 lfs)
146 echo -n " ${L_arrow}${BOLD}LFS${R_arrow} build... "
147 pushd $BOOK > /dev/null
148 if [ -f process-scripts.sh ]; then
149 bash process-scripts.sh >> $LOGDIR/$LOG 2>&1
150 fi
151 popd > /dev/null
152
153 xsltproc --nonet \
154 --xinclude \
155 --output /tmp/lfs-full.xml \
156 --stringparam profile.revision $INITSYS \
157 $BOOK/stylesheets/lfs-xsl/profile.xsl \
158 $BOOK/index.xml
159
160 xsltproc --nonet \
161 --stringparam testsuite $TEST \
162 --stringparam bomb-testsuite $BOMB_TEST \
163 --stringparam vim-lang $VIMLANG \
164 --stringparam full-locale $FULL_LOCALE \
165 --stringparam timezone $TIMEZONE \
166 --stringparam page $PAGE \
167 --stringparam lang $LANG \
168 --stringparam pkgmngt $PKGMNGT \
169 --stringparam hostname $HOSTNAME \
170 --stringparam interface $INTERFACE \
171 --stringparam ip $IP_ADDR \
172 --stringparam gateway $GATEWAY \
173 --stringparam prefix $PREFIX \
174 --stringparam broadcast $BROADCAST \
175 --stringparam domain $DOMAIN \
176 --stringparam nameserver1 $DNS1 \
177 --stringparam nameserver2 $DNS2 \
178 --output ./${PROGNAME}-commands/ \
179 $XSL \
180 /tmp/lfs-full.xml >>$LOGDIR/$LOG 2>&1
181
182 rm /tmp/lfs-full.xml
183 ;;
184 *) echo -n " ${L_arrow}${PROGNAME}${R_arrow} book invalid, terminate build... "
185 exit 1 ;;
186 esac
187
188 echo "done"
189
190 # Make the scripts executable.
191 chmod -R +x $JHALFSDIR/${PROGNAME}-commands
192
193 # Create the packages file. We need it for proper Makefile creation
194 create_package_list
195 create_chroot_scripts
196
197 # Done. Moving on...
198 get_sources
199
200}
201
202#----------------------------#
203create_package_list() { #
204#----------------------------#
205
206 # Create the packages file. We need it for proper Makefile creation
207 rm -f pkg_tarball_list
208 echo -n "Creating <${PROGNAME}> list of tarball names for $BOOK"
209 if [ ! -z $ARCH ] ; then echo -n " $ARCH" ; fi
210 echo -n "... "
211 case ${PROGNAME} in
212 clfs*)
213 xsltproc --nonet --xinclude \
214 -o pkg_tarball_list \
215 packages.xsl \
216 $BOOK/BOOK/materials/${ARCH}-chapter.xml >>$LOGDIR/$LOG 2>&1
217 ;;
218 hlfs)
219 xsltproc --nonet --xinclude \
220 --stringparam model $MODEL \
221 --stringparam kernel $KERNEL \
222 --output pkg_tarball_list \
223 packages.xsl \
224 $BOOK/chapter04/chapter04.xml >>$LOGDIR/$LOG 2>&1
225 ;;
226 lfs)
227 xsltproc --nonet --xinclude \
228 --stringparam pkgmngt $PKGMNGT \
229 --stringparam revision $INITSYS \
230 --output pkg_tarball_list \
231 packages.xsl \
232 $BOOK/chapter03/chapter03.xml >>$LOGDIR/$LOG 2>&1
233 ;;
234 *)
235 esac
236
237 echo "done"
238
239}
240
241#----------------------------#
242create_chroot_scripts() { #
243#----------------------------#
244
245 rm -rf chroot_scripts
246 echo -n "Creating chroot commands scripts from $BOOK"
247 if [ ! -z $ARCH ] ; then echo -n " $ARCH" ; fi
248 echo -n "... "
249 case ${PROGNAME} in
250 clfs*)
251 xsltproc --nonet --xinclude \
252 -o chroot-scripts/ chroot.xsl \
253 $BOOK/BOOK/${ARCH}-index.xml >> $LOGDIR/$LOG 2>&1
254 ;;
255 hlfs)
256 xsltproc --nonet --xinclude \
257 -o chroot-scripts/ chroot.xsl \
258 $BOOK/index.xml >> $LOGDIR/$LOG 2>&1
259 ;;
260 lfs)
261 xsltproc --nonet --xinclude \
262 -o chroot-scripts/ chroot.xsl \
263 $BOOK/chapter06/chapter06.xml >> $LOGDIR/$LOG 2>&1
264 ;;
265 *)
266 esac
267 echo "done"
268
269}
Note: See TracBrowser for help on using the repository browser.