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 <mail@aparcar.org>
This commit is contained in:
parent
38bc206abb
commit
d7e905e83a
1 changed files with 5 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue