[GH-ISSUE #865] booting fails after version 27 #240

Closed
opened 2026-02-27 14:50:59 +03:00 by kerem · 10 comments
Owner

Originally created by @klara31 on GitHub (Apr 4, 2021).
Original GitHub issue: https://github.com/netbootxyz/netboot.xyz/issues/865

Describe the bug
When chainloading netboot.xyz.efi version 28 (or higher), netboot.xyz does not boot. netboot complains about a wrong version (1.x, where 2.x is available).
Screen shows initialising devices and reboots. Using version 27, it works OK.

I am using ipxe.efi to boot into boot.ipxe containing:

#!ipxe

chain --autofree --replace http://boot.netboot.xyz/

If I replace this with:

#!ipxe

chain --autofree --replace tftp://192.168.10.50/netboot.xyz/netboot.xyz.efi

where netboot.xyz.efi is version 27 it works. I have also tried replacing the line with http://boot.netboot.xyz/ipxe/netboot.xyz.efi, same result.

To Reproduce
Chainload version 27 works OK. Version 28 or higher fails.

Expected behavior
I guess this should work for any version, but at least the latest version. But it doesn't.

Additional context
I am struggling on this for quite some time now and cannot figure out why this is not working.

Originally created by @klara31 on GitHub (Apr 4, 2021). Original GitHub issue: https://github.com/netbootxyz/netboot.xyz/issues/865 **Describe the bug** When chainloading netboot.xyz.efi version 28 (or higher), netboot.xyz does not boot. netboot complains about a wrong version (1.x, where 2.x is available). Screen shows initialising devices and reboots. Using version 27, it works OK. I am using ipxe.efi to boot into boot.ipxe containing: ``` #!ipxe chain --autofree --replace http://boot.netboot.xyz/ ``` If I replace this with: ``` #!ipxe chain --autofree --replace tftp://192.168.10.50/netboot.xyz/netboot.xyz.efi ``` where netboot.xyz.efi is version 27 it works. I have also tried replacing the line with ```http://boot.netboot.xyz/ipxe/netboot.xyz.efi```, same result. **To Reproduce** Chainload version 27 works OK. Version 28 or higher fails. **Expected behavior** I guess this should work for any version, but at least the latest version. But it doesn't. **Additional context** I am struggling on this for quite some time now and cannot figure out why this is not working.
kerem 2026-02-27 14:50:59 +03:00
Author
Owner

@antonym commented on GitHub (Apr 4, 2021):

Have you downloaded the latest version of netboot.xyz? Are you using an older build of netboot.xyz or coming from stock iPXE?

<!-- gh-comment-id:813035244 --> @antonym commented on GitHub (Apr 4, 2021): Have you downloaded the latest version of netboot.xyz? Are you using an older build of netboot.xyz or coming from stock iPXE?
Author
Owner

@klara31 commented on GitHub (Apr 4, 2021):

I have downloaded netboot.xyz.efi version 2.0.35, and it fails. Using netboot.xyz.efi version 2.0.27 works.
Chainloading from stock ipxe.efi version 1.21.1 (g1192e), downloaded from http://boot.ipxe.org/ipxe.efi

<!-- gh-comment-id:813036856 --> @klara31 commented on GitHub (Apr 4, 2021): I have downloaded netboot.xyz.efi version 2.0.35, and it fails. Using netboot.xyz.efi version 2.0.27 works. Chainloading from stock ipxe.efi version 1.21.1 (g1192e), downloaded from http://boot.ipxe.org/ipxe.efi
Author
Owner

@antonym commented on GitHub (Apr 4, 2021):

Does netboot.xyz 2.0.35 work standalone? It just fails when going from stock to netboot.xyz? Each release tracks the latest version of iPXE at that time. Probably would just need to see if there's anything that either changed in iPXE or the netboot.xyz code from the 2.0.27-2.0.28 that would introduce that type of issue.

<!-- gh-comment-id:813039332 --> @antonym commented on GitHub (Apr 4, 2021): Does netboot.xyz 2.0.35 work standalone? It just fails when going from stock to netboot.xyz? Each release tracks the latest version of iPXE at that time. Probably would just need to see if there's anything that either changed in iPXE or the netboot.xyz code from the 2.0.27-2.0.28 that would introduce that type of issue.
Author
Owner

@klara31 commented on GitHub (Apr 4, 2021):

My dnsmasq.conf contains:

...
# Tag dhcp request from iPXE
dhcp-match=set:ipxe,175

# inspect the vendor class string and tag BIOS client
dhcp-match=set:BIOS,option:client-arch,0

# 1st boot file - Legacy BIOS client
dhcp-boot=tag:!ipxe,tag:BIOS,undionly.kpxe,,192.168.10.50

# 1st boot file - EFI client
# at the moment all non-BIOS clients are considered EFI client
dhcp-boot=tag:!ipxe,tag:!BIOS,ipxe.efi,,192.168.10.50

# 2nd boot file
dhcp-boot=netboot.xyz.efi,,192.168.10.50

What happens, is that first ipxe.efi is loaded and next netboot.xyz.efi. This works for version 2.0.27 but not for 2.0.35
If I put a # in front of the 1st boot line - EFI client (disabling loading ipxe.efi), booting goes straight into netboot.xyz.efi and that works for both 2.0.27 and 2.0.35.

So booting straight into 2.0.35 works, but chainloaded from ipxe.efi does not.

<!-- gh-comment-id:813050648 --> @klara31 commented on GitHub (Apr 4, 2021): My dnsmasq.conf contains: ``` ... # Tag dhcp request from iPXE dhcp-match=set:ipxe,175 # inspect the vendor class string and tag BIOS client dhcp-match=set:BIOS,option:client-arch,0 # 1st boot file - Legacy BIOS client dhcp-boot=tag:!ipxe,tag:BIOS,undionly.kpxe,,192.168.10.50 # 1st boot file - EFI client # at the moment all non-BIOS clients are considered EFI client dhcp-boot=tag:!ipxe,tag:!BIOS,ipxe.efi,,192.168.10.50 # 2nd boot file dhcp-boot=netboot.xyz.efi,,192.168.10.50 ``` What happens, is that first ```ipxe.efi``` is loaded and next ```netboot.xyz.efi```. This works for version 2.0.27 but not for 2.0.35 If I put a # in front of the 1st boot line - EFI client (disabling loading ```ipxe.efi```), booting goes straight into ```netboot.xyz.efi``` and that works for both 2.0.27 and 2.0.35. So booting straight into 2.0.35 works, but chainloaded from ipxe.efi does not.
Author
Owner

@github-actions[bot] commented on GitHub (May 5, 2021):

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

<!-- gh-comment-id:832370548 --> @github-actions[bot] commented on GitHub (May 5, 2021): This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Author
Owner

@berlin4apk commented on GitHub (Jul 23, 2021):

Not stale

<!-- gh-comment-id:885862243 --> @berlin4apk commented on GitHub (Jul 23, 2021): Not stale
Author
Owner

@commonism commented on GitHub (Jul 29, 2021):

I think this may be a problem with the ipxe version used, current ipxe does not chain boot itself here.

For me, this fails:

:chain
chain --autofree ../ipxe/netboot.xyz.efi

(can be added as custom in netboot.xyz easily)

I'm using vCenter/ESXI with e1000e nics in the vms.

<!-- gh-comment-id:889060651 --> @commonism commented on GitHub (Jul 29, 2021): I think this may be a problem with the ipxe version used, current ipxe does not chain boot itself here. For me, this fails: ``` :chain chain --autofree ../ipxe/netboot.xyz.efi ``` (can be added as custom in netboot.xyz easily) I'm using vCenter/ESXI with e1000e nics in the vms.
Author
Owner

@antonym commented on GitHub (Aug 19, 2021):

I haven't been able to reproduce this with Proxmox, does it happen with the latest builds?

<!-- gh-comment-id:901600261 --> @antonym commented on GitHub (Aug 19, 2021): I haven't been able to reproduce this with Proxmox, does it happen with the latest builds?
Author
Owner

@commonism commented on GitHub (Aug 19, 2021):

Yes, it is stuck at "iPXE initializing devices…"

For the previous version I enabled debug for the embedded ipxe build - including vmware console debug logging - extracted logs.

I think this was chainloading the ipxe image:

iPXE 1.20.1+ (g1b3c) -- Open Source Network Boot Firmware -- http://ipxe.org
Features: DNS HTTP HTTPS iSCSI NFS TFTP SRP VLAN AoE EFI Menu

net0: 00:50:56:83:68:e3 using 82574l on 0000:0b:00.0 (Ethernet) [open]
  [Link:up, TX:0 TXE:1 RX:0 RXE:0]
  [TXE: 1 x "Network unreachable (http://ipxe.org/28086090)"]
Configuring (net0 00:50:56:83:68:e3)...IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
... ok
net0: 10.17.49.78/255.255.255.0 gw 10.17.49.1
net0: fe80::250:56ff:fe83:68e3/64
Next server: 10.17.49.47
Filename: http://10.17.49.47/pxe/boot.ipxe
http://10.17.49.47/pxe/boot.ipxe... ok
boot.ipxe : 1110 bytes [script]
boot.ipxe.cfg... ok
cispa.png... ok
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
hostname-vrt-21-0026.cispa.de.ipxe... No such file or directory (http://ipxe.org/2d0c618e)
uuid-724b0342-75fe-ebfa-7cc7-ac3d83d444b3.ipxe... No such file or directory (http://ipxe.org/2d0c618e)
mac-0050568368e3.ipxe... ok
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
tftp://10.17.49.47/ipxe.x86_64.efi... ok
PXE net0 START IPv4
PXE net0 using 10.17.49.78
PXE net0 installed for PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)
iPXE initialising devices...EFIDRV connecting our drivers
EFIPCI 0000:00:00.0 (8086:7190 class 060000) has no driver
EFIPCI 0000:00:01.0 (8086:7191 class 060400) has no driver
EFIPCI 0000:00:07.0 (8086:7110 class 060100) has no driver
EFIPCI 0000:00:07.1 (8086:7111 class 01018a) has no driver
EFIPCI 0000:00:07.3 (8086:7113 class 068000) has no driver
EFIPCI 0000:00:07.7 (15ad:0740 class 088000) has no driver
EFIPCI 0000:00:0f.0 (15ad:0405 class 030000) has no driver
EFIPCI 0000:00:11.0 (15ad:0790 class 060401) has no driver
EFIPCI 0000:00:15.0 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:03:00.0 (15ad:07c0 class 010700) has no driver
EFIPCI 0000:00:15.1 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.2 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.3 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.4 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.5 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.6 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.7 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:16.0 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has driver "82574l"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) has driver "PCI"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) disconnecting existing drivers
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) DRIVER_STOP child PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
0000:0b:00.0 removed
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) DRIVER_STOP
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) could not disconnect existing drivers: Error 0x7f37e08e (http://ipxe.org/7f37e08
e)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) connecting new drivers
EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has driver "82574l"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) has driver "PCI"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) DRIVER_START
EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has driver "82574l"
0000:0b:00.0 (8086:10d3) has driver "82574l"
0000:0b:00.0 has mem fe220000 io 3000 irq 255
0000:0b:00.0 latency timer is unreasonably low at 0. Setting to 32.
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
EFIPCI 0000:0b:00.0 using driver "82574l"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) using driver "PCI"
EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has driver "82574l"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) has driver "PCI"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) DRIVER_START
EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has driver "82574l"
EFIPCI PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) could not open PCI device: Error 0x7f10e18f (http://ipxe.org/7f10e18f)
HANDLE PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) PciIo opened 4x (H) by DxeCore for <NULL>
HANDLE PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) PciIo opened 1x (G) by Simple Network Protocol Driver for UNKNOWN<0xfce7b18>
HANDLE PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) PciIo opened 1x (T) by ISA Bus Driver
HANDLE PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) PciIo opened 1x (DX) by ipxe.efi
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) could not start driver "PCI": Error 0x7f10e18f (http://ipxe.org/7f10e18f)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) is not supported by driver "NII": Error 0x7f684083 (http://ipxe.org/7f684083)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) is not supported by driver "SNP": Error 0x7f684083 (http://ipxe.org/7f684083)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) has driver "NII"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) DRIVER_START
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Error 0x7f10e183 (http:/
/ipxe.org/7f10e183)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) could not start driver "NII": Error 0x7f6a408f (http://ipx
e.org/7f6a408f)
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
SNP PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) registered as net0
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) using driver "SNP"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) has driver "NII"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) DRIVER_START
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Er
ror 0x7f10e183 (http://ipxe.org/7f10e183)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "NII": Error 
0x7f6a408f (http://ipxe.org/7f6a408f)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "SNP": Error 
0x14086088 (http://ipxe.org/14086088)
SNP net0 could not set station address before initialising: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not set station address after initialising: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) has driver "NII"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) DRIVER_START
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Er
ror 0x7f10e183 (http://ipxe.org/7f10e183)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "NII": Error 
0x7f6a408f (http://ipxe.org/7f6a408f)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not shut down: Error 0x7f594086 (http://ipxe.org/7f594086)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "SNP": Error 
0x14086088 (http://ipxe.org/14086088)
SNP net0 could not set station address before initialising: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not set station address after initialising: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)
SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086)

this is a repeating loop

and - I think this was for the snp image or snp-only …

iPXE 1.20.1+ (g1b3c) -- Open Source Network Boot Firmware -- http://ipxe.org
Features: DNS HTTP HTTPS iSCSI NFS TFTP SRP VLAN AoE EFI Menu

net0: 00:50:56:83:68:e3 using 82574l on 0000:0b:00.0 (Ethernet) [open]
  [Link:up, TX:0 TXE:1 RX:0 RXE:0]
  [TXE: 1 x "Network unreachable (http://ipxe.org/28086090)"]
Configuring (net0 00:50:56:83:68:e3)...IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
... ok
net0: 10.17.49.78/255.255.255.0 gw 10.17.49.1
net0: fe80::250:56ff:fe83:68e3/64
Next server: 10.17.49.47
Filename: http://10.17.49.47/pxe/boot.ipxe
http://10.17.49.47/pxe/boot.ipxe... ok
boot.ipxe : 1110 bytes [script]
boot.ipxe.cfg... ok
cispa.png... ok
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
hostname-vrt-21-0026.cispa.de.ipxe... No such file or directory (http://ipxe.org/2d0c618e)
uuid-724b0342-75fe-ebfa-7cc7-ac3d83d444b3.ipxe... No such file or directory (http://ipxe.org/2d0c618e)
mac-0050568368e3.ipxe... ok
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
tftp://10.17.49.47/snponly.x86_64.efi... ok
PXE net0 START IPv4
PXE net0 using 10.17.49.78
PXE net0 installed for PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)
iPXE initialising devices...EFIDRV connecting our drivers
EFIPCI 0000:00:00.0 (8086:7190 class 060000) has no driver
EFIPCI 0000:00:01.0 (8086:7191 class 060400) has no driver
EFIPCI 0000:00:07.0 (8086:7110 class 060100) has no driver
EFIPCI 0000:00:07.1 (8086:7111 class 01018a) has no driver
EFIPCI 0000:00:07.3 (8086:7113 class 068000) has no driver
EFIPCI 0000:00:07.7 (15ad:0740 class 088000) has no driver
EFIPCI 0000:00:0f.0 (15ad:0405 class 030000) has no driver
EFIPCI 0000:00:11.0 (15ad:0790 class 060401) has no driver
EFIPCI 0000:00:15.0 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:03:00.0 (15ad:07c0 class 010700) has no driver
EFIPCI 0000:00:15.1 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.2 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.3 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.4 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.5 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.6 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:15.7 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:16.0 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has no driver
EFIPCI 0000:00:16.1 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:16.2 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:16.3 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:16.4 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:16.5 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:16.6 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:16.7 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:17.0 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:17.1 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:17.2 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:17.3 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:17.4 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:17.5 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:17.6 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:17.7 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:18.0 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:18.1 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:18.2 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:18.3 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:18.4 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:18.5 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:18.6 (15ad:07a0 class 060400) has no driver
EFIPCI 0000:00:18.7 (15ad:07a0 class 060400) has no driver
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) has driver "NIIONLY"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) disconnecting existing drivers
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) DRIVER_STOP child PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/
MAC(0050568368E3,0x1)/VenHw(8FBB5591-38B5-751D-582E-93639424AD3D)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) connecting new drivers
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) has driver "NIIONLY"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) DRIVER_START
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) could not start driver "NIIONLY": Error 0x7f6a408f (http:/
/ipxe.org/7f6a408f)
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
IPv6 net0 has address fe80::250:56ff:fe83:68e3/64
SNP PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) registered as net0
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) using driver "SNPONLY"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) has driver "NII"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) DRIVER_START
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Er
ror 0x7f10e183 (http://ipxe.org/7f10e183)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "NII": Error 
0x7f6a408f (http://ipxe.org/7f6a408f)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "SNP": Error 
0x14086088 (http://ipxe.org/14086088)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) has driver "NII"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) DRIVER_START
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Er
ror 0x7f10e183 (http://ipxe.org/7f10e183)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "NII": Input/
output error (http://ipxe.org/1d6a4398)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "SNP": Error 
0x14086088 (http://ipxe.org/14086088)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) has driver "NII"
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) DRIVER_START
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Er
ror 0x7f10e183 (http://ipxe.org/7f10e183)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "NII": Input/
output error (http://ipxe.org/1d6a4398)
EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "SNP": Error 
0x14086088 (http://ipxe.org/14086088)
<!-- gh-comment-id:901708899 --> @commonism commented on GitHub (Aug 19, 2021): Yes, it is stuck at "iPXE initializing devices…" For the previous version I enabled debug for the embedded ipxe build - including vmware console debug logging - extracted logs. I think this was chainloading the ipxe image: ``` iPXE 1.20.1+ (g1b3c) -- Open Source Network Boot Firmware -- http://ipxe.org Features: DNS HTTP HTTPS iSCSI NFS TFTP SRP VLAN AoE EFI Menu net0: 00:50:56:83:68:e3 using 82574l on 0000:0b:00.0 (Ethernet) [open] [Link:up, TX:0 TXE:1 RX:0 RXE:0] [TXE: 1 x "Network unreachable (http://ipxe.org/28086090)"] Configuring (net0 00:50:56:83:68:e3)...IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 ... ok net0: 10.17.49.78/255.255.255.0 gw 10.17.49.1 net0: fe80::250:56ff:fe83:68e3/64 Next server: 10.17.49.47 Filename: http://10.17.49.47/pxe/boot.ipxe http://10.17.49.47/pxe/boot.ipxe... ok boot.ipxe : 1110 bytes [script] boot.ipxe.cfg... ok cispa.png... ok IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 hostname-vrt-21-0026.cispa.de.ipxe... No such file or directory (http://ipxe.org/2d0c618e) uuid-724b0342-75fe-ebfa-7cc7-ac3d83d444b3.ipxe... No such file or directory (http://ipxe.org/2d0c618e) mac-0050568368e3.ipxe... ok IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 tftp://10.17.49.47/ipxe.x86_64.efi... ok PXE net0 START IPv4 PXE net0 using 10.17.49.78 PXE net0 installed for PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) iPXE initialising devices...EFIDRV connecting our drivers EFIPCI 0000:00:00.0 (8086:7190 class 060000) has no driver EFIPCI 0000:00:01.0 (8086:7191 class 060400) has no driver EFIPCI 0000:00:07.0 (8086:7110 class 060100) has no driver EFIPCI 0000:00:07.1 (8086:7111 class 01018a) has no driver EFIPCI 0000:00:07.3 (8086:7113 class 068000) has no driver EFIPCI 0000:00:07.7 (15ad:0740 class 088000) has no driver EFIPCI 0000:00:0f.0 (15ad:0405 class 030000) has no driver EFIPCI 0000:00:11.0 (15ad:0790 class 060401) has no driver EFIPCI 0000:00:15.0 (15ad:07a0 class 060400) has no driver EFIPCI 0000:03:00.0 (15ad:07c0 class 010700) has no driver EFIPCI 0000:00:15.1 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.2 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.3 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.4 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.5 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.6 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.7 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:16.0 (15ad:07a0 class 060400) has no driver EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has driver "82574l" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) has driver "PCI" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) disconnecting existing drivers EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) DRIVER_STOP child PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 0000:0b:00.0 removed EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) DRIVER_STOP EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) could not disconnect existing drivers: Error 0x7f37e08e (http://ipxe.org/7f37e08 e) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) connecting new drivers EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has driver "82574l" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) has driver "PCI" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) DRIVER_START EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has driver "82574l" 0000:0b:00.0 (8086:10d3) has driver "82574l" 0000:0b:00.0 has mem fe220000 io 3000 irq 255 0000:0b:00.0 latency timer is unreasonably low at 0. Setting to 32. IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 EFIPCI 0000:0b:00.0 using driver "82574l" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) using driver "PCI" EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has driver "82574l" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) has driver "PCI" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) DRIVER_START EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has driver "82574l" EFIPCI PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) could not open PCI device: Error 0x7f10e18f (http://ipxe.org/7f10e18f) HANDLE PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) PciIo opened 4x (H) by DxeCore for <NULL> HANDLE PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) PciIo opened 1x (G) by Simple Network Protocol Driver for UNKNOWN<0xfce7b18> HANDLE PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) PciIo opened 1x (T) by ISA Bus Driver HANDLE PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) PciIo opened 1x (DX) by ipxe.efi EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) could not start driver "PCI": Error 0x7f10e18f (http://ipxe.org/7f10e18f) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) is not supported by driver "NII": Error 0x7f684083 (http://ipxe.org/7f684083) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0) is not supported by driver "SNP": Error 0x7f684083 (http://ipxe.org/7f684083) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) has driver "NII" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) DRIVER_START EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Error 0x7f10e183 (http:/ /ipxe.org/7f10e183) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) could not start driver "NII": Error 0x7f6a408f (http://ipx e.org/7f6a408f) IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 SNP PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) registered as net0 EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) using driver "SNP" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) has driver "NII" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) DRIVER_START EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Er ror 0x7f10e183 (http://ipxe.org/7f10e183) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "NII": Error 0x7f6a408f (http://ipxe.org/7f6a408f) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "SNP": Error 0x14086088 (http://ipxe.org/14086088) SNP net0 could not set station address before initialising: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not set station address after initialising: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) has driver "NII" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) DRIVER_START EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Er ror 0x7f10e183 (http://ipxe.org/7f10e183) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "NII": Error 0x7f6a408f (http://ipxe.org/7f6a408f) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not shut down: Error 0x7f594086 (http://ipxe.org/7f594086) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "SNP": Error 0x14086088 (http://ipxe.org/14086088) SNP net0 could not set station address before initialising: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not set station address after initialising: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) SNP net0 could not get status: Error 0x7f594086 (http://ipxe.org/7f594086) ``` this is a repeating loop and - I think this was for the snp image or snp-only … ``` iPXE 1.20.1+ (g1b3c) -- Open Source Network Boot Firmware -- http://ipxe.org Features: DNS HTTP HTTPS iSCSI NFS TFTP SRP VLAN AoE EFI Menu net0: 00:50:56:83:68:e3 using 82574l on 0000:0b:00.0 (Ethernet) [open] [Link:up, TX:0 TXE:1 RX:0 RXE:0] [TXE: 1 x "Network unreachable (http://ipxe.org/28086090)"] Configuring (net0 00:50:56:83:68:e3)...IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 ... ok net0: 10.17.49.78/255.255.255.0 gw 10.17.49.1 net0: fe80::250:56ff:fe83:68e3/64 Next server: 10.17.49.47 Filename: http://10.17.49.47/pxe/boot.ipxe http://10.17.49.47/pxe/boot.ipxe... ok boot.ipxe : 1110 bytes [script] boot.ipxe.cfg... ok cispa.png... ok IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 hostname-vrt-21-0026.cispa.de.ipxe... No such file or directory (http://ipxe.org/2d0c618e) uuid-724b0342-75fe-ebfa-7cc7-ac3d83d444b3.ipxe... No such file or directory (http://ipxe.org/2d0c618e) mac-0050568368e3.ipxe... ok IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 tftp://10.17.49.47/snponly.x86_64.efi... ok PXE net0 START IPv4 PXE net0 using 10.17.49.78 PXE net0 installed for PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) iPXE initialising devices...EFIDRV connecting our drivers EFIPCI 0000:00:00.0 (8086:7190 class 060000) has no driver EFIPCI 0000:00:01.0 (8086:7191 class 060400) has no driver EFIPCI 0000:00:07.0 (8086:7110 class 060100) has no driver EFIPCI 0000:00:07.1 (8086:7111 class 01018a) has no driver EFIPCI 0000:00:07.3 (8086:7113 class 068000) has no driver EFIPCI 0000:00:07.7 (15ad:0740 class 088000) has no driver EFIPCI 0000:00:0f.0 (15ad:0405 class 030000) has no driver EFIPCI 0000:00:11.0 (15ad:0790 class 060401) has no driver EFIPCI 0000:00:15.0 (15ad:07a0 class 060400) has no driver EFIPCI 0000:03:00.0 (15ad:07c0 class 010700) has no driver EFIPCI 0000:00:15.1 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.2 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.3 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.4 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.5 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.6 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:15.7 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:16.0 (15ad:07a0 class 060400) has no driver EFIPCI 0000:0b:00.0 (8086:10d3 class 020000) has no driver EFIPCI 0000:00:16.1 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:16.2 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:16.3 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:16.4 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:16.5 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:16.6 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:16.7 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:17.0 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:17.1 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:17.2 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:17.3 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:17.4 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:17.5 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:17.6 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:17.7 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:18.0 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:18.1 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:18.2 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:18.3 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:18.4 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:18.5 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:18.6 (15ad:07a0 class 060400) has no driver EFIPCI 0000:00:18.7 (15ad:07a0 class 060400) has no driver EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) has driver "NIIONLY" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) disconnecting existing drivers EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) DRIVER_STOP child PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/ MAC(0050568368E3,0x1)/VenHw(8FBB5591-38B5-751D-582E-93639424AD3D) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) connecting new drivers EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) has driver "NIIONLY" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) DRIVER_START EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) could not start driver "NIIONLY": Error 0x7f6a408f (http:/ /ipxe.org/7f6a408f) IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 IPv6 net0 has address fe80::250:56ff:fe83:68e3/64 SNP PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) registered as net0 EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1) using driver "SNPONLY" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) has driver "NII" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) DRIVER_START EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Er ror 0x7f10e183 (http://ipxe.org/7f10e183) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "NII": Error 0x7f6a408f (http://ipxe.org/7f6a408f) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "SNP": Error 0x14086088 (http://ipxe.org/14086088) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) has driver "NII" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) DRIVER_START EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Er ror 0x7f10e183 (http://ipxe.org/7f10e183) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "NII": Input/ output error (http://ipxe.org/1d6a4398) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "SNP": Error 0x14086088 (http://ipxe.org/14086088) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) has driver "NII" EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) DRIVER_START EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) is not supported by driver "PCI": Er ror 0x7f10e183 (http://ipxe.org/7f10e183) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "NII": Input/ output error (http://ipxe.org/1d6a4398) EFIDRV PciRoot(0x0)/Pci(0x16,0x0)/Pci(0x0,0x0)/MAC(0050568368E3,0x1)/MAC(0050568368E3,0x1) could not start driver "SNP": Error 0x14086088 (http://ipxe.org/14086088) ```
Author
Owner

@github-actions[bot] commented on GitHub (Mar 15, 2022):

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

<!-- gh-comment-id:1067496295 --> @github-actions[bot] commented on GitHub (Mar 15, 2022): This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/netboot.xyz#240
No description provided.