iPXE discussion forum
Building ROM Images - Printable Version

+- iPXE discussion forum (https://forum.ipxe.org)
+-- Forum: iPXE user forums (/forumdisplay.php?fid=1)
+--- Forum: General (/forumdisplay.php?fid=2)
+--- Thread: Building ROM Images (/showthread.php?tid=7419)



Building ROM Images - ravinger - 2014-07-30 04:33

Hello! I'm building ROM images but I have to know first my PCI device no. How will I locate that?


RE: Building ROM Images - robinsmidsrod - 2014-08-01 15:16

Use e.g. a Linux installation and run lspci to figure out which device is your network card. Then do lspci -n -s <busid> to find out the PCI vendor/device IDs.

Just remember that you can only burn a ROM if you have an external PCI(e) card. If your network card is on the motherboard then the ROM for it is located inside your BIOS and you'll need to patch your BIOS to make things work. That is quite risky and you might brick your motherboard if you make mistakes. It is usually much safer to just use chainloading to load iPXE using the already available PXE firmware. See http://ipxe.org/howto/chainloading for more details.


RE: Building ROM Images - ravinger - 2014-08-07 03:27

Thanks!