summaryrefslogtreecommitdiff
path: root/scripts/build-all.py
diff options
context:
space:
mode:
authorRohit Vaswani <rvaswani@codeaurora.org>2016-03-04 16:21:18 -0800
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-23 20:57:40 -0700
commitf52a07bd52333fd74bd0952649c0e522a6d4eecf (patch)
treefbab853748b1817e8f4f0a5094e2726f64caaf9f /scripts/build-all.py
parent5cc22e2128447488ad7fc22d25a57fb9d54614d3 (diff)
scripts: build-all: Fix the check_kernel for MSM
Update the check in the check_kernel function for newer kernel. Signed-off-by: Rohit Vaswani <rvaswani@codeaurora.org>
Diffstat (limited to 'scripts/build-all.py')
-rwxr-xr-xscripts/build-all.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-all.py b/scripts/build-all.py
index 4f5db40095ab..9e4942d21da9 100755
--- a/scripts/build-all.py
+++ b/scripts/build-all.py
@@ -60,7 +60,7 @@ if not os.environ.get('CROSS_COMPILE'):
def check_kernel():
"""Ensure that PWD is a kernel directory"""
if (not os.path.isfile('MAINTAINERS') or
- not os.path.isfile('arch/arm/mach-msm/Kconfig')):
+ not os.path.isfile('arch/arm64/configs/msm_defconfig')):
fail("This doesn't seem to be an MSM kernel dir")
def check_build():