From 00a13359b2fa31360ab85215916365109e5d27c3 Mon Sep 17 00:00:00 2001 From: Rod Whitby Date: Thu, 17 Jul 2008 13:56:30 +0000 Subject: [PATCH] Updated the import targets --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index f999669..a2eb363 100644 --- a/Makefile +++ b/Makefile @@ -226,6 +226,7 @@ setup-kernel kernel/.git/config: cd kernel ; \ git config --add remote.origin.fetch '+refs/remotes/*:refs/remotes/*' ) [ -e kernel/downloads ] || ( ln -s ../downloads kernel/downloads ) + ( cd kernel ; git pull ) touch kernel/.git/config .PHONY: setup-optware @@ -235,6 +236,8 @@ setup-optware optware/.git/config: ( git clone git://repo.or.cz/nslu2-linux/optware.git ; \ cd optware ; \ git config --add remote.origin.fetch '+refs/remotes/*:refs/remotes/*' ) + [ -e optware/downloads ] || ( ln -s ../downloads optware/downloads ) + ( cd optware ; git pull ) touch optware/.git/config .PHONY: setup-bitbake @@ -651,10 +654,14 @@ import: import-optware import-kernel .PHONY: import-optware import-optware: optware/.git/config + ( cd optware ; git svn init -s svn+ssh://svn.nslu2-linux.org/svnroot/optware ) + ( cd optware ; git svn fetch -A AUTHORS ) ( cd optware ; git svn rebase -A AUTHORS ) .PHONY: import-kernel import-kernel: kernel/.git/config + ( cd kernel ; git svn init -s svn+ssh://svn.nslu2-linux.org/svnroot/kernel ) + ( cd kernel ; git svn fetch -A AUTHORS ) ( cd kernel ; git svn rebase -A AUTHORS ) .PHONY: mirror -- 2.11.4.GIT