summaryrefslogtreecommitdiffhomepage
path: root/dev/boot/modules/NetBoot/NetBoot.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dev/boot/modules/NetBoot/NetBoot.cc')
-rw-r--r--dev/boot/modules/NetBoot/NetBoot.cc50
1 files changed, 0 insertions, 50 deletions
diff --git a/dev/boot/modules/NetBoot/NetBoot.cc b/dev/boot/modules/NetBoot/NetBoot.cc
deleted file mode 100644
index 4a169d33..00000000
--- a/dev/boot/modules/NetBoot/NetBoot.cc
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * ========================================================
- *
- * NetBoot
- * Copyright (C) 2024-2025, Amlal EL Mahrouss, all rights reserved.
- *
- * ========================================================
- */
-
-#include <modules/NetBoot/NetBoot.h>
-#include <BootKit/BootKit.h>
-#include <BootKit/BootThread.h>
-
-EXTERN_C Int32 ModuleMain(NeOS::HEL::BootInfoHeader* handover)
-{
- NETBOOT_INTERNET_HEADER inet{};
-
- memset(&inet, 0, sizeof(NETBOOT_INTERNET_HEADER));
-
- /// TODO: Read packet from JSON file 'netboot.json'
-
- if (inet.PatchLength < 1)
- {
- Boot::BootTextWriter writer;
- writer.Write("NetBootLauncher: No executable attached to the packet, aborting.\r");
-
- return kEfiFail;
- }
-
- if (!inet.EEPROM)
- {
- Boot::BootThread thread(inet.PatchData);
-
- if (thread.IsValid())
- return thread.Start(handover, YES);
-
- return kEfiFail;
- }
- else
- {
- Boot::BootTextWriter writer;
- writer.Write("NetBootLauncher: EEPROM flash is not available as of right now.\r");
-
- /// TODO: Program new firmware to EEPROM (if crc and size matches)
-
- return kEfiFail; // TODO: Add support for EEPROM firmware update.
- }
-
- return kEfiFail;
-}