QNX版本:QNX6.6
宿主系統(tǒng):Windows
交互系統(tǒng):Debin
開發(fā)板:MIZ702 完全兼容ZedBoard
開發(fā)流程:
1、打開QNX Momentics IDE開發(fā)環(huán)境,F(xiàn)ile->QNX Source Package and BSP->Next->選擇從官網(wǎng)下的BSP壓縮包一路Next Finish。
2、在IDE左側的工程目錄下找到新導入的BSP文件,編譯工程。Note:在編譯BSP之前將/BSP/image/mkflashimage文件的26行的Xilinx SDK路徑根據(jù)自己的安裝情況進行修改。后面附修改后的代碼。
3、ZYNQ啟動所需要的文件有BOOT.bin和OS鏡像文件。若宿主操作系統(tǒng)為Linux,BSP編譯完成后即可獲得系統(tǒng)需要的文件。NOTE:若使用的開發(fā)板為ZC702 EVM則不需要任何修改,若使用的開發(fā)板為ZedBoard或者自制板卡需要將image文件下的fsbl進行替換。
若宿主操作系統(tǒng)為Windows,在編譯完工程后由于mkflashimage腳本文件無法執(zhí)行,不能生成現(xiàn)成得的腳本文件。我們可以查看mkflashimage的代碼 其主要完成了兩個任務:1、將鏡像名字改成QNX-IFS 2、生成BOOT.bin 這些我們可以不用腳本來實現(xiàn)。我們可以自己手動修改鏡像名字,并使用Xilinx SDK生成BOOT.bin文件。
當然也可以使用mkflashimage腳本,但是有些繁瑣,首先WIN+R調出CMD命令框,然后定位到QNX Momentics IDE安裝路徑下(我的是E盤QNX),執(zhí)行qnx660-env,bat文件。
然后定位到BSP/image路徑下,執(zhí)行sh mkflashimage
這時候在image下就生成了我們需要的QNX-IFS鏡像和BOOT.bin。NOTE:生成BOOT.bin的原材料有fsbl和IPL,fsbl要和自己板子匹配,上文已說明。
4、將SD卡格式化為FAT32類型,并將QNX-IFS 和 BOOT.bin拷到SD卡中。將板子上電運行??梢钥吹絈NX操作系統(tǒng)已經(jīng)運行了。
下面是mkflashimage代碼
#!/bin/sh
# script to build a BOOT.bin binary containing the IPL and boot image for ZC702EK.
echo Generating QNX-IFS...
cp ifs-xzynq-zc702.raw QNX-IFS
# Removing previous output binary
if [ -f BOOT.bin ]
then
rm BOOT.bin
fi
# Copy the ELF build output to current folder
# Use install/../mkflashimage if it exists; otherwise use prebuilt/../mkflashimage
if [ -f ../install/armle-v7/boot/sys/ipl-xzynq-zc702 ]
then
cp ../install/armle-v7/boot/sys/ipl-xzynq-zc702 ipl-xzynq-zc702.elf
else
echo Using prebuilt ipl-xzynq-zc702. Run a make command if you wish to change the ipl.
cp ../prebuilt/armle-v7/boot/sys/ipl-xzynq-zc702 ipl-xzynq-zc702.elf
fi
echo Generating BOOT.bin...
# Use bootgen to create the BOOT.bin that contains FSBL + IPL
# Please modify the SDK version (2014.x) to match with the currect version of the tool
#/opt/Xilinx/SDK/2014.1/bin/bootgen -image boot.bif -o i BOOT.bin
E:/vivado/SDK/2016.2/bin/bootgen -image boot.bif -o i BOOT.bin
# Check that it has been created
if [ -f BOOT.bin ]
then
echo Binary ready to be copied
else
echo Failed to create boot image
fi
參考文獻:
[1]qnx官方文檔 bps userguide for zc702
[2]qnx官方文檔 build an embedded system
編輯:hfy
-
操作系統(tǒng)
+關注
關注
37文章
6801瀏覽量
123285 -
qnx
+關注
關注
0文章
70瀏覽量
26181 -
Zynq
+關注
關注
10文章
609瀏覽量
47175
發(fā)布評論請先 登錄
相關推薦
評論