summaryrefslogtreecommitdiff
path: root/sdcard
diff options
context:
space:
mode:
authorDaniel Rosenberg <drosen@google.com>2017-03-20 13:09:06 -0700
committerDaniel Rosenberg <drosen@google.com>2017-03-20 13:11:10 -0700
commitcd591813871902e27677d755160123b2a2454807 (patch)
treed2ca4dad2c540af6bd1df96e86bd514434a6e3c8 /sdcard
parent164b70e92796835382d431cba154ab8b6acb6660 (diff)
downloadcore-cd591813871902e27677d755160123b2a2454807.tar.gz
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.cpp2
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 {