当前位置:   article > 正文

petalinux常用命令_petalinux rootfs packet

petalinux rootfs packet

配置环境变量启动petalinux

source /home/userroot/os/petalinux/settings.sh

基于bsp文件创建

petalinux-create -t project -s xilinx-zc706-v2017.4-final.bsp -n myproject

使用SDK中导出的HDF文件更新项目配置,一共三种方法

  1. //1、在项目根目录下用HDF文件更新
  2. cd <path of project>
  3. petalinux-config --get-hw-description=<path of hdf>
  4. //2、在HDF所在目录更新项目配置
  5. cd <path of hdf>
  6. petalinux-config --get-hw-description -p <path of project> (--oldconfig)
  7. //3、在任意路径下操作
  8. petalinux-config --get-hw-discription <path of hdf> -p <path of project>

系统配置

  1. //全局配置
  2. petalinux-config
  3. //kernel配置
  4. petalinux-config -c kernel
  5. //保存kernel.config文件
  6. //u-boot配置
  7. petalinux-config -c u-boot
  8. //保存u-boot.config文件
  9. //文件系统配置
  10. petalinux-config -c rootfs
  11. //默认保存config文件

 编译系统

  1. //全局编译
  2. petalinux-build
  3. //u-boot编译
  4. petalinux-build -c u-boot
  5. //kernel编译
  6. petalinux-build -c kernel
  7. //文件系统编译
  8. petalinux-build -c rootfs

制作boot.bin文件

  1. petalinux-package --boot --fsbl zynq_fsbl.elf --fpga dma_demo.bit --u-boot u-boot.elf
  2. petalinux-package  --boot --fsbl ./images/linux/zynq_fsbl.elf --fpga --u-boot --force

 QEMU模拟运行

  1. petalinux-boot --qemu --u-boot
  2. petalinux-boot --qemu --kernel

JTAG运行

  1. //加载bitstream/fsbl
  2. petalinux-boot --jtag --prebuilt 1
  3. //加载u-boot
  4. petalinux-boot --jtag --prebuilt 2
  5. //加载kernel
  6. petalinux-boot --jtag --prebuilt 3
  7. petalinux-boot --jtag --u-boot
  8. petalinux-boot --jtag --kernel

编辑,更新devicetree

  1. petalinux-build -c device-tree -x cleanall
  2. petalinux-build -c device-tree

重新生成image.ub

petalinux-build -x package

烧写flash程序

  1. export PATH=$PATH:/home/userroot/os/petalinux/tools/hsm/bin/
  2. hw_server &
  3. //我这里是nand flash,所以flash_type选择nand_8
  4. program_flash -f BOOT.BIN -fsbl zynq_fsbl.elf -flash_type nand_8 -blank_check -verify -cable type xilinx_tcf url tcp:localhost:3121
  5. program_flash -f image.ub -offset 0xF20000 -fsbl zynq_fsbl.elf -flash_type nand_8 -blank_check -verify -cable type xilinx_tcf url tcp:localhost:3121

JTAG启动

  1. petalinux-boot --jtag --bitstream BOOT.BIN --u-boot
  2. petalinux-boot --jtag --bitstream image.ub --kernel

创建APP

  1. petalinux-create -t apps --name myapp --enable
  2. //指定使用语言
  3. petalinux-create -t apps --template c++ --name myapp --enable
  4. petalinux-create -t modules --name mymodule --enable

编译、安装APP

  1. petalinux-build -c myapp -x clean
  2. petalinux-build -c myapp -x install
  3. petalinux-build -c myapp -x build

打包bsp

petalinux-package --bsp -p <plnx-proj-root> --output my.bsp

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/172398
推荐阅读
相关标签
  

闽ICP备14008679号