summaryrefslogtreecommitdiffhomepage
path: root/Boot/Modules/NetBoot/Module.cxx
diff options
context:
space:
mode:
authorAmlal <amlal@zka.com>2024-07-14 00:37:06 +0200
committerAmlal <amlal@zka.com>2024-07-14 00:37:06 +0200
commitb038c3eff8c80be2e6e10bea16634523fff4a6b5 (patch)
treed4c9b5c1931d6e5029243446b66e8edb608072b8 /Boot/Modules/NetBoot/Module.cxx
parent062ba0a060929c18a2734835cd426e3d808093b7 (diff)
[IMP]
- IsUndefined returns const bool& now. - Replace kUndefined with kNull now. - Remove ML_ from macros in newstd.hxx. - Rename NSyscall to NSyscallInterface, which is a ref counted class now. - Rename MBCIType to PowerID - Update ToDos. - Update NewFS root catalog name. - Fix JSON 'null' initialization. - Add Json to variant object. - Replace kPointer with kBlob in variant kinds. - Add Leak() method to variant. Signed-off-by: Amlal <amlal@zka.com>
Diffstat (limited to 'Boot/Modules/NetBoot/Module.cxx')
-rw-r--r--Boot/Modules/NetBoot/Module.cxx20
1 files changed, 20 insertions, 0 deletions
diff --git a/Boot/Modules/NetBoot/Module.cxx b/Boot/Modules/NetBoot/Module.cxx
new file mode 100644
index 00000000..3bc71d0e
--- /dev/null
+++ b/Boot/Modules/NetBoot/Module.cxx
@@ -0,0 +1,20 @@
+/*
+ * ========================================================
+ *
+ * NetBoot
+ * Copyright ZKA Technologies, all rights reserved.
+ *
+ * ========================================================
+ */
+
+#include <BootKit/BootKit.hxx>
+#include <NetBoot/NetBoot.hxx>
+
+EXTERN_C Int32 ModuleMain(Void)
+{
+ /// - Find a network drive called "/Remote/newoskrnl"
+ /// - Download our image
+ /// - Boot from it.
+
+ return kEfiOk;
+}