Seite 1 von 1

opsi uefi module

Verfasst: 01 Mai 2018, 11:03
von ckruijntjens
Hi everyone,

When can we use the uefi module? is it still a payed module?

Re: opsi uefi module

Verfasst: 01 Mai 2018, 12:55
von m.radtke
Hi,

yes the uefi module is still a cofinanced module.

Cheers
Mathias

Re: opsi uefi module

Verfasst: 10 Mai 2018, 02:01
von SisterOfMercy
You could always ask for a trial license.

I had a hard time to figure out how it all fits together. The uefi module will still require you to boot in uefi mode from the network. So one needs to change their dhcp config.

isc dhcp server thingy:

Code: Alles auswählen

next-server 10.23.0.25;
option client-arch code 93 = array of unsigned integer 16;
if not exists client-arch {
       filename "linux/pxelinux.0";
} elsif substring (option client-arch,0,0) = option client-arch {
       filename "linux/pxelinux.0";
} elsif option client-arch = encode-int (0,16) {       # 0 x86 BIOS
       filename "linux/pxelinux.0";
} elsif option client-arch = encode-int (6,16) {       # 6 x86 UEFI
       filename "linux/pxelinux.cfg/elilo-x86.efi";
} elsif option client-arch = encode-int (7,16) {       # 7 x64 UEFI
       filename "linux/pxelinux.cfg/elilo.efi";
} elsif option client-arch = encode-int (9,16) {       # 9 UEFI ByteCode
       filename "linux/pxelinux.cfg/elilo.efi";
}