iPXE discussion forum
What is the default iPXE script? - Printable Version

+- iPXE discussion forum (https://forum.ipxe.org)
+-- Forum: iPXE user forums (/forumdisplay.php?fid=1)
+--- Forum: General (/forumdisplay.php?fid=2)
+--- Thread: What is the default iPXE script? (/showthread.php?tid=17406)



What is the default iPXE script? - a_bains - 2019-02-12 02:11

What are the default commands that are run when iPXE starts?


RE: What is the default iPXE script? - NiKiZe - 2019-02-12 08:40

There are several ways that iPXE can be configured to change what is executed, but most of the time https://ipxe.org/cmd/autoboot is executed to do network config and then continue booting.

For the details the sourcecode has a few if statements: https://git.ipxe.org/ipxe.git/blob/HEAD:/src/usr/autoboot.c#l585


RE: What is the default iPXE script? - a_bains - 2019-02-12 21:05

Perfect, thanks!