if argv == None:
eprint('Specify root directory.')
sys.exit(1)
- config.ROOT=os.path.abspath(argv[0])
+ config.ROOT=os.path.abspath(argv)
def verbose(argv):
config.VERBOSE=True
if os.system(git0 + ' checkout ' + mbranch):
if os.system(git0 + ' checkout linux-2.6'):
raise ValueError, 'checkout linux-2.6'
- if os.system(git0 + ' checkout -b ' + mbranch):
- raise ValueError, 'checkout -b ' + mbranch
+ if os.system(git0 + ' checkout -b ' + mbranch):
+ raise ValueError, 'checkout -b ' + mbranch
checkout = True
if os.system(git0 + ' pull ' + url + ' ' + branch):
raise ValueError, ' pull ' + url + ' ' + branch
GIT_DRIVER_MERGE = 'v1.0.21'
GIT_MERGE_REPOS = [
('git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git', 'master', 'linux-2.6', 'http://www.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git'),
- ('git@git.alsa-project.org:alsa-kernel.git', 'fixes', 'perex-fixes', 'http://git.alsa-project.org/http/alsa-kernel.git'),
- ('git@git.alsa-project.org:alsa-kernel.git', 'devel', 'perex-devel', 'http://git.alsa-project.org/http/alsa-kernel.git'),
+ ('git://git.alsa-project.org/alsa-kernel.git', 'fixes', 'perex-fixes', 'http://git.alsa-project.org/http/alsa-kernel.git'),
+ ('git://git.alsa-project.org/alsa-kernel.git', 'devel', 'perex-devel', 'http://git.alsa-project.org/http/alsa-kernel.git'),
('git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git', 'topic/misc', 'tiwai-topic-misc', 'http://www.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git'),
('git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git', 'topic/hda', 'tiwai-topic-hda', 'http://www.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git'),
('git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git', 'topic/asoc', 'tiwai-topic-asoc', 'http://www.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git')