Merge changes from topic "toybox_vendor_ramdisk"
* changes:
Add shell_and_utilities_vendor_ramdisk
Make libraries {vendor_,}ramdisk_available.
This commit is contained in:
commit
92836b2e95
5 changed files with 18 additions and 0 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
cc_library {
|
cc_library {
|
||||||
name: "libpackagelistparser",
|
name: "libpackagelistparser",
|
||||||
|
ramdisk_available: true,
|
||||||
|
vendor_ramdisk_available: true,
|
||||||
recovery_available: true,
|
recovery_available: true,
|
||||||
srcs: ["packagelistparser.cpp"],
|
srcs: ["packagelistparser.cpp"],
|
||||||
shared_libs: ["liblog"],
|
shared_libs: ["liblog"],
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,8 @@ cc_library {
|
||||||
name: "libprocessgroup",
|
name: "libprocessgroup",
|
||||||
host_supported: true,
|
host_supported: true,
|
||||||
native_bridge_supported: true,
|
native_bridge_supported: true,
|
||||||
|
ramdisk_available: true,
|
||||||
|
vendor_ramdisk_available: true,
|
||||||
recovery_available: true,
|
recovery_available: true,
|
||||||
vendor_available: true,
|
vendor_available: true,
|
||||||
vndk: {
|
vndk: {
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,8 @@
|
||||||
cc_library {
|
cc_library {
|
||||||
name: "libcgrouprc",
|
name: "libcgrouprc",
|
||||||
host_supported: true,
|
host_supported: true,
|
||||||
|
ramdisk_available: true,
|
||||||
|
vendor_ramdisk_available: true,
|
||||||
recovery_available: true,
|
recovery_available: true,
|
||||||
// Do not ever mark this as vendor_available; otherwise, vendor modules
|
// Do not ever mark this as vendor_available; otherwise, vendor modules
|
||||||
// that links to the static library will behave unexpectedly. All on-device
|
// that links to the static library will behave unexpectedly. All on-device
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,8 @@
|
||||||
cc_library_static {
|
cc_library_static {
|
||||||
name: "libcgrouprc_format",
|
name: "libcgrouprc_format",
|
||||||
host_supported: true,
|
host_supported: true,
|
||||||
|
ramdisk_available: true,
|
||||||
|
vendor_ramdisk_available: true,
|
||||||
recovery_available: true,
|
recovery_available: true,
|
||||||
native_bridge_supported: true,
|
native_bridge_supported: true,
|
||||||
srcs: [
|
srcs: [
|
||||||
|
|
|
||||||
|
|
@ -51,3 +51,13 @@ phony {
|
||||||
"toybox_vendor",
|
"toybox_vendor",
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// shell and utilities for first stage console. The list of binaries are
|
||||||
|
// enough for debugging purposes.
|
||||||
|
phony {
|
||||||
|
name: "shell_and_utilities_vendor_ramdisk",
|
||||||
|
required: [
|
||||||
|
"sh.vendor_ramdisk",
|
||||||
|
"toybox.vendor_ramdisk",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue