Browse Source

Add board config for lichee pi 4a

Change-Id: I7d42f6dfa3d9126140aca0613abd7930565616b2
Mao Han 11 months ago
parent
commit
4afc518433
3 changed files with 19 additions and 0 deletions
  1. BIN
      bootpart.lichee_pi_4a.ext4
  2. 19 0
      device-vendor.mk
  3. BIN
      u-boot-with-spl.bin

BIN
bootpart.lichee_pi_4a.ext4


+ 19 - 0
device-vendor.mk

@@ -0,0 +1,19 @@
+ifeq ($(TARGET_PREBUILT_BOOTPART), )
+LOCAL_BOOTPART := $(LOCAL_PATH)/bootpart.lichee_pi_4a.ext4
+else
+LOCAL_BOOTPART := $(TARGET_PREBUILT_BOOTPART)
+endif
+
+ifeq ($(TARGET_PREBUILT_UBOOT),)
+LOCAL_UBOOT := $(LOCAL_PATH)/u-boot-with-spl.bin
+else
+LOCAL_UBOOT := $(TARGET_PREBUILT_UBOOT)
+endif
+
+PRODUCT_COPY_FILES += \
+    $(LOCAL_UBOOT):u-boot-with-spl.bin \
+    $(LOCAL_BOOTPART):bootpart.ext4
+
+# Peripherals config path
+PERIPHERALS_CONFIG_PATH := vendor/thead/proprietary/config/peripherals
+

BIN
u-boot-with-spl.bin