summaryrefslogtreecommitdiffhomepage
path: root/Boot/Modules/NetBoot
diff options
context:
space:
mode:
Diffstat (limited to 'Boot/Modules/NetBoot')
-rw-r--r--Boot/Modules/NetBoot/Module.cxx7
-rw-r--r--Boot/Modules/NetBoot/manifest.json4
2 files changed, 6 insertions, 5 deletions
diff --git a/Boot/Modules/NetBoot/Module.cxx b/Boot/Modules/NetBoot/Module.cxx
index a39755bc..9bc65eda 100644
--- a/Boot/Modules/NetBoot/Module.cxx
+++ b/Boot/Modules/NetBoot/Module.cxx
@@ -10,9 +10,14 @@
#include <BootKit/BootKit.hxx>
#include <NetBoot/NetBoot.hxx>
+EXTERN EfiSystemTable* ST;
+
EXTERN_C Int32 ModuleMain(Void)
{
- /// - Find a network drive called "\\Remote\\newoskrnl" with fork 'From-NetBoot'
+ ST->ConOut->ClearScreen(ST->ConOut);
+
+ /// @todo
+ /// - Find a network drive called "\.\newoskrnl.dll" with fork 'For-NewOSLdr' in the network path. (NewFS formatted disk as well!)
/// - Download our image
/// - Boot from it.
diff --git a/Boot/Modules/NetBoot/manifest.json b/Boot/Modules/NetBoot/manifest.json
deleted file mode 100644
index bb3a509e..00000000
--- a/Boot/Modules/NetBoot/manifest.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "pluginName": "NetBoot",
- "description": "Boot NewOS from a network volume."
-}