Skip to content

Commit

Permalink
barebox: support deploying EFI image
Browse files Browse the repository at this point in the history
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
  • Loading branch information
ejoerns committed Oct 13, 2017
1 parent 6a37319 commit 9287b8f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions recipes-bsp/barebox/barebox.inc
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ do_deploy () {
if [ -e ${S}/barebox-flash-image ]; then
install -m 644 -t ${DEPLOYDIR}/ ${S}/barebox-flash-image
fi
if [ -e ${S}/barebox.efi ]; then
install -m 644 -t ${DEPLOYDIR}/ ${S}/barebox.efi
fi
for IMAGE in ${S}/images/*.img; do
if [ -e ${IMAGE} ]; then
BAREBOX_IMG_BASENAME=$(basename ${IMAGE} .img)${BAREBOX_IMAGE_SUFFIX}
Expand Down

0 comments on commit 9287b8f

Please sign in to comment.