diff options
Diffstat (limited to 'dev/zba/Modules/NetBoot')
| -rw-r--r-- | dev/zba/Modules/NetBoot/Module.cc (renamed from dev/zba/Modules/NetBoot/Module.cxx) | 4 | ||||
| -rw-r--r-- | dev/zba/Modules/NetBoot/NetBoot.h (renamed from dev/zba/Modules/NetBoot/NetBoot.hxx) | 2 | ||||
| -rw-r--r-- | dev/zba/Modules/NetBoot/build.json | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/dev/zba/Modules/NetBoot/Module.cxx b/dev/zba/Modules/NetBoot/Module.cc index 3b75b3b2..15e63f83 100644 --- a/dev/zba/Modules/NetBoot/Module.cxx +++ b/dev/zba/Modules/NetBoot/Module.cc @@ -7,8 +7,8 @@ * ======================================================== */ -#include <NetBoot.hxx> -#include <BootKit/BootKit.hxx> +#include <NetBoot.h> +#include <BootKit/BootKit.h> EXTERN_C Int32 main(Kernel::HEL::HANDOVER_INFO_HEADER* Handover) { diff --git a/dev/zba/Modules/NetBoot/NetBoot.hxx b/dev/zba/Modules/NetBoot/NetBoot.h index bb0127a2..8645a822 100644 --- a/dev/zba/Modules/NetBoot/NetBoot.hxx +++ b/dev/zba/Modules/NetBoot/NetBoot.h @@ -9,7 +9,7 @@ #pragma once -#include <NewKit/Defines.hxx> +#include <NewKit/Defines.h> /// @brief the internet header is used to download updates OTA. typedef struct NetBootInternetHeader diff --git a/dev/zba/Modules/NetBoot/build.json b/dev/zba/Modules/NetBoot/build.json index f03fc06c..dfa39ac5 100644 --- a/dev/zba/Modules/NetBoot/build.json +++ b/dev/zba/Modules/NetBoot/build.json @@ -2,7 +2,7 @@ "compiler_path": "x86_64-w64-mingw32-g++", "compiler_std": "c++20", "headers_path": ["../", "../../", "../../../zka", "../../../", "./"], - "sources_path": ["*.cxx", "*.S"], + "sources_path": [".cc", "*.S"], "output_name": "netboot.sys", "compiler_flags": [ "-ffreestanding", |
