$ repo --trace sync kernel
: unpickle /home/cwhuang/.gitconfig
: unpickle /home/cwhuang/git/android-x86-2.0/.repo/repo/.git/config
: unpickle /home/cwhuang/git/android-x86-2.0/.repo/manifests.git/
config
: export GIT_DIR=/home/cwhuang/git/android-x86-2.0/.repo/manifests.git
: git fetch origin
: load refs /home/cwhuang/git/android-x86-2.0/.repo/manifests.git
: unpickle /home/cwhuang/git/android-x86-2.0/.repo/projects/kernel.git/
config
: export GIT_DIR=/home/cwhuang/git/android-x86-2.0/.repo/projects/
kernel.git
: git fetch x86
: load refs /home/cwhuang/git/android-x86-2.0/.repo/projects/
kernel.git
: load refs /home/cwhuang/git/android-x86-2.0/.repo/repo/.git
: scan refs /home/cwhuang/git/android-x86-2.0/.repo/projects/
kernel.git
: cd /home/cwhuang/git/android-x86-2.0/kernel
: git rev-list ^HEAD e8f75637ed2077464ea1ea1e45e33f298119bcd6 -- 1>|
2>|
: git log --pretty=format:%H %ce
^e8f75637ed2077464ea1ea1e45e33f298119bcd6 HEAD -- 1>| 2>|
: git var GIT_COMMITTER_IDENT 1>| 2>|
Traceback (most recent call last):
File "/home/cwhuang/git/android-x86-2.0/.repo/repo/main.py", line
235, in <module>
_Main(sys.argv[1:])
File "/home/cwhuang/git/android-x86-2.0/.repo/repo/main.py", line
217, in _Main
repo._Run(argv)
File "/home/cwhuang/git/android-x86-2.0/.repo/repo/main.py", line
123, in _Run
cmd.Execute(copts, cargs)
File "/home/cwhuang/git/android-x86-2.0/.repo/repo/subcmds/sync.py",
line 239, in Execute
project.Sync_LocalHalf(syncbuf)
File "/home/cwhuang/git/android-x86-2.0/.repo/repo/project.py", line
731, in Sync_LocalHalf
commit_id, committer_email = commit.split(' ', 2)
ValueError: too many values to unpack
The commit shown in the trace is:
$ git show e8f756
commit e8f75637ed2077464ea1ea1e45e33f298119bcd6
Author: Chih-Wei Huang <cwh...@linux.org.tw>
Date: Thu Dec 17 16:08:33 2009 +0800
kconfig: add nonint_oldconfig target from Fedora kernel
This patch adds a "make nonint_oldconfig" which is non-interactive
and
also gives a list of missing options at the end. Useful for
automated
builds (as used in the buildsystem).
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile
index fa8c2dd..7fdca12 100644
--- a/scripts/kconfig/Makefile
+++ b/scripts/kconfig/Makefile
@@ -28,6 +28,11 @@ oldconfig: $(obj)/conf
silentoldconfig: $(obj)/conf
$< -s $(Kconfig)
+nonint_oldconfig: $(obj)/conf
+ $< -b $(Kconfig)
+loose_nonint_oldconfig: $(obj)/conf
+ $< -B $(Kconfig)
+
...
On 12月14日, 下午1時42分, Shawn Pearce <s...@google.com> wrote:
No, what you want to look at is the output of the git log command
that we are parsing. The commit e8f7 isn't being considered because
of the negation operator, its actually the range of commits between
e8f7 and HEAD that are being read:
I finally figured out there are two commits have a problematic
committer,
as shown below. They're from the vanilla kernel 2.6.32.
Can we have a workaround for it?
Commit c7ff91d722e44c98504e6e2c357b47e1988dfbbd
Author: Ryota Yamauchi <r-yam...@vf.jp.nec.com> 2009-10-30 16:27:44
Committer: h...@lst.de <Christoph Hellwig> 2009-10-30 16:27:44
Parent: 3b826386d376e5545d2e92b2da5ebd965cafae97 (xfs: free temporary
cursor in xfs_dialloc)
Branches: remotes/iksaif/android-2.6.32, remotes/iksaif/android-2.6.32-
olv, remotes/linus/master, remotes/x86/android-2.6.32
Follows: v2.6.31
Precedes: v2.6.32-rc6
Commit 3b826386d376e5545d2e92b2da5ebd965cafae97
Author: Eric Sandeen <san...@sandeen.net> 2009-10-30 16:27:07
Committer: h...@lst.de <Christoph Hellwig> 2009-10-30 16:27:07
Parent: ba313e68facf190317d8db3afdc0f0028c963a96 (Merge branch
'master' of ssh://oss.sgi.com/oss/git/xfs/xfs into for-linus)
Branches: remotes/iksaif/android-2.6.32, remotes/iksaif/android-2.6.32-
olv, remotes/linus/master, remotes/x86/android-2.6.32
Follows: v2.6.31
Precedes: v2.6.32-rc6
On 12月30日, 下午11時07分, Shawn Pearce <s...@google.com> wrote:
Yikes. Christoph must have mixed up his configuration. *sigh*
> Can we have a workaround for it?
repo selfupdate.
I just tagged 1.6.8.9 which contains the fix, to split on only the
first space, and not the first and second.
>> Commit c7ff91d722e44c98504e6e2c357b47e1988dfbbd
>> Author: Ryota Yamauchi <r-yam...@vf.jp.nec.com> 2009-10-30 16:27:44
>> Committer: h...@lst.de <Christoph Hellwig> 2009-10-30 16:27:44
>
>Yikes. Christoph must have mixed up his configuration. *sigh*
I've seen all kinds of interesting things. Having a name or email
address of 'y' is common. Someone even managed to get a backslash as
their name.
It's one of the things on our review checklist.
David
I confirm the new version fixed the problem.
Thank you!