summaryrefslogtreecommitdiffhomepage
path: root/dev/boot/src/HEL
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-28 05:17:08 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-03-28 05:17:08 +0100
commit9034d32c7b60dedbdbdb66f42d9b147cb2aa9a60 (patch)
treefda5dfa8ab557954c16ce052f867679ee3dc38f4 /dev/boot/src/HEL
parent4966ca284132e4e52a9bee6f582527aa7f784ef6 (diff)
bootz: rename NetBoot module to BootNet
Rename the NetBoot module to BootNet to avoid confusion with Apple's NetBoot and better reflect the module's role within BootZ. Updates include: - Renamed module directory: NetBoot/ → BootNet/ - Renamed files and headers: NetBoot.cc → BootNet.cc, etc. - Updated build output: netboot.sys → bootnet.sys - Replaced all references in build scripts, source includes, and user-visible strings - Fixed typo in SysChk.cc copyright This unifies naming across modules and reinforces BootZ's modular identity. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/boot/src/HEL')
-rw-r--r--dev/boot/src/HEL/AMD64/BootEFI.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/boot/src/HEL/AMD64/BootEFI.cc b/dev/boot/src/HEL/AMD64/BootEFI.cc
index a6af4235..fe976ebd 100644
--- a/dev/boot/src/HEL/AMD64/BootEFI.cc
+++ b/dev/boot/src/HEL/AMD64/BootEFI.cc
@@ -310,7 +310,7 @@ EFI_EXTERN_C EFI_API Int32 Main(EfiHandlePtr image_handle,
Boot::Stop();
}
- Boot::BootFileReader reader_netboot(L"netboot.sys", image_handle);
+ Boot::BootFileReader reader_netboot(L"bootnet.sys", image_handle);
reader_netboot.ReadAll(0);
Boot::BootThread* netboot_thread = nullptr;
@@ -324,13 +324,13 @@ EFI_EXTERN_C EFI_API Int32 Main(EfiHandlePtr image_handle,
if (kernel_thread->Start(handover_hdr, YES) != kEfiOk)
{
// ------------------------------------------ //
- // If we fail into booting the kernel, then run NetBoot.
+ // If we fail into booting the kernel, then run BootNet.
// ------------------------------------------ //
if (reader_netboot.Blob())
{
netboot_thread = new Boot::BootThread(reader_netboot.Blob());
- netboot_thread->SetName("BootZ: NetBoot");
+ netboot_thread->SetName("BootZ: BootNet");
netboot_thread->Start(handover_hdr, YES);
}
}