Integrate source kernel build for tart
Switch from prebuilt kernel to source kernel build via TARGET_KERNEL_SOURCE. - BoardConfig.mk: add TARGET_KERNEL_SOURCE, TARGET_KERNEL_CONFIG, TARGET_KERNEL_ARCH - device.mk: remove deprecated prebuilt Image copy (kernel build handles it) - mkimg.sh: prefer KERNEL_BUILD_OUT artifacts, fall back to prebuilt
This commit is contained in:
parent
460db77d17
commit
6645a6d36a
3 changed files with 14 additions and 6 deletions
|
|
@ -36,6 +36,11 @@ BOARD_CUSTOM_BOOTIMG_MK := $(DEVICE_PATH)/mkbootimg.mk
|
|||
BOARD_KERNEL_IMAGE_NAME := Image
|
||||
BOARD_KERNEL_CMDLINE := console=ttyS2,1500000 no_console_suspend root=/dev/ram0 rootwait androidboot.hardware=tart
|
||||
|
||||
# Source kernel build (overrides the deprecated prebuilt kernel)
|
||||
TARGET_KERNEL_SOURCE := kernel/rockchip/tart
|
||||
TARGET_KERNEL_CONFIG := tart_defconfig
|
||||
TARGET_KERNEL_ARCH := arm64
|
||||
|
||||
# Manifest
|
||||
DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE := $(DEVICE_PATH)/framework_compatibility_matrix.xml
|
||||
DEVICE_MANIFEST_FILE := $(DEVICE_PATH)/manifest.xml
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue