commit | e9f4ce4368225d67425cc84c7031ee7f7891355f | [log] [tgz] |
---|---|---|
author | Kelvin Zhang <zhangkelvin@google.com> | Fri Aug 25 10:41:48 2023 -0700 |
committer | Kelvin Zhang <zhangkelvin@google.com> | Fri Aug 25 10:41:48 2023 -0700 |
tree | 78e2d8f2687c4554cb0218ee2e89a42b9e22e5b2 | |
parent | 19c36a5ee7d46428d1fdd73b8acf65677d511d40 [diff] |
Fix 16k ota package build failures on pixel boot_ota_16k.zip relies on build_boot_from_kernel_avb_enabled. But that makefile function is guarded by $(BOARD_PREBUILT_BOOTIMAGE). Pixel defined BOARD_PREBUILT_BOOTIMAGE, which causes build_boot_from_kernel_avb_enabled to be undefined, resulting in build failure. Test: th Bug: 293313353 Change-Id: I5b01e9bf7fedd9c508f476bc243d860dc48c5ebb
This is the Makefile-based portion of the Android Build System.
For documentation on how to run a build, see Usage.txt
For a list of behavioral changes useful for Android.mk writers see Changes.md
For an outdated reference on Android.mk files, see build-system.html. Our Android.mk files look similar, but are entirely different from the Android.mk files used by the NDK build system. When searching for documentation elsewhere, ensure that it is for the platform build system -- most are not.
This Makefile-based system is in the process of being replaced with Soong, a new build system written in Go. During the transition, all of these makefiles are read by Kati, and generate a ninja file instead of being executed directly. That's combined with a ninja file read by Soong so that the build graph of the two systems can be combined and run as one.