Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: build/linux/sysroot_scripts/install-sysroot.py

Issue 1665223002: Update linux sysroot images from debian/wheezy to debian/jessie (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/sysroot.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/sysroot_scripts/install-sysroot.py
diff --git a/build/linux/sysroot_scripts/install-sysroot.py b/build/linux/sysroot_scripts/install-sysroot.py
index 3e842a47cdd9312a1a7af030aa417957684e465f..7c9777c5eb232a590f30702f5ca06da560b448b6 100755
--- a/build/linux/sysroot_scripts/install-sysroot.py
+++ b/build/linux/sysroot_scripts/install-sysroot.py
@@ -37,34 +37,34 @@ URL_PREFIX = 'https://commondatastorage.googleapis.com'
URL_PATH = 'chrome-linux-sysroot/toolchain'
SYSROOTS = {
- ('Wheezy', 'amd64'): {
- 'Revision' : '24f935a3d8cdfcdfbabd23928a42304b1ffc52ba',
- 'Tarball' : 'debian_wheezy_amd64_sysroot.tgz',
- 'Sha1Sum' : 'a7f3df28b02799fbd7675c2ab24f1924c104c0ee',
- 'SysrootDir' : 'debian_wheezy_amd64-sysroot'
+ ('Jessie', 'amd64'): {
+ 'Revision' : '0b14b85bb20d4fb10c05d37631435236670f0c7c',
+ 'Tarball' : 'debian_jessie_amd64_sysroot.tgz',
+ 'Sha1Sum' : '413c5ea044829519e43dfb7c5dbe51d3e2c24d2b',
+ 'SysrootDir' : 'debian_jessie_amd64-sysroot'
},
- ('Wheezy', 'arm'): {
- 'Revision' : '24f935a3d8cdfcdfbabd23928a42304b1ffc52ba',
- 'Tarball' : 'debian_wheezy_arm_sysroot.tgz',
- 'Sha1Sum' : '2df01b8173a363977daf04e176b8c7dba5b0b933',
- 'SysrootDir' : 'debian_wheezy_arm-sysroot'
+ ('Jessie', 'arm'): {
+ 'Revision' : '0b14b85bb20d4fb10c05d37631435236670f0c7c',
+ 'Tarball' : 'debian_jessie_arm_sysroot.tgz',
+ 'Sha1Sum' : '7650a0af1ff07be6e15585f72df2b680271149af',
+ 'SysrootDir' : 'debian_jessie_arm-sysroot'
},
- ('Wheezy', 'i386'): {
- 'Revision' : '24f935a3d8cdfcdfbabd23928a42304b1ffc52ba',
- 'Tarball' : 'debian_wheezy_i386_sysroot.tgz',
- 'Sha1Sum' : 'e2c7131fa5f711de28c37fd9442e77d32abfb3ff',
- 'SysrootDir' : 'debian_wheezy_i386-sysroot'
+ ('Jessie', 'i386'): {
+ 'Revision' : '0b14b85bb20d4fb10c05d37631435236670f0c7c',
+ 'Tarball' : 'debian_jessie_i386_sysroot.tgz',
+ 'Sha1Sum' : '153de0c3c8a90958916372ade159b60128139c4f',
+ 'SysrootDir' : 'debian_jessie_i386-sysroot'
},
- ('Wheezy', 'mips'): {
- 'Revision' : '24f935a3d8cdfcdfbabd23928a42304b1ffc52ba',
- 'Tarball' : 'debian_wheezy_mips_sysroot.tgz',
- 'Sha1Sum' : '22fe7b45b144691aeb515083025f0fceb131d724',
- 'SysrootDir' : 'debian_wheezy_mips-sysroot'
+ ('Jessie', 'mips'): {
+ 'Revision' : '0b14b85bb20d4fb10c05d37631435236670f0c7c',
+ 'Tarball' : 'debian_jessie_mips_sysroot.tgz',
+ 'Sha1Sum' : 'e2a62491b4e4887750f00c57ebf9515cfc624562',
+ 'SysrootDir' : 'debian_jessie_mips-sysroot'
},
('Jessie', 'arm64'): {
- 'Revision' : '24f935a3d8cdfcdfbabd23928a42304b1ffc52ba',
+ 'Revision' : '0b14b85bb20d4fb10c05d37631435236670f0c7c',
'Tarball' : 'debian_jessie_arm64_sysroot.tgz',
- 'Sha1Sum' : 'df9270e00c258e6cd80f8172b1bfa39aafc4756f',
+ 'Sha1Sum' : '4dc75d644cc9aae0d641124a240aefb4fd32dd08',
'SysrootDir' : 'debian_jessie_arm64-sysroot'
},
('Precise', 'amd64'): {
@@ -193,15 +193,15 @@ def main(args):
def InstallDefaultSysrootForArch(target_arch):
if target_arch == 'amd64':
- InstallSysroot('Wheezy', 'amd64')
+ InstallSysroot('Jessie', 'amd64')
elif target_arch == 'arm':
- InstallSysroot('Wheezy', 'arm')
+ InstallSysroot('Jessie', 'arm')
elif target_arch == 'arm64':
InstallSysroot('Jessie', 'arm64')
elif target_arch == 'i386':
- InstallSysroot('Wheezy', 'i386')
+ InstallSysroot('Jessie', 'i386')
elif target_arch == 'mips':
- InstallSysroot('Wheezy', 'mips')
+ InstallSysroot('Jessie', 'mips')
else:
raise Error('Unknown architecture: %s' % target_arch)
« no previous file with comments | « build/config/sysroot.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698