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
This commit is contained in:
Jiyong Park
2019-02-26 10:27:13 +09:00
parent 5d1598f746
commit 854a9440dd

View File

@@ -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 (