summaryrefslogtreecommitdiffhomepage
path: root/dev/boot/modules/NetBoot/amd64.json
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/modules/NetBoot/amd64.json
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/modules/NetBoot/amd64.json')
-rw-r--r--dev/boot/modules/NetBoot/amd64.json24
1 files changed, 0 insertions, 24 deletions
diff --git a/dev/boot/modules/NetBoot/amd64.json b/dev/boot/modules/NetBoot/amd64.json
deleted file mode 100644
index db39cced..00000000
--- a/dev/boot/modules/NetBoot/amd64.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "compiler_path": "x86_64-w64-mingw32-g++",
- "compiler_std": "c++20",
- "headers_path": ["../", "../../", "../../../kernel", "../../../", "./"],
- "sources_path": ["*.cc", "*.S", "../../src/HEL/AMD64/*.cc", "../../src/HEL/AMD64/*.S", "../../src/*.cc"],
- "output_name": "netboot.sys",
- "compiler_flags": [
- "-nostdlib",
- "-std=c++20",
- "-fPIC",
- "-fno-rtti",
- "-fno-exceptions",
- "-Wl,--subsystem=17,--image-base,0x1000000,-e,ModuleMain"
- ],
- "cpp_macros": [
- "__NEOSKRNL__",
- "__BOOTZ__",
- "__BOOTZ_STANDALONE__",
- "__NE_AMD64__",
- "kNetBootVersionHighest=0x0100",
- "kNetBootVersionLowest=0x0100",
- "kNetBootVersion=0x0100"
- ]
-}