Merge "msm8994: Enable msm_irqbalance"

This commit is contained in:
Linux Build Service Account 2014-08-08 05:00:47 -07:00 committed by Gerrit - the friendly Code Review server
commit e3adb6d49e
2 changed files with 27 additions and 0 deletions

View File

@ -822,3 +822,9 @@ service vm_bms /system/bin/vm_bms
user root
group root
disabled
service msm_irqbalance /system/bin/msm_irqbalance -f /system/vendor/etc/msm_irqbalance.conf
class core
user root
group root
disabled

View File

@ -94,6 +94,23 @@ start_vm_bms()
fi
}
start_msm_irqbalance_8939()
{
if [ -f /system/bin/msm_irqbalance ]; then
case "$platformid" in
"239")
start msm_irqbalance;;
esac
fi
}
start_msm_irqbalance()
{
if [ -f /system/bin/msm_irqbalance ]; then
start msm_irqbalance
fi
}
baseband=`getprop ro.baseband`
#
# Suppress default route installation during RA for IPV6; user space will take
@ -186,5 +203,9 @@ case "$target" in
;;
"msm8916")
start_vm_bms
start_msm_irqbalance_8939
;;
"msm8994")
start_msm_irqbalance
;;
esac