Added support for udev_update branch (but not tested the build.)
This commit is contained in:
parent
86860fd0cc
commit
5aa36d57d5
1 changed files with 9 additions and 0 deletions
9
jhalfs
9
jhalfs
|
@ -49,6 +49,7 @@ Options:
|
||||||
|
|
||||||
dev* | trunk | SVN aliases for Development LFS
|
dev* | trunk | SVN aliases for Development LFS
|
||||||
alpha* aliases for the alphabetical branch
|
alpha* aliases for the alphabetical branch
|
||||||
|
udev* aliases for the udev_update branch
|
||||||
|
|
||||||
For stable 6.1.1 book, please use jhalfs-0.2.
|
For stable 6.1.1 book, please use jhalfs-0.2.
|
||||||
|
|
||||||
|
@ -183,6 +184,8 @@ get_book() {
|
||||||
svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;;
|
svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;;
|
||||||
alphabetical)
|
alphabetical)
|
||||||
svn co $SVN/LFS/branches/$LFSVRS/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;;
|
svn co $SVN/LFS/branches/$LFSVRS/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;;
|
||||||
|
udev_update)
|
||||||
|
svn co $SVN/LFS/branches/$LFSVRS/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;;
|
||||||
esac
|
esac
|
||||||
echo -ne "done\n"
|
echo -ne "done\n"
|
||||||
# Set the canonical book version
|
# Set the canonical book version
|
||||||
|
@ -895,6 +898,7 @@ while test $# -gt 0 ; do
|
||||||
dev* | SVN | trunk )
|
dev* | SVN | trunk )
|
||||||
LFSVRS=development
|
LFSVRS=development
|
||||||
;;
|
;;
|
||||||
|
|
||||||
6.1.1 )
|
6.1.1 )
|
||||||
echo "For stable 6.1.1 book, please use jhalfs-0.2."
|
echo "For stable 6.1.1 book, please use jhalfs-0.2."
|
||||||
exit 0
|
exit 0
|
||||||
|
@ -903,6 +907,11 @@ while test $# -gt 0 ; do
|
||||||
alpha*)
|
alpha*)
|
||||||
LFSVRS=alphabetical
|
LFSVRS=alphabetical
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
udev*)
|
||||||
|
LFSVRS=udev_update
|
||||||
|
;;
|
||||||
|
|
||||||
* )
|
* )
|
||||||
echo "$1 is an unsupported version at this time."
|
echo "$1 is an unsupported version at this time."
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Reference in a new issue