From: Jan-Benedict G. <jb...@us...> - 2007-08-10 22:40:59
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5048 Modified Files: initial_cvs_checkout.sh Log Message: * Require `git'. * Check-out the GIT Linux kernel, too. * NOTICE: Just re-run the script. It'll check out (or clone) only what's still missing on your box. Index: initial_cvs_checkout.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/initial_cvs_checkout.sh,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- initial_cvs_checkout.sh 7 Jul 2007 17:05:47 -0000 1.13 +++ initial_cvs_checkout.sh 10 Aug 2007 22:40:55 -0000 1.14 @@ -11,7 +11,7 @@ # # Test if all required tools are installed. # -REQ_TOOLS="cvs svn" +REQ_TOOLS="cvs svn git" for tool in $REQ_TOOLS; do if ! command -v $tool > /dev/null 2>&1; then echo "Error: $tool is required by `basename $0` but was not found on your system." >&2 @@ -82,4 +82,8 @@ copy_directory.sh uclibc-upstream-HEAD uclibc-upstream-HEAD-last popd fi + + if [ ! -d linux-git ]; then + git clone git://git.kernel.org/pub/scm/linux/kernel/git/jbglaw/vax-linux.git linux-git + fi popd |