ZYNQ學習筆記(一): uboot 編譯

wlxydx123發表於2017-09-06

ZYNQ 需用uboot來作為啟動的引導

下載地址:https://pan.baidu.com/s/1i5FwRGD 提取碼:2y66

1、下載地址:https://github.com/Xilinx/u-boot-xlnx
2、在 ubuntu 中執行:git clone https://github.com/Xilinx/u-boot-xlnx.git


3、在下載的uboot目錄中執行

     make zynq_zc702_config

     make


4、mkimage工具

     cd tools

     export  PATH=`pwd`:$PATH

    如果不想每次輸入以上內容,也可將tools 路徑加入到環境變數中

    例如:編輯/etc/bash.bashrc,加入export PATH=uboot路徑/tools:$PATH(待測)


5、在uboot下生成一個名為uboot的二進位制檔案,將名字改成uboot.elf,在SDK中使用;


問題:在make的過程中,遇到了下面問題:

include/image.h:1024:27: fatal error: openssl/evp.h: 沒有那個檔案或目錄
compilation terminated.
scripts/Makefile.host:116: recipe for target 'tools/aisimage.o' failed
make[1]: *** [tools/aisimage.o] Error 1
Makefile:1217: recipe for target 'tools' failed
make: *** [tools] Error 2

 通過 安裝 libssl 解決:sudo apt-get install libssl-dev






相關文章