Update Petalinux Introduction authored by Corbin Kems's avatar Corbin Kems
......@@ -107,6 +107,18 @@ touch ~/sdmay23-47/petalinux/os/project-spec/meta-user/recipes-apps/bootscript/f
More information about building (and copying) those .elf files are in the [Petalinux Repo Setup](https://git.ece.iastate.edu/sd/sdmay23-47/-/wikis/Firmware-Repo-Setup) docs.
The bootscript was created with the following Petalinux tools commands:
```bash
petalinux-create -t apps --template install -n bootscript --enable
```
```bash
petalinux-build -c bootscript -x do_install -f
```
```bash
petalinux-build -c kernel
```
The [bootscript.bb](https://git.ece.iastate.edu/sd/sdmay23-47/-/blob/master/petalinux/os/project-spec/meta-user/recipes-apps/bootscript/bootscript.bb) file is also worth taking note of, as it defines where the bootscript and .elf files get placed on the Petalinux filesystem when it's built.
# External Resources
Check out our [Useful Resources](https://git.ece.iastate.edu/sd/sdmay23-47/-/wikis/Useful-Resources) page for links to official documentation and other guides we used to develop this project.
......
......