mirror of https://github.com/ipxe/ipxe.git
[romprefix] Fix ROM image copy on PCI 3.0 BIOSes
Add the missing instructions to the code path that I never tested due to not having a PCI 3.0 system available. (D'oh)pull/1/head
parent
f178436bb1
commit
8332ddf556
|
@ -290,7 +290,9 @@ no_pmm:
|
|||
movzbw romheader_size, %cx
|
||||
shlw $9, %cx
|
||||
movw %ax, %es
|
||||
rep movsb
|
||||
xorw %si, %si
|
||||
xorw %di, %di
|
||||
cs rep movsb
|
||||
no_pci3:
|
||||
no_pci:
|
||||
/* Prompt for POST-time shell */
|
||||
|
|
Loading…
Reference in New Issue