8bab9cf65a
Terasic DE10 Nano is an SoCFPGA cycloneV based board. References: - https://www.terasic.com.tw/cgi-bin/page/archive.pl?Language=English&CategoryNo=205&No=1046 - https://rocketboards.org/foswiki/Documentation/DE10NanoDevelopmentBoard Note: there is no dts in kernel (mainline or intel), but since DE0 Nano Soc is similar, the corresponding dts is usually used Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
6 lines
130 B
Bash
6 lines
130 B
Bash
#!/bin/sh
|
|
|
|
# SD card slot, first partition
|
|
mkdir -p /mnt/mmcblk0p2
|
|
automount -d /mnt/mmcblk0p2 'mount /dev/mmc0.1 /mnt/mmcblk0p2'
|