diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-05-14 13:58:03 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-14 13:25:19 +0200 |
commit | 687efe6dd6be37c0fef827180b8eccfc65ea12f5 (patch) | |
tree | 69ddc26ead4a256180292d96b17bb41b6e580350 /Documentation | |
parent | 89febfcd307a2a3abe2d74508857be94be849a90 (diff) | |
download | serenity-687efe6dd6be37c0fef827180b8eccfc65ea12f5.zip |
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
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/NetworkBoot.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/NetworkBoot.md b/Documentation/NetworkBoot.md index 1b33ffe376..c3f6378c69 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 ``` |