mirror of
https://github.com/Evolution-X-Devices/device_nokia_PL2
synced 2026-01-29 20:51:30 +00:00
This makes bionic and various art tools that compile/runs cpu-specific code choose the cortex-a53 variant at runtime. It does not affect build-time compilation. Bug: 120773446 Test: bionic benchmarks with and without this change Change-Id: I670c8acd094090135515688c5f057c2cc08a083f
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2019 The LineageOS 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.
|
|
#
|
|
|
|
# Inherit from nokia sdm660-common
|
|
-include device/nokia/sdm660-common/BoardConfigCommon.mk
|
|
|
|
# Architecture
|
|
TARGET_CPU_VARIANT_RUNTIME := cortex-a53
|
|
TARGET_2ND_CPU_VARIANT_RUNTIME := cortex-a53
|
|
|
|
# Bootloader
|
|
TARGET_BOOTLOADER_BOARD_NAME := sdm630
|
|
|
|
# Kernel
|
|
TARGET_KERNEL_CONFIG := nokia_defconfig
|
|
|
|
# Partitions
|
|
BOARD_BOOTIMAGE_PARTITION_SIZE := 67108864
|
|
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 3221225472
|
|
BOARD_USERDATAIMAGE_PARTITION_SIZE := 2147483648
|
|
BOARD_FLASH_BLOCK_SIZE := 262144
|