cd6de3d8bb
These options are for certifying official GKI release, so they should never be added to build command of recovery.img and boot-debug.img. Also define gki_signing_signature_args in misc_info.txt iff. BOARD_GKI_SIGNING_KEY_PATH is defined, so there's one less conditional. We need to define it even if BOARD_GKI_SIGNING_SIGNATURE_ARGS is empty, so that sign_target_files_apks.py can modify the option during image signing. Bug: 210367929 Test: Presubmit Change-Id: I9546fcda796586d97af244955e15c1b8dc9f6d92
40 lines
1.4 KiB
Makefile
40 lines
1.4 KiB
Makefile
# Copyright (C) 2021 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
# Enable GKI 2.0 signing.
|
|
BOARD_GKI_SIGNING_KEY_PATH := build/make/target/product/gsi/testkey_rsa2048.pem
|
|
BOARD_GKI_SIGNING_ALGORITHM := SHA256_RSA2048
|
|
BOARD_GKI_SIGNING_SIGNATURE_ARGS :=
|
|
|
|
# Sets boot SPL.
|
|
BOOT_SECURITY_PATCH = $(PLATFORM_SECURITY_PATCH)
|
|
|
|
# Boot image with ramdisk and kernel
|
|
BOARD_RAMDISK_USE_LZ4 := true
|
|
BOARD_BOOT_HEADER_VERSION := 4
|
|
BOARD_MKBOOTIMG_ARGS += --header_version $(BOARD_BOOT_HEADER_VERSION)
|
|
BOARD_USES_RECOVERY_AS_BOOT :=
|
|
TARGET_NO_KERNEL := false
|
|
BOARD_USES_GENERIC_KERNEL_IMAGE := true
|
|
|
|
# Copy boot image in $OUT to target files. This is defined for targets where
|
|
# the installed GKI APEXes are built from source.
|
|
BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES := true
|
|
|
|
# No vendor_boot
|
|
BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT :=
|
|
|
|
# No recovery
|
|
BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE :=
|