875ab7d9e3
The hss-payload-generator cannot find where u-boot.bin is when looking for it using the config.yaml. Update syntax issues and working directories. Fix the post image script to allow an image to get built. Signed-off-by: Jamie Gibbons <jamie.gibbons@microchip.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14 lines
419 B
Bash
Executable File
14 lines
419 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
HSS_PAYLOAD_GENERATOR="${HOST_DIR}"/bin/hss-payload-generator
|
|
MKIMAGE="${HOST_DIR}"/bin/mkimage
|
|
BOARD_DIR="$(pwd)"/"${0%/*}"
|
|
|
|
pushd "${BINARIES_DIR}"
|
|
"${HSS_PAYLOAD_GENERATOR}" -c "${BOARD_DIR}"/config.yaml payload.bin
|
|
cp "${BOARD_DIR}"/mpfs_icicle.its "${BINARIES_DIR}"/mpfs_icicle.its
|
|
"${MKIMAGE}" -f mpfs_icicle.its mpfs_icicle.itb
|
|
popd
|
|
support/scripts/genimage.sh -c "${BOARD_DIR}"/genimage.cfg
|