Add generic board-agnostic pre-built pvmfw.img
Make use of the pvmfw.img-building AOSP framework to provide a common default image instead of requiring boards to necessarily provide their own but allow over-writing it through BOARD_PREBUILT_PVMFWIMAGE, if desired. Note: The Android Virtualization Framework requires the pvmfw partition. Bug: 199717422 Test: m ${ANDROID_PRODUCT_OUT}/pvmfw.img Change-Id: I5e06f08d6e22178e45254b7ab63acd3855d99a38
This commit is contained in:
parent
fa8193c0e9
commit
3bda0d6992
1 changed files with 3 additions and 0 deletions
|
@ -3479,9 +3479,12 @@ endif # BOARD_PREBUILT_DTBOIMAGE
|
|||
# Protected VM firmware image
|
||||
ifeq ($(BOARD_USES_PVMFWIMAGE),true)
|
||||
INSTALLED_PVMFWIMAGE_TARGET := $(PRODUCT_OUT)/pvmfw.img
|
||||
INTERNAL_PREBUILT_PVMFWIMAGE := packages/modules/Virtualization/pvmfw/pvmfw.img
|
||||
|
||||
ifdef BOARD_PREBUILT_PVMFWIMAGE
|
||||
BUILT_PVMFWIMAGE_TARGET := $(BOARD_PREBUILT_PVMFWIMAGE)
|
||||
else ifeq ($(BUILDING_PVMFW_IMAGE),true)
|
||||
BUILT_PVMFWIMAGE_TARGET := $(INTERNAL_PREBUILT_PVMFWIMAGE)
|
||||
endif
|
||||
|
||||
ifeq ($(BOARD_AVB_ENABLE),true)
|
||||
|
|
Loading…
Reference in a new issue