fix: riscv64 efi conditional

missing a && between icicle and visionfive, led to /boot/efi still being
in place, and grub-install running instead of exiting the func.
fixes LP:2015750
fix-netboot-tarballs
John Chittum 2 years ago
parent 38cb20bd88
commit c0af2ca443
No known key found for this signature in database
GPG Key ID: 42FD6DD37F7F195B

@ -455,7 +455,7 @@ EOF
if [ "${SUBARCH:-}" != "nezha" ] && \
[ "${SUBARCH:-}" != "licheerv" ] && \
[ "${SUBARCH:-}" != "icicle" ] \
[ "${SUBARCH:-}" != "icicle" ] && \
[ "${SUBARCH:-}" != "visionfive" ] && \
[ "${SUBARCH:-}" != "visionfive2" ]; then
## TODO remove below once we have grub-efi-riscv64 for the platforms

Loading…
Cancel
Save