Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

barebox: also use image suffix for barebox-flash-image and EFI #54

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions recipes-bsp/barebox/barebox.inc
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ do_deploy[vardepsexclude] = "DATETIME"
do_deploy () {
install -d ${DEPLOYDIR}
if [ -e ${B}/barebox-flash-image ]; then
install -m 644 -t ${DEPLOYDIR}/ ${B}/barebox-flash-image
install -m 644 -T ${B}/barebox-flash-image ${DEPLOYDIR}/barebox-flash-image${BAREBOX_IMAGE_SUFFIX}
fi
if [ -e ${B}/barebox.efi ]; then
install -m 644 -t ${DEPLOYDIR}/ ${B}/barebox.efi
install -m 644 -T ${B}/barebox.efi ${DEPLOYDIR}/barebox.efi${BAREBOX_IMAGE_SUFFIX}
fi
for IMAGE in ${BAREBOX_IMAGES_TO_DEPLOY}; do
if [ -e ${IMAGE} ]; then
Expand Down