From 687efe6dd6be37c0fef827180b8eccfc65ea12f5 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Fri, 14 May 2021 13:58:03 +0300 Subject: [PATCH] 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 --- Documentation/NetworkBoot.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Documentation/NetworkBoot.md b/Documentation/NetworkBoot.md index 1b33ffe3768..c3f6378c698 100644 --- a/Documentation/NetworkBoot.md +++ b/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, 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 make EMBED=../script.ipxe bin/ipxe.usb ```