diff options
author | Daniel Rosenberg <drosen@google.com> | 2017-03-20 13:09:06 -0700 |
---|---|---|
committer | Daniel Rosenberg <drosen@google.com> | 2017-03-20 13:11:10 -0700 |
commit | cd591813871902e27677d755160123b2a2454807 (patch) | |
tree | d2ca4dad2c540af6bd1df96e86bd514434a6e3c8 /sdcard | |
parent | 164b70e92796835382d431cba154ab8b6acb6660 (diff) | |
download | core-cd591813871902e27677d755160123b2a2454807.tar.gz core-cd591813871902e27677d755160123b2a2454807.tar.bz2 core-cd591813871902e27677d755160123b2a2454807.zip |
Make sdcardfs the default
This will cause devices to default to sdcardfs if the kernel
supports it.
Test: Booted a wiped device, ensured sdcardfs was enabled
Change-Id: Ibce012b841b78d37ade668a38e91dca74a637867
Diffstat (limited to 'sdcard')
-rw-r--r-- | sdcard/sdcard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdcard/sdcard.cpp b/sdcard/sdcard.cpp index df3ce853c..c342cf811 100644 --- a/sdcard/sdcard.cpp +++ b/sdcard/sdcard.cpp @@ -420,7 +420,7 @@ static bool should_use_sdcardfs(void) { } // Fall back to device opinion about state - if (property_get_bool(PROP_SDCARDFS_DEVICE, false)) { + if (property_get_bool(PROP_SDCARDFS_DEVICE, true)) { LOG(WARNING) << "Device explicitly enabled sdcardfs"; return supports_sdcardfs(); } else { |