summaryrefslogtreecommitdiffhomepage
path: root/Boot/NetBoot
diff options
context:
space:
mode:
Diffstat (limited to 'Boot/NetBoot')
-rw-r--r--Boot/NetBoot/Module.cxx5
-rw-r--r--Boot/NetBoot/NetBoot.hxx12
2 files changed, 15 insertions, 2 deletions
diff --git a/Boot/NetBoot/Module.cxx b/Boot/NetBoot/Module.cxx
index c296903b..57841904 100644
--- a/Boot/NetBoot/Module.cxx
+++ b/Boot/NetBoot/Module.cxx
@@ -8,10 +8,11 @@
*/
#include <BootKit/BootKit.hxx>
+#include <NetBoot/NetBoot.hxx>
-EXTERN_C Int32 EfiMain(Void)
+EXTERN_C Int32 ModuleMain(Void)
{
- /// - Find a network drive called "/OnlineBoot"
+ /// - Find a network drive called "/Remote/NewOSKrnl"
/// - Download our image
/// - Boot from it.
diff --git a/Boot/NetBoot/NetBoot.hxx b/Boot/NetBoot/NetBoot.hxx
new file mode 100644
index 00000000..d45f1de1
--- /dev/null
+++ b/Boot/NetBoot/NetBoot.hxx
@@ -0,0 +1,12 @@
+/*
+ * ========================================================
+ *
+ * NetBoot
+ * Copyright SoftwareLabs, all rights reserved.
+ *
+ * ========================================================
+ */
+
+#pragma once
+
+#include <NewKit/Defines.hpp>