From: Paul Spooren Date: Thu, 21 Sep 2023 18:05:05 +0000 (+0200) Subject: luci-app-attendedsysupgrade: add x86 efi/bios case X-Git-Url: http://git.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=d7e905e83a11d59ea217cd37189040bd6c9d403e luci-app-attendedsysupgrade: add x86 efi/bios case x86 is the only target that allows you to install either EFI or BIOS images, thereby add an extra check for that. Signed-off-by: Paul Spooren --- diff --git a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js index af0b1eef7a..7b067d7e8d 100644 --- a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js +++ b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js @@ -88,8 +88,11 @@ return view.extend({ let image; for (image of images) { if (this.firmware.filesystem == image.filesystem) { - if (this.data.efi) { - if (image.type == 'combined-efi') { + // x86 images can be combined-efi (EFI) or combined (BIOS) + if(this.firmware.target.indexOf("x86")) { + if (this.data.efi && image.type == 'combined-efi') { + return image; + } else if (image.type == 'combined') { return image; } } else {