summaryrefslogtreecommitdiff
path: root/git2svn-sync
blob: b63d46887548e1af74d065679c6e7dc89a5ff698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh
#
# Sync git repository to subversion repository.
# 
# Based on http://google-opensource.blogspot.com/2008/05/export-git-project-to-google-code.html

if [ $# -lt 2 ] ; then
	echo "usage: ${0} GIT_REPO GIT_SVN_REPO_CHECKOUT"
	exit 2
fi

GIT_REPO=$1
GIT_SVN_REPO_CHECKOUT=$2

if [ ! -d $GIT_SVN_REPO_CHECKOUT/.git/svn ] ; then
	echo "error: no git-svn checkout found in $GIT_SVN_REPO_CHECKOUT"
	exit 3
fi

p=$(pwd)
cd $GIT_SVN_REPO_CHECKOUT
git fetch $GIT_REPO
git branch tmp $(cut -b-40 .git/FETCH_HEAD)
git tag -a -m "Last fetch" newlast tmp
git rebase --onto master last tmp
git branch -M tmp master
git svn dcommit
mv $GIT_SVN_REPO_CHECKOUT/.git/refs/tags/newlast \
	$GIT_SVN_REPO_CHECKOUT/.git/refs/tags/last

cd $p

# vim:ft=sh
4/sn/kernel?id=5db4992d8f040b8d8db0b86d42806e0c417f7ccf'>patch) tree5b06e952af482d45f3ade64e77824662e34b7fa2 /arch/ia64/sn/kernel parent370ebb0ef6255132373ed35d13e7b1d8d2eb7003 (diff)
usbnet: pegasus: Use net_device_stats from struct net_devicends-private-remove
Instead of using a private copy of struct net_device_stats in struct pegasus, use stats from struct net_device. Also remove the now unnecessary .ndo_get_stats function. Cc: Petko Manolov <petkan@nucleusys.com> Cc: linux-usb@vger.kernel.org Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'arch/ia64/sn/kernel')