Files
hardware_interfaces/boot/1.0/default/Android.bp
Hridya Valsaraju 865c3bc510 Allow bootctrl hal to work in recovery
Bug: 78793464
Test: Compiles, boot commands work
Change-Id: Icd1dcd97bd03f070758ce945ddfdf2b13caf5ed4
2018-08-10 19:42:49 +00:00

38 lines
803 B
Plaintext

cc_library_shared {
name: "android.hardware.boot@1.0-impl",
defaults: ["hidl_defaults"],
relative_install_path: "hw",
vendor_available: true,
recovery_available: true,
srcs: ["BootControl.cpp"],
shared_libs: [
"liblog",
"libhidlbase",
"libhidltransport",
"libhardware",
"libutils",
"android.hardware.boot@1.0",
],
}
cc_binary {
name: "android.hardware.boot@1.0-service",
defaults: ["hidl_defaults"],
relative_install_path: "hw",
vendor: true,
init_rc: ["android.hardware.boot@1.0-service.rc"],
srcs: ["service.cpp"],
shared_libs: [
"liblog",
"libhardware",
"libhidlbase",
"libhidltransport",
"libutils",
"android.hardware.boot@1.0",
],
}