Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
xilinx_petalinux_howto [2019/09/23 11:31] – [Basic steps] rpjday | xilinx_petalinux_howto [2019/10/19 13:39] (current) – removed rpjday | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ===== Overview ===== | ||
- | Sample creation and configuration of Petalinux projects for Zynq Ultrascale+. | ||
- | |||
- | Downloads: | ||
- | |||
- | * [[https:// | ||
- | * [[https:// | ||
- | |||
- | ===== Basic steps ===== | ||
- | |||
- | < | ||
- | $ petalinux-create \ | ||
- | --type project \ | ||
- | --template zynqMP \ | ||
- | --name zcu102 | ||
- | $ cd zcu102 | ||
- | </ | ||
- | |||
- | < | ||
- | ├── config.project | ||
- | └── project-spec | ||
- | ├── attributes | ||
- | ├── configs | ||
- | │ ├── config | ||
- | │ └── rootfs_config | ||
- | ├── hw-description | ||
- | │ └── metadata | ||
- | └── meta-user | ||
- | ├── conf | ||
- | │ ├── layer.conf | ||
- | │ └── petalinuxbsp.conf | ||
- | ├── COPYING.MIT | ||
- | ├── README | ||
- | ├── recipes-apps | ||
- | │ ├── gpio-demo | ||
- | │ │ ├── files | ||
- | │ │ │ ├── gpio-demo.c | ||
- | │ │ │ └── Makefile | ||
- | │ │ └── gpio-demo.bb | ||
- | │ └── peekpoke | ||
- | │ | ||
- | │ | ||
- | │ | ||
- | │ | ||
- | │ | ||
- | ├── recipes-bsp | ||
- | │ ├── device-tree | ||
- | │ │ ├── device-tree.bbappend | ||
- | │ │ └── files | ||
- | │ │ | ||
- | │ │ | ||
- | │ │ | ||
- | │ │ | ||
- | │ │ | ||
- | │ └── u-boot | ||
- | │ | ||
- | │ | ||
- | │ | ||
- | └── recipes-core | ||
- | └── images | ||
- | └── petalinux-image-full.bbappend | ||
- | </ |