From cd87bd3a926f1eb76f6b8aa6cb14f706b4fccc5a Mon Sep 17 00:00:00 2001 From: Amlal Date: Tue, 29 Apr 2025 10:17:27 +0200 Subject: kernel, fs: Fixing and optimizing filesystem allocator. Signed-off-by: Amlal --- tooling/fsck.hefs.cc | 15 +++++++++++++++ tooling/fsck.hefs.json | 16 ++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 tooling/fsck.hefs.cc create mode 100644 tooling/fsck.hefs.json (limited to 'tooling') diff --git a/tooling/fsck.hefs.cc b/tooling/fsck.hefs.cc new file mode 100644 index 00000000..d566e2a6 --- /dev/null +++ b/tooling/fsck.hefs.cc @@ -0,0 +1,15 @@ +/* ------------------------------------------- + + Copyright (C) 2025, Amlal El Mahrouss, all rights reserved. + +------------------------------------------- */ + +#include +#include + +int main(int argc, char** argv) { + (void)(argc); + (void)(argv); + + return EXIT_FAILURE; +} \ No newline at end of file diff --git a/tooling/fsck.hefs.json b/tooling/fsck.hefs.json new file mode 100644 index 00000000..d6ff4b0f --- /dev/null +++ b/tooling/fsck.hefs.json @@ -0,0 +1,16 @@ +{ + "compiler_path": "g++", + "compiler_std": "c++20", + "headers_path": [ + "../" + ], + "sources_path": [ + "fsck.hefs.cc" + ], + "output_name": "./dist/fsck.hefs", + "cpp_macros": [ + "kFSCKHEFSVersion=0x0100", + "kFSCKHEFSVersionHighest=0x0100", + "kFSCKHEFSVersionLowest=0x0100" + ] +} \ No newline at end of file -- cgit v1.2.3