[openwrt/openwrt] uboot-envtools: Add support for Orange Pi R1 Plus & LTS
LEDE Commits
lede-commits at lists.infradead.org
Mon Aug 12 12:00:40 PDT 2024
robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/7305bf616e9936eae7316bc13ff9d52b19544d9b
commit 7305bf616e9936eae7316bc13ff9d52b19544d9b
Author: Vyacheslav Ivanov <islavaivanov76 at gmail.com>
AuthorDate: Tue Aug 6 12:44:49 2024 +0300
uboot-envtools: Add support for Orange Pi R1 Plus & LTS
Add support this boards to envtools config
This commit integrates the latest changes from new U-Boot, which includes important updates to the DTSI files for the Orange Pi R1 Plus and Orange Pi R1 Plus LTS boards.
Signed-off-by: Vyacheslav Ivanov <islavaivanov76 at gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16090
Signed-off-by: Robert Marko <robimarko at gmail.com>
---
package/boot/uboot-envtools/files/rockchip_armv8 | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/package/boot/uboot-envtools/files/rockchip_armv8 b/package/boot/uboot-envtools/files/rockchip_armv8
new file mode 100644
index 0000000000..075776a1ff
--- /dev/null
+++ b/package/boot/uboot-envtools/files/rockchip_armv8
@@ -0,0 +1,23 @@
+#
+# Copyright (C) 2024 OpenWrt.org
+#
+[ -e /etc/config/ubootenv ] && exit 0
+
+touch /etc/config/ubootenv
+
+. /lib/uboot-envtools.sh
+. /lib/functions.sh
+
+board=$(board_name)
+
+case "$board" in
+xunlong,orangepi-r1-plus|\
+xunlong,orangepi-r1-plus-lts)
+ ubootenv_add_uci_config "/dev/mmcblk0" "0x3f8000" "0x8000"
+ ;;
+esac
+
+config_load ubootenv
+config_foreach ubootenv_add_app_config
+
+exit 0
More information about the lede-commits
mailing list