From 325e421864032626c424f70b17f5d09998706f1b Mon Sep 17 00:00:00 2001 From: Bryan Huntsman Date: Mon, 4 Jun 2018 15:16:23 -0700 Subject: scripts/build-all: remove pattern-based defconfig detection All the defconfigs we care about should be in arch/arm[64]/configs/vendor/ so remove the pattern-based detection logic. Change-Id: I1359db11caffb618d8fb44e02ea2c08efb4041fa Signed-off-by: Bryan Huntsman [schikk@codeaurora.org: resolve trivial merge conflicts] Signed-off-by: Swetha Chikkaboraiah --- scripts/build-all.py | 9 --------- 1 file changed, 9 deletions(-) (limited to 'scripts/build-all.py') diff --git a/scripts/build-all.py b/scripts/build-all.py index 3a6566ac2db7..2e88b7cb3f59 100755 --- a/scripts/build-all.py +++ b/scripts/build-all.py @@ -302,19 +302,10 @@ def scan_configs(): r'mpq*_defconfig', r'sdm*_defconfig', ) - arch64_pats = ( - r'msm*_defconfig', - r'sdm*_defconfig', - ) for p in arch_pats: for n in glob.glob('arch/arm/configs/' + p): name = os.path.basename(n)[:-10] names.append(Builder(name, n)) - if 'CROSS_COMPILE64' in os.environ: - for p in arch64_pats: - for n in glob.glob('arch/arm64/configs/' + p): - name = os.path.basename(n)[:-10] + "-llvm" + "-64" - names.append(Builder(name, n)) for defconfig in glob.glob('arch/arm*/configs/vendor/*_defconfig'): target = os.path.basename(defconfig)[:-10] name = target + "-llvm" -- cgit v1.2.3