Browse Source

Documentation: Add a note about enabling the `console` iPXE command

This command is used in the given script, and in the latest version of
iPXE its disabled by default
Idan Horowitz 4 years ago
parent
commit
687efe6dd6
1 changed files with 6 additions and 1 deletions
  1. 6 1
      Documentation/NetworkBoot.md

+ 6 - 1
Documentation/NetworkBoot.md

@@ -175,7 +175,12 @@ For troubleshooting purposes, you can add the following command line arguments i
 Because iPXE (unlike GRUB) doesn't support VESA VBE modesetting when booting a multiboot kernel,
 Because iPXE (unlike GRUB) doesn't support VESA VBE modesetting when booting a multiboot kernel,
 you might not see any output, so add the `boot_mode=text` argument as well to boot into VGA text mode.
 you might not see any output, so add the `boot_mode=text` argument as well to boot into VGA text mode.
 
 
-In the `src` folder you should run:
+Afterwards you will need to enable the `console` iPXE command by uncommenting the following line in `src/config/general.h`:
+```c
+//#define CONSOLE_CMD		/* Console command */
+```
+
+Finally, in the `src` folder you should run:
 ```sh
 ```sh
 make EMBED=../script.ipxe bin/ipxe.usb
 make EMBED=../script.ipxe bin/ipxe.usb
 ```
 ```