From 17ef541c44d4b432c3d6a8938e20dd51e4749635 Mon Sep 17 00:00:00 2001 From: Chih-Wei Huang Date: Fri, 13 Jan 2017 22:54:42 +0800 Subject: [PATCH] init.sh: load f2fs module manually The f2fs module was removed from the built-in drivers to avoid some annoying logs in dmesg. Just load it before vold started. --- init.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.sh b/init.sh index d01705b..2c0999f 100644 --- a/init.sh +++ b/init.sh @@ -21,6 +21,9 @@ function init_misc() # in case no cpu governor driver autoloads [ -d /sys/devices/system/cpu/cpu0/cpufreq ] || modprobe acpi-cpufreq + + # for vold f2fs support + modprobe f2fs } function init_hal_audio() -- 2.11.0