Obsolete PRODUCT_STATIC_BOOT_CONTROL_HAL.

Bug: 34254109
Test: TreeHugger
Test: Define PRODUCT_STATIC_BOOT_CONTROL_HAL and see the expected
      failure after lunch.
Change-Id: I914b84e874fe14a25dcfe56b282c56f88934d07c
This commit is contained in:
Tao Bao
2019-05-28 16:30:18 -07:00
parent 2459515d3a
commit 84f88a473a
2 changed files with 19 additions and 0 deletions

View File

@@ -1,5 +1,23 @@
# Build System Changes for Android.mk Writers
## PRODUCT_STATIC_BOOT_CONTROL_HAL is obsolete {#PRODUCT_STATIC_BOOT_CONTROL_HAL}
`PRODUCT_STATIC_BOOT_CONTROL_HAL` was the workaround to allow sideloading with
statically linked boot control HAL, before shared library HALs were supported
under recovery. Android Q has added such support (HALs will be loaded in
passthrough mode), and the workarounds are being removed. Targets should build
and install the recovery variant of boot control HAL modules into recovery
image, similar to the ones installed for normal boot. See the change to
crosshatch for example of this:
* [device/google/crosshatch/bootctrl/Android.bp] for `bootctrl.sdm845` building
rules
* [device/google/crosshatch/device.mk] for installing `bootctrl.sdm845.recovery`
and `android.hardware.boot@1.0-impl.recovery` into recovery image
[device/google/crosshatch/bootctrl/Android.bp]: https://android.googlesource.com/device/google/crosshatch/+/master/bootctrl/Android.bp
[device/google/crosshatch/device.mk]: https://android.googlesource.com/device/google/crosshatch/+/master/device.mk
## Deprecation of `BUILD_*` module types
See [build/make/Deprecation.md](Deprecation.md) for the current status.