summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js')
-rw-r--r--applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js7
1 files changed, 5 insertions, 2 deletions
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 {