309626effc
This patch adds support for the Altera SoCFPGA target. Both generic target and Terasic SoCkit boards are supported. Signed-off-by: Marek Vasut <marex@denx.de> SVN-Revision: 49367
16 lines
275 B
Bash
Executable File
16 lines
275 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
start() {
|
|
. /lib/socfpga.sh
|
|
|
|
local board=$(socfpga_board_name)
|
|
|
|
# Print something nice on the VTcon (the SPI LCD)
|
|
if [ "${board}" = "socfpga-sockit" ] ; then
|
|
echo "OpenWRT" > /dev/tty0
|
|
uci show network.lan.ipaddr > /dev/tty0
|
|
fi
|
|
}
|