diff options
| author | Bryan Huntsman <bryanh@codeaurora.org> | 2018-06-04 15:16:23 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2020-06-23 00:22:50 -0700 |
| commit | 325e421864032626c424f70b17f5d09998706f1b (patch) | |
| tree | 3072f8a0ec2d9bf4decc26ea974bcad1b0329dea /scripts/build-all.py | |
| parent | a6445c419c02cd6b7f56a175679347637cc5f692 (diff) | |
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 <bryanh@codeaurora.org>
[schikk@codeaurora.org: resolve trivial merge conflicts]
Signed-off-by: Swetha Chikkaboraiah <schikk@codeaurora.org>
Diffstat (limited to 'scripts/build-all.py')
| -rwxr-xr-x | scripts/build-all.py | 9 |
1 files changed, 0 insertions, 9 deletions
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" |
