(ES) 3.2.5 Generación de árbol de dispositivos - coffeebrain/Codesign_HW_SW GitHub Wiki
Generación de árbol de dispositivos
-
Go to SoC EDS installation folder (The following works if you leave the default installation path).
cd ~/intelFPGA/19.1/embedded/ -
Run the embedded_command_shell bash file.
./embedded_command_shell.sh -
Go to your project folder (For this case the project was cloned in Home).
cd ~/Codesign_HW_SW/Quartus_Files/ -
Create dts file based on your sopcinfo file.
sopc2dts --input soc_system.sopcinfo --output soc_system.dts --type dts --board soc_system_board_info.xml --board hps_common_board_info.xml --bridge-removal all --clocks -
Create dtb file based on previously created dts file.
dtc -I dts -O dtb -o soc_system.dtb soc_system.dts -
Copy dtb file to your SD card (For this case the project was cloned in Home). This can be done from terminal or you can manually copy it with the file explorer.
cp ~/Codesign_HW_SW/Quartus_Files/soc_system.dtb <your-SD-card-FAT32-partition>