aboutsummaryrefslogtreecommitdiff
path: root/package/boot
diff options
context:
space:
mode:
authorChristian Svensson <blue@cmd.nu>2023-07-03 00:31:59 +0200
committerChristian Lamparter <chunkeey@gmail.com>2023-07-15 17:05:58 +0200
commit6bf0e7649400f5c25828061d14dd5aa76bfc1211 (patch)
treee0454f7fa311eeb97833b027463fa948147cf797 /package/boot
parent861b608ab507bba16bc4dd68055a1e34cd11cf43 (diff)
octeon: n821: add Cisco vEdge 1000 base
This is the first commit to introduce the base for the N821 board used in Cisco vEdge 1000. This commit does not include the custom CPLD drivers but rather everything else that is already present in the upstream kernel. This results in an image that boots, but e.g. the SFP ports are not usable. Hardware: - CPU: Cavium Networks CN6130, 4 cores @ 1.0 GHz - Flash: - 16 MiB SPI NOR presented as 2x8 MiB for A/B boot recovery - 8192 MiB eMMC - RAM: 4096 MiB - Ethernet 1Gbit ports: 1x - Ethernet SFP ports: 8x - USB ports: 2x 3.0 Type-A on front panel - Serial: Two, one internal and one external - JTAG: Yes - LED count: 18x - Button count: 1x - GPIOs: 1x - Power: 2x redundant DC 12V barrel plug - Extra: Slot for SD card on front See the OpenWrt wiki for more hardware details. Installation: - Flash squashfs to /dev/sda2 and put kernel on /dev/sda1. - Update uboot's bootcmd environment variable to match. Full installation guide will be added to OpenWrt wiki when sysupgrade support is added. Signed-off-by: Christian Svensson <blue@cmd.nu> Signed-off-by: Tommy Nevtelen <tommy@nevtelen.com> Tested-by: Viktor Ekmark <viktor@ekmark.se> Tested-by: Daniel Wennberg <github@networkninja.se>
Diffstat (limited to 'package/boot')
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 0000000000..a6faed6eb3
--- /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