From af212d19d0b2f0fad608c78ca922d3db9cb326bd Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 9 Feb 2024 20:31:40 +0100 Subject: Kernel: See below. - Rework some bootloader modules, will work on some. - Rework GKit to look like the DOM on a browser. Signed-off-by: Amlal El Mahrouss --- Private/NewBoot/NetBoot/EfiModule.cxx | 15 +++++++++++++++ Private/NewBoot/NetBoot/manifest.json | 6 +++--- Private/NewBoot/NetBoot/module.cxx | 13 ------------- 3 files changed, 18 insertions(+), 16 deletions(-) create mode 100644 Private/NewBoot/NetBoot/EfiModule.cxx delete mode 100644 Private/NewBoot/NetBoot/module.cxx (limited to 'Private/NewBoot/NetBoot') diff --git a/Private/NewBoot/NetBoot/EfiModule.cxx b/Private/NewBoot/NetBoot/EfiModule.cxx new file mode 100644 index 00000000..a0ce13a5 --- /dev/null +++ b/Private/NewBoot/NetBoot/EfiModule.cxx @@ -0,0 +1,15 @@ +/* + * ======================================================== + * + * NetBoot + * Copyright Mahrouss Logic, all rights reserved. + * + * ======================================================== + */ + +#include +#include + +extern "C" Int32 EfiMain(EfiHandlePtr handle, EfiSystemTable* SystemTable) { + return kEfiOk; +} diff --git a/Private/NewBoot/NetBoot/manifest.json b/Private/NewBoot/NetBoot/manifest.json index 1a177877..8486cfc1 100644 --- a/Private/NewBoot/NetBoot/manifest.json +++ b/Private/NewBoot/NetBoot/manifest.json @@ -1,4 +1,4 @@ { - "pluginName": "internetBoot", - "description": "internetBoot your device from the network." -} \ No newline at end of file + "pluginName": "interBoot", + "description": "Boot your device from your network infra." +} diff --git a/Private/NewBoot/NetBoot/module.cxx b/Private/NewBoot/NetBoot/module.cxx deleted file mode 100644 index b7e4727f..00000000 --- a/Private/NewBoot/NetBoot/module.cxx +++ /dev/null @@ -1,13 +0,0 @@ -/* - * ======================================================== - * - * NetBoot - * Copyright Mahrouss Logic, all rights reserved. - * - * ======================================================== - */ - -extern "C" void __Module(const char* ip, long iplen) -{ - -} -- cgit v1.2.3