aboutsummaryrefslogtreecommitdiffstats
path: root/sysprop
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2019-02-26 10:27:13 +0900
committerJiyong Park <jiyong@google.com>2019-02-26 10:27:13 +0900
commit854a9440dd666b7df98cf90f51e55298365366b0 (patch)
treec1a5ea58ab63777d4b7d77eef87d5249a17da009 /sysprop
parent5d1598f746e513001443f44f9f4a70a54f73d039 (diff)
downloadbuild_soong-854a9440dd666b7df98cf90f51e55298365366b0.tar.gz
build_soong-854a9440dd666b7df98cf90f51e55298365366b0.tar.bz2
build_soong-854a9440dd666b7df98cf90f51e55298365366b0.zip
Add recovery_available property to sysprop module
This is required for a sysprop module to be used by a module like the init which is available both in core and recovery variants. Test: m Change-Id: I075428289f5bdce26e931ccf3262793ca6e4a0fd
Diffstat (limited to 'sysprop')
-rw-r--r--sysprop/sysprop_library.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/sysprop/sysprop_library.go b/sysprop/sysprop_library.go
index 4069e78e..643fe8e9 100644
--- a/sysprop/sysprop_library.go
+++ b/sysprop/sysprop_library.go
@@ -42,9 +42,10 @@ type syspropLibraryProperties struct {
}
type commonProperties struct {
- Srcs []string
- Recovery *bool
- Vendor_available *bool
+ Srcs []string
+ Recovery *bool
+ Recovery_available *bool
+ Vendor_available *bool
}
var (