fc03b3aa16
The Cavium OCTEON TX is an ARM 64-bit SoC leveraging CPU cores and periperhals from the Cavium ThunderX SoC. This initial support provides a 4.14 kernel and kernel+initramfs that is bootable on the Gateworks Newport GW630x as well as the Cavium sff8104 reference board. Signed-off-by: Tim Harvey <tharvey@gateworks.com>
18 lines
204 B
Bash
18 lines
204 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2018 OpenWrt.org
|
|
#
|
|
|
|
. ./lib/functions/uci-defaults.sh
|
|
. ./lib/octeontx.sh
|
|
|
|
board=$(octeontx_board_name)
|
|
|
|
board_config_update
|
|
|
|
case "$board" in
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|