m5: Initial Commit
authorNolen Johnson <johnsonnolen@gmail.com>
Thu, 17 Jun 2021 04:43:04 +0000 (00:43 -0400)
committerNolen Johnson <johnsonnolen@gmail.com>
Tue, 27 Jul 2021 15:37:30 +0000 (11:37 -0400)
Change-Id: I5bbc92935d81897929edf3daefb27a9e09691f60

AndroidProducts.mk [new file with mode: 0644]
BoardConfig.mk [new file with mode: 0644]
device.mk [new file with mode: 0644]
extract-files.sh [new file with mode: 0755]
lineage.dependencies [new file with mode: 0644]
lineage_m5.mk [new file with mode: 0644]
setup-makefiles.sh [new file with mode: 0755]

diff --git a/AndroidProducts.mk b/AndroidProducts.mk
new file mode 100644 (file)
index 0000000..7257844
--- /dev/null
@@ -0,0 +1,13 @@
+#
+# Copyright (C) 2021 The LineageOS Project
+#
+# SPDX-License-Identifier: Apache-2.0
+#
+
+PRODUCT_MAKEFILES := \
+    $(LOCAL_DIR)/lineage_m5.mk
+
+COMMON_LUNCH_CHOICES := \
+    lineage_m5-eng \
+    lineage_m5-user \
+    lineage_m5-userdebug
diff --git a/BoardConfig.mk b/BoardConfig.mk
new file mode 100644 (file)
index 0000000..097658a
--- /dev/null
@@ -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/bananapi/m5
+
+## Bootloader
+TARGET_BOOTLOADER_BOARD_NAME := m5
diff --git a/device.mk b/device.mk
new file mode 100644 (file)
index 0000000..a6a8f7a
--- /dev/null
+++ b/device.mk
@@ -0,0 +1,9 @@
+#
+# Copyright (C) 2021 The LineageOS Project
+#
+# SPDX-License-Identifier: Apache-2.0
+#
+
+DEVICE_PATH := device/bananapi/m5
+
+$(call inherit-product, device/amlogic/g12-common/g12.mk)
diff --git a/extract-files.sh b/extract-files.sh
new file mode 100755 (executable)
index 0000000..5dc6131
--- /dev/null
@@ -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=m5
+export DEVICE_COMMON=g12-common
+export VENDOR_COMMON=amlogic
+export VENDOR_DEVICE=bananapi
+
+"./../../${VENDOR_COMMON}/${DEVICE_COMMON}/extract-files.sh" "$@"
diff --git a/lineage.dependencies b/lineage.dependencies
new file mode 100644 (file)
index 0000000..257b036
--- /dev/null
@@ -0,0 +1,6 @@
+[  
+  {
+    "repository": "android_device_amlogic_g12-common",
+    "target_path": "device/amlogic/g12-common"
+  }
+]
diff --git a/lineage_m5.mk b/lineage_m5.mk
new file mode 100644 (file)
index 0000000..bdec0fd
--- /dev/null
@@ -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 := bananapi
+PRODUCT_DEVICE := m5
+PRODUCT_MANUFACTURER := bananapi
+PRODUCT_MODEL := BPI-M5
+PRODUCT_NAME := lineage_m5
diff --git a/setup-makefiles.sh b/setup-makefiles.sh
new file mode 100755 (executable)
index 0000000..0f5bb69
--- /dev/null
@@ -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=m5
+export DEVICE_COMMON=g12-common
+export VENDOR_COMMON=amlogic
+export VENDOR_DEVICE=bananapi
+
+"./../../${VENDOR_COMMON}/${DEVICE_COMMON}/setup-makefiles.sh" "$@"