Skip to content

Instantly share code, notes, and snippets.

@KeitetsuWorks
Last active November 11, 2018 03:30
Show Gist options
  • Select an option

  • Save KeitetsuWorks/43fd64d62c1fab9fdd087a20d649dd95 to your computer and use it in GitHub Desktop.

Select an option

Save KeitetsuWorks/43fd64d62c1fab9fdd087a20d649dd95 to your computer and use it in GitHub Desktop.
Script to Prepare the Image for the SDSoC Platform Utility
if [ ! -d ./boot ]; then
mkdir ./boot
fi
if [ ! -d ./image ]; then
mkdir ./image
fi
cp u-boot.elf ./boot/u-boot.elf
cp zynqmp_fsbl.elf ./boot/fsbl.elf
cp bl31.elf ./boot/bl31.elf
cp pmufw.elf ./boot/pmufw.elf
cp image.ub ./image/image.ub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment