device/generic/common
修訂 | 17ef541c44d4b432c3d6a8938e20dd51e4749635 (tree) |
---|---|
時間 | 2017-01-13 23:54:42 |
作者 | Chih-Wei Huang <cwhuang@linu...> |
Commiter | Chih-Wei Huang |
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.
@@ -21,6 +21,9 @@ function init_misc() | ||
21 | 21 | |
22 | 22 | # in case no cpu governor driver autoloads |
23 | 23 | [ -d /sys/devices/system/cpu/cpu0/cpufreq ] || modprobe acpi-cpufreq |
24 | + | |
25 | + # for vold f2fs support | |
26 | + modprobe f2fs | |
24 | 27 | } |
25 | 28 | |
26 | 29 | function init_hal_audio() |