From a2c80ad7a9337dbd784f2bf1c34e9b86399c971d Mon Sep 17 00:00:00 2001 From: Nolen Johnson Date: Thu, 17 Jun 2021 00:43:04 -0400 Subject: [PATCH 1/1] odroidc4: Initial Commit Change-Id: I5bbc92935d81897929edf3daefb27a9e09691f60 --- AndroidProducts.mk | 13 +++++++++++++ BoardConfig.mk | 12 ++++++++++++ device.mk | 9 +++++++++ extract-files.sh | 22 ++++++++++++++++++++++ lineage.dependencies | 6 ++++++ lineage_odroidc4.mk | 21 +++++++++++++++++++++ setup-makefiles.sh | 16 ++++++++++++++++ 7 files changed, 99 insertions(+) create mode 100644 AndroidProducts.mk create mode 100644 BoardConfig.mk create mode 100644 device.mk create mode 100755 extract-files.sh create mode 100644 lineage.dependencies create mode 100644 lineage_odroidc4.mk create mode 100755 setup-makefiles.sh diff --git a/AndroidProducts.mk b/AndroidProducts.mk new file mode 100644 index 0000000..37671e4 --- /dev/null +++ b/AndroidProducts.mk @@ -0,0 +1,13 @@ +# +# Copyright (C) 2021 The LineageOS Project +# +# SPDX-License-Identifier: Apache-2.0 +# + +PRODUCT_MAKEFILES := \ + $(LOCAL_DIR)/lineage_odroidc4.mk + +COMMON_LUNCH_CHOICES := \ + lineage_odroidc4-eng \ + lineage_odroidc4-user \ + lineage_odroidc4-userdebug diff --git a/BoardConfig.mk b/BoardConfig.mk new file mode 100644 index 0000000..b4c1368 --- /dev/null +++ b/BoardConfig.mk @@ -0,0 +1,12 @@ +# +# Copyright (C) 2021 The LineageOS Project +# +# SPDX-License-Identifier: Apache-2.0 +# + +include device/amlogic/g12-common/BoardConfigCommon.mk + +DEVICE_PATH := device/hardkernel/odroidc4 + +## Bootloader +TARGET_BOOTLOADER_BOARD_NAME := odroidc4 diff --git a/device.mk b/device.mk new file mode 100644 index 0000000..e23bf23 --- /dev/null +++ b/device.mk @@ -0,0 +1,9 @@ +# +# Copyright (C) 2021 The LineageOS Project +# +# SPDX-License-Identifier: Apache-2.0 +# + +DEVICE_PATH := device/hardkernel/odroidc4 + +$(call inherit-product, device/amlogic/g12-common/g12.mk) diff --git a/extract-files.sh b/extract-files.sh new file mode 100755 index 0000000..d864330 --- /dev/null +++ b/extract-files.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Copyright (C) 2016 The CyanogenMod Project +# Copyright (C) 2017-2021 The LineageOS Project +# +# SPDX-License-Identifier: Apache-2.0 +# + +# If we're being sourced by the common script that we called, +# stop right here. No need to go down the rabbit hole. +if [ "${BASH_SOURCE[0]}" != "${0}" ]; then + return +fi + +set -e + +export DEVICE=odroidc4 +export DEVICE_COMMON=g12-common +export VENDOR_COMMON=amlogic +export VENDOR_DEVICE=hardkernel + +"./../../${VENDOR_COMMON}/${DEVICE_COMMON}/extract-files.sh" "$@" diff --git a/lineage.dependencies b/lineage.dependencies new file mode 100644 index 0000000..337c1e8 --- /dev/null +++ b/lineage.dependencies @@ -0,0 +1,6 @@ +[ + { + "repository": "android_device_aamlogic_g12-common", + "target_path": "device/amlogic/g12-common" + } +] diff --git a/lineage_odroidc4.mk b/lineage_odroidc4.mk new file mode 100644 index 0000000..4d2f29d --- /dev/null +++ b/lineage_odroidc4.mk @@ -0,0 +1,21 @@ +# +# Copyright (C) 2021 The LineageOS Project +# +# SPDX-License-Identifier: Apache-2.0 +# + +# Inherit some common AOSP stuff +$(call inherit-product, device/google/atv/products/atv_base.mk) + +# Inherit some common Lineage stuff +$(call inherit-product, vendor/lineage/config/common_full_tv.mk) + +# Inherit device configuration +$(call inherit-product, $(LOCAL_PATH)/device.mk) + +## Device identifier. This must come after all inclusions +PRODUCT_BRAND := hardkernel +PRODUCT_DEVICE := odroidc4 +PRODUCT_MANUFACTURER := hardkernel +PRODUCT_MODEL := odroid c4 +PRODUCT_NAME := lineage_odroidc4 diff --git a/setup-makefiles.sh b/setup-makefiles.sh new file mode 100755 index 0000000..18884b4 --- /dev/null +++ b/setup-makefiles.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# +# Copyright (C) 2016 The CyanogenMod Project +# Copyright (C) 2017-2021 The LineageOS Project +# +# SPDX-License-Identifier: Apache-2.0 +# + +set -e + +export DEVICE=odroidc4 +export DEVICE_COMMON=g12-common +export VENDOR_COMMON=amlogic +export VENDOR_DEVICE=hardkernel + +"./../../${VENDOR_COMMON}/${DEVICE_COMMON}/setup-makefiles.sh" "$@" -- 2.20.1