diff options
| author | Stephen Boyd <sboyd@codeaurora.org> | 2011-08-02 20:31:00 -0700 |
|---|---|---|
| committer | Stephen Boyd <sboyd@codeaurora.org> | 2013-09-04 14:17:53 -0700 |
| commit | eb19efa58ac3c2c8de24c3a2694dd61a05a8aa14 (patch) | |
| tree | d689d65c78a891dfa3cd7a7f8e43f53564f26799 /scripts/build-all.py | |
| parent | 33519a464cd1a6b0ad6e013a99415a26a47de377 (diff) | |
build-all.py: Add support for apq defconfigs
There is an apq8064_defconfig. Compile it too.
Change-Id: I9ca96ab56640c8f3726d052ad43d1624a4ece0a5
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
(cherry picked from commit d14a37b998dcabb5783f69cc77c66722afdc7567)
Diffstat (limited to 'scripts/build-all.py')
| -rwxr-xr-x | scripts/build-all.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/build-all.py b/scripts/build-all.py index b2b953c5883..b944ac4cd7b 100755 --- a/scripts/build-all.py +++ b/scripts/build-all.py @@ -87,6 +87,8 @@ def scan_configs(): names[os.path.basename(n)[:-10]] = n for n in glob.glob('arch/arm/configs/qsd*_defconfig'): names[os.path.basename(n)[:-10]] = n + for n in glob.glob('arch/arm/configs/apq*_defconfig'): + names[os.path.basename(n)[:-10]] = n return names class Builder: |
