From: Mike Frysinger Date: Mon, 24 Aug 2026 13:04:18 +0000 (+0545) Subject: cros-repo: always use default repo sources X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=6361f06625bd4c06e026f76afcdf6d51ad5ac67a;p=home.git cros-repo: always use default repo sources --- diff --git a/.bin/cros-repo b/.bin/cros-repo index 7b0aa7d..802eab5 100755 --- a/.bin/cros-repo +++ b/.bin/cros-repo @@ -17,8 +17,8 @@ import subprocess import sys -REPO_URL = 'https://chromium.googlesource.com/external/repo' -REPO_URL = 'https://gerrit.googlesource.com/git-repo' +# REPO_URL = 'https://chromium.googlesource.com/external/repo' +# REPO_URL = 'https://gerrit.googlesource.com/git-repo' INT_MANIFEST = 'https://chrome-internal.googlesource.com/chromeos/manifest-internal' EXT_MANIFEST = 'https://chromium.googlesource.com/chromiumos/manifest' @@ -100,11 +100,11 @@ def init_repo(opts): cmd = ['repo', 'init', '-c'] if opts.action == 'int': - cmd += ['-u', INT_MANIFEST] - cmd += ['--repo-url', REPO_URL] + cmd += [INT_MANIFEST] + # cmd += ['--repo-url', REPO_URL] elif opts.action == 'ext': - cmd += ['-u', EXT_MANIFEST] - cmd += ['--repo-url', REPO_URL] + cmd += [EXT_MANIFEST] + # cmd += ['--repo-url', REPO_URL] if opts.ref and os.path.realpath(opts.ref) != os.path.realpath(get_repo_topdir(opts)): cmd += ['--reference', opts.ref]