1# Copyright (C) 2022 The Android Open Source Project 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14# 15 16TARGET_CPU_ABI := x86_64 17TARGET_ARCH := x86_64 18TARGET_ARCH_VARIANT := x86_64 19 20TARGET_2ND_CPU_ABI := x86 21TARGET_2ND_ARCH := x86 22TARGET_2ND_ARCH_VARIANT := x86_64 23 24include device/generic/common/BoardConfigGkiCommon.mk 25 26BOARD_KERNEL-5.4_BOOTIMAGE_PARTITION_SIZE := 67108864 27BOARD_KERNEL-5.10_BOOTIMAGE_PARTITION_SIZE := 67108864 28BOARD_KERNEL-5.10-ALLSYMS_BOOTIMAGE_PARTITION_SIZE := 67108864 29BOARD_KERNEL-5.15_BOOTIMAGE_PARTITION_SIZE := 67108864 30BOARD_KERNEL-5.15-ALLSYMS_BOOTIMAGE_PARTITION_SIZE := 67108864 31 32# Boot images 33BOARD_KERNEL_BINARIES := \ 34 kernel-5.10 \ 35 kernel-5.15 \ 36 37ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT))) 38BOARD_KERNEL_BINARIES += \ 39 kernel-5.10-allsyms \ 40 kernel-5.15-allsyms \ 41 42endif 43