aboutsummaryrefslogtreecommitdiffstats
path: root/package/boot/uboot-envtools/files/octeon
diff options
context:
space:
mode:
Diffstat (limited to 'package/boot/uboot-envtools/files/octeon')
-rw-r--r--package/boot/uboot-envtools/files/octeon23
1 files changed, 23 insertions, 0 deletions
diff --git a/package/boot/uboot-envtools/files/octeon b/package/boot/uboot-envtools/files/octeon
new file mode 100644
index 00000000000..a6faed6eb3a
--- /dev/null
+++ b/package/boot/uboot-envtools/files/octeon
@@ -0,0 +1,23 @@
+#
+# Copyright (C) 2023 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
+cisco,vedge1000)
+ ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000"
+ ;;
+esac
+
+config_load ubootenv
+config_foreach ubootenv_add_app_config ubootenv
+
+exit 0