• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

device/generic/common


Commit MetaInfo

修訂17ef541c44d4b432c3d6a8938e20dd51e4749635 (tree)
時間2017-01-13 23:54:42
作者Chih-Wei Huang <cwhuang@linu...>
CommiterChih-Wei Huang

Log Message

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.

Change Summary

差異

--- a/init.sh
+++ b/init.sh
@@ -21,6 +21,9 @@ function init_misc()
2121
2222 # in case no cpu governor driver autoloads
2323 [ -d /sys/devices/system/cpu/cpu0/cpufreq ] || modprobe acpi-cpufreq
24+
25+ # for vold f2fs support
26+ modprobe f2fs
2427 }
2528
2629 function init_hal_audio()