访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Petalinux常用命令记录

时间:2019-07-27

常用dos命令大全_linux命令windows命令_linux常用命令

前提: petalinux开发环境安装好:

source命令加载成功,可利用echo $PETALINUX验证。

检查统计信息是否关闭

petalinux-util --webtalk off

INFO: Turn off webtalk feature!

1

2

3

一、建立工程

根据BSP包建立工程

在当前工程路径下有xilinx-zc706-v2016.4-final1.bsplinux常用命令,指定工程名为zc706

petalinux-create -t project -s xilinx-zc706-v2016.4-final1.bsp -n zc706

常用dos命令大全_linux命令windows命令_linux常用命令

1

2

2) 自定义建立工程

此时需要考虑结合自己的hdf文件建立工程,有各种办法

petalinux-create -t project --template zynq -n zc706

cd

petalinux-config --get-hw-desription=

1

2

3

二、工程内的各种配置操作

切换到Petalinux工程根目录。

linux常用命令_常用dos命令大全_linux命令windows命令

cd

1

登录系统顶层配置菜单,设定你想要配置。

petalinux-config

1

登录Linux内核配置菜单并配置

petalinux-config -c kernel

1

登录根文件系统配置菜单并配置

petalinux-config -c rootfs

1

三、编译与仿真工程

linux命令windows命令_linux常用命令_常用dos命令大全

具体编译

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

常用dos命令大全_linux常用命令_linux命令windows命令

制作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中调试Linux内核

petalinux-boot --qemu --prebuilt 3

#模拟运行u-boot,kernellinux常用命令,看看是不是正确

petalinux-boot --qemu --u-boot

petalinux-boot --qemu --kernel