hc
2024-08-19 eb6b9ee90f50f13c5abb885ce483802d6262f2b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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)