booting ipxe from pxelinux
|
2013-08-24, 18:10
Post: #6
|
|||
|
|||
RE: booting ipxe from pxelinux
I don't know if this will work, but you do have to add the APPEND line in order to add kernel arguments...
Code: #Default. Now, embedding code into iPXE is simplicity itself: your script: Code: #!ipxe as boot.ipxe Then when compiling iPXE: make bin/undionly.kpxe EMBED=boot.ipxe If you want to use the full driver kernel, it is too large to boot on it's own, so you chainload the ipxe.pxe file... undionly.kpxe with an embedded script to chainload ipxe.pxe, and then ipxe.pxe with an embedded script to chainload NFW.ipxe e.g. make bin/undionly.kpxe EMBED=chain.ipxe make bin/ipxe.pxe EMBED=boot.ipxe your undionly script (chain.ipxe): Code: #!ipxe your ipxe.pxe script (boot.ipxe) : Code: #!ipxe make bin/undionly.kpxe EMBED=chain.ipxe make bin/ipxe.pxe EMBED=boot.ipxe Best, Matt "Thus far, you have been adrift within the sheltered harbor of my patience..." |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 3 Guest(s)