vold: fix missing has.adoptable
This patch fixes missing entry in the below commit.
Fixes: c52f6724ed
("vold: clean up configuration set")
Signed-off-by: Jaegeuk Kim <jaegeuk@google.com>
Change-Id: Ia39a427d4747b29a7af42633f34daab63204bbf9
This commit is contained in:
parent
83c78a2bb1
commit
4ea573aca7
1 changed files with 1 additions and 0 deletions
1
main.cpp
1
main.cpp
|
@ -131,6 +131,7 @@ int main(int argc, char** argv) {
|
||||||
|
|
||||||
// This call should go after listeners are started to avoid
|
// This call should go after listeners are started to avoid
|
||||||
// a deadlock between vold and init (see b/34278978 for details)
|
// a deadlock between vold and init (see b/34278978 for details)
|
||||||
|
android::base::SetProperty("vold.has_adoptable", configs.has_adoptable ? "1" : "0");
|
||||||
android::base::SetProperty("vold.has_quota", configs.has_quota ? "1" : "0");
|
android::base::SetProperty("vold.has_quota", configs.has_quota ? "1" : "0");
|
||||||
android::base::SetProperty("vold.has_reserved", configs.has_reserved ? "1" : "0");
|
android::base::SetProperty("vold.has_reserved", configs.has_reserved ? "1" : "0");
|
||||||
android::base::SetProperty("vold.has_compress", configs.has_compress ? "1" : "0");
|
android::base::SetProperty("vold.has_compress", configs.has_compress ? "1" : "0");
|
||||||
|
|
Loading…
Reference in a new issue