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>
42 lines
810 B
Plaintext
42 lines
810 B
Plaintext
Terasic DE10 Nano Development Board
|
|
|
|
Intro
|
|
=====
|
|
|
|
More information about this board can be found here:
|
|
https://rocketboards.org/foswiki/Documentation/DE10NanoDevelopmentBoard
|
|
|
|
Build
|
|
=====
|
|
|
|
First, load socrates config for buildroot
|
|
|
|
make terasic_de10nano_cyclone5_defconfig
|
|
|
|
Build everything
|
|
|
|
make
|
|
|
|
Following files will be generated in output/images
|
|
|
|
.
|
|
├── barebox-env
|
|
├── barebox-socfpga-de10_nano.img
|
|
├── barebox-socfpga-de10_nano-xload.img
|
|
├── boot.vfat
|
|
├── rootfs.ext2
|
|
├── rootfs.ext4 -> rootfs.ext2
|
|
├── rootfs.tar
|
|
├── sdcard.img
|
|
├── socfpga_cyclone5_de0_nano_soc.dtb
|
|
└── zImage
|
|
|
|
Creating bootable SD card
|
|
=========================
|
|
|
|
Simply invoke
|
|
|
|
dd if=output/images/sdcard.img of=/dev/sdX
|
|
|
|
Where X is your SD card device (not partition)
|