aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLisa Nguyen <lisa.nguyen@linaro.org>2014-07-04 10:24:30 +0530
committerSanjay Singh Rawat <sanjay.rawat@linaro.org>2014-07-04 10:29:23 +0530
commite232318568c550f6d1a5f435e93de156985746bf (patch)
treec37e9417a5c7929180cc7282c059702d61a25bba /Makefile
parentfb5116ed247c3f15cba9c5d1b915468d8c168d27 (diff)
cpuhotplug: enable cpuhotplug on cpu0
By default, cpuhotplug does not run on cpu0. However, if we want to allow cpuhotplug to run on cpu0, then we must pass the parameter, hotplug_allow_cpu0=1, to make check. Signed-off-by: Lisa Nguyen <lisa.nguyen@linaro.org> Reported-by: Milosz Wasilewski <milosz.wasilewski@linaro.org> Acked-by: Amit Kucheria <amit.kucheria@linaro.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 731619d..d76deb7 100644
--- a/Makefile
+++ b/Makefile
@@ -21,14 +21,14 @@
# Torez Smith <torez.smith@linaro.org> (IBM Corporation)
# - initial API and implementation
#
-
+hotplug_allow_cpu0?=0
all:
@(cd utils; $(MAKE))
check:
@(cd utils; $(MAKE) check)
@(cd cpufreq; $(MAKE) check)
- @(cd cpuhotplug; $(MAKE) check)
+ @(cd cpuhotplug; $(MAKE) hotplug_allow_cpu0=${hotplug_allow_cpu0} check)
@(cd cpuidle; $(MAKE) check)
# @(cd suspend; $(MAKE) check)
@(cd thermal; $(MAKE) check)