From 883d596caf0aa972f79bac8a85af43baa87babb7 Mon Sep 17 00:00:00 2001 From: royna2544 Date: Tue, 8 Apr 2025 16:38:13 +0900 Subject: [PATCH] a20: Move TARGET_SOC to device.mk - And set TARGET_DEVICE as well. --- BoardConfig.mk | 3 --- device.mk | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/BoardConfig.mk b/BoardConfig.mk index a52f7b3..2f15be7 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -15,9 +15,6 @@ BOARD_SYSTEMIMAGE_PARTITION_SIZE := 4303355904 BOARD_CACHEIMAGE_PARTITION_SIZE := 157286400 BOARD_VENDORIMAGE_PARTITION_SIZE := 452984832 -# Target SoC -TARGET_SOC := exynos7884B - # Inherit common board flags include device/samsung/exynos7885-common/BoardConfigCommon.mk diff --git a/device.mk b/device.mk index 1a02891..9eee9c1 100644 --- a/device.mk +++ b/device.mk @@ -1,6 +1,10 @@ # Copyright (C) 2025 The LineageOS Project # SPDX-License-Identifier: Apache-2.0 +# Target Info +TARGET_SOC := exynos7884B +TARGET_DEVICE := a20 + # Inherit common device configuration $(call inherit-product, device/samsung/exynos7885-common/exynos7885-common.mk)