前提: petalinux開發(fā)環(huán)境安裝好:
source命令加載成功,可利用echo $PETALINUX驗(yàn)證。
檢查統(tǒng)計(jì)信息是否關(guān)閉
petalinux-util --webtalk off
INFO: Turn off webtalk feature!
1
2
3
一、建立工程
根據(jù)BSP包建立工程
在當(dāng)前工程路徑下有xilinx-zc706-v2016.4-final1.bsplinux常用命令,指定工程名為zc706
petalinux-create -t project -s xilinx-zc706-v2016.4-final1.bsp -n zc706
1
2
2) 自定義建立工程
此時需要考慮結(jié)合自己的hdf文件建立工程,有各種辦法
petalinux-create -t project --template zynq -n zc706
cd
petalinux-config --get-hw-desription=
1
2
3
二、工程內(nèi)的各種配置操作
切換到Petalinux工程根目錄。
cd
1
登錄系統(tǒng)頂層配置菜單,設(shè)定你想要配置。
petalinux-config
1
登錄Linux內(nèi)核配置菜單并配置
petalinux-config -c kernel
1
登錄根文件系統(tǒng)配置菜單并配置
petalinux-config -c rootfs
1
三、編譯與仿真工程
具體編譯
petalinux-build -c appname -x clean
petalinux-build -c appname -x install
petalinux-build -c appname -x build
1
2
3
4
整體編譯
petalinux-build
1
2
制作Bin文件
petalinux-package --boot --fsbl ./images/linux/zynq_fsbl.elf --fpga ./images/linux/system_top.bit --u-boot --force
1
打包
note: the image loader utility will default to using the appropriate bit file if no custom fpga image path is specified, but it is compatible with bin, bit, and lvbitx images.。prebuilt=$ndk/toolchains/arm-linux-androideabi-4.4.3/prebuilt/windows。{"smallurl":"http:\/\/pad3.whstatic.com\/images\/thumb\/e\/e3\/install-arch-linux-step-23-version-2.jpg\/v3-460px-install-arch-linux-step-23-version-2.jpg","bigurl":"http:\/\/pad2.whstatic.com\/images\/thumb\/e\/e3\/install-arch-linux-step-23-version-2.jpg\/v3-760px-install-arch-linux-step-23-version-2.jpg","smallwidth":460,"smallheight":345,"bigwidth":760,"bigheight":570}。
1
仿真
QEMU中調(diào)試Linux內(nèi)核
petalinux-boot --qemu --prebuilt 3
#模擬運(yùn)行u-boot,kernellinux常用命令,看看是不是正確
petalinux-boot --qemu --u-boot
petalinux-boot --qemu --kernel