diff options
| author | David Brown <davidb@codeaurora.org> | 2013-11-18 14:53:56 -0800 |
|---|---|---|
| committer | Michael Bohan <mbohan@codeaurora.org> | 2014-02-05 09:34:01 -0800 |
| commit | a7fbd22279775667082df237a69107262e20e21a (patch) | |
| tree | 7fc1f0e86fa39b2edb8ca4ebd4c6666f12c56dd6 /scripts/build-all.py | |
| parent | 0329c70036047039c235b164a7e1e066f007476f (diff) | |
scripts: Use custom defconfig for 64-bit targets
Use a different set of defconfig patterns for 64-bit targets.
Currently, msm_defconfig needs to not be built for 32-bit, and is the
only defconfig for the 64-bit target.
Change-Id: I2c3840fd668aa9a1dbd304c64484f6735f1aeea1
Signed-off-by: David Brown <davidb@codeaurora.org>
Diffstat (limited to 'scripts/build-all.py')
| -rwxr-xr-x | scripts/build-all.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/build-all.py b/scripts/build-all.py index dfa32d43aef..189be5c7b76 100755 --- a/scripts/build-all.py +++ b/scripts/build-all.py @@ -201,11 +201,15 @@ def scan_configs(): r'mdm*_defconfig', r'mpq*_defconfig', ) + arch64_pats = ( + r'msm_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: + 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] + "-64" names.append(Builder(name, n)) |
