-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
halium_device: Unify tree for ARM64 and ARM variants
- Loading branch information
1 parent
8bd53a5
commit cc07c1e
Showing
8 changed files
with
60 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
PRODUCT_MAKEFILES := \ | ||
$(LOCAL_DIR)/lineage_halium_arm64.mk | ||
$(LOCAL_DIR)/halium_arm/lineage_halium_arm.mk \ | ||
$(LOCAL_DIR)/halium_arm64/lineage_halium_arm64.mk | ||
|
||
COMMON_LUNCH_CHOICES := \ | ||
lineage_halium_arm-user \ | ||
lineage_halium_arm-userdebug \ | ||
lineage_halium_arm-eng \ | ||
lineage_halium_arm64-user \ | ||
lineage_halium_arm64-userdebug \ | ||
lineage_halium_arm64-eng |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
-include device/halium/halium/BoardConfig.mk | ||
|
||
# Include Legacy GSI patches | ||
include build/make/target/board/generic_arm_ab/BoardConfig.mk | ||
|
||
# Architecture | ||
TARGET_ARCH := arm | ||
TARGET_ARCH_VARIANT := armv7-a-neon | ||
TARGET_CPU_ABI := armeabi-v7a | ||
TARGET_CPU_ABI2 := armeabi | ||
TARGET_CPU_VARIANT := generic | ||
|
||
# Should be true for devices launched with Pie and Q | ||
TARGET_USES_64_BIT_BINDER := true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
$(call inherit-product, $(LOCAL_PATH)/../lineage_halium.mk) | ||
# Inherit device | ||
$(call inherit-product, $(LOCAL_PATH)/../device.mk) | ||
|
||
PRODUCT_BRAND := halium | ||
PRODUCT_DEVICE := halium_arm | ||
PRODUCT_MANUFACTURER := halium | ||
PRODUCT_NAME := lineage_halium_arm | ||
PRODUCT_MODEL := Generic Device |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
-include device/halium/halium/BoardConfig.mk | ||
|
||
# Include Legacy GSI patches | ||
include build/make/target/board/generic_arm64_ab/BoardConfig.mk | ||
|
||
# Architecture | ||
TARGET_ARCH := arm64 | ||
TARGET_ARCH_VARIANT := armv8-a | ||
TARGET_CPU_ABI := arm64-v8a | ||
TARGET_CPU_ABI2 := | ||
TARGET_CPU_VARIANT := generic | ||
|
||
TARGET_2ND_ARCH := arm | ||
TARGET_2ND_ARCH_VARIANT := armv8-a | ||
TARGET_2ND_CPU_ABI := armeabi-v7a | ||
TARGET_2ND_CPU_ABI2 := armeabi | ||
TARGET_2ND_CPU_VARIANT := generic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Inherit 64bit configurations | ||
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) | ||
|
||
# Inherit common files | ||
$(call inherit-product, $(LOCAL_PATH)/../device.mk) | ||
$(call inherit-product, $(LOCAL_PATH)/../lineage_halium.mk) | ||
|
||
PRODUCT_BRAND := halium | ||
PRODUCT_DEVICE := halium_arm64 | ||
PRODUCT_MANUFACTURER := Halium | ||
PRODUCT_NAME := lineage_halium_arm64 | ||
PRODUCT_MODEL := Generic Device |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters