summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-08 13:44:30 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-08 13:44:30 +0100
commit81bbeda6e6c99d7dac8d05200280f54bebf9a5c1 (patch)
tree92471216bc939b55425648692705ab85706c8486 /tools
parentaee6c9ea7689fda46bbd79b9c4c7fd221260340f (diff)
[CHORE] mkfs: Command line fixes and tweaks.mkfs-tweaks
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/libmkfs/openhefs.hpp2
-rw-r--r--tools/mkfs.hefs.cpp1
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/libmkfs/openhefs.hpp b/tools/libmkfs/openhefs.hpp
index 998bf4fe..255b47d6 100644
--- a/tools/libmkfs/openhefs.hpp
+++ b/tools/libmkfs/openhefs.hpp
@@ -6,7 +6,7 @@
#define LIBMKFS_OPENHEFS_H
#ifndef __GNUC__
-#error !! libmkfs isn't working in MSVC yet !!
+#error !! libmkfs isn't working on MSVC yet !!
#endif
#include <cstdint>
diff --git a/tools/mkfs.hefs.cpp b/tools/mkfs.hefs.cpp
index 28475f5f..8ffb1032 100644
--- a/tools/mkfs.hefs.cpp
+++ b/tools/mkfs.hefs.cpp
@@ -13,6 +13,7 @@
static std::uint16_t kVersion = kOpenHeFSVersion;
static std::uint16_t kNumericalBase = 10;
+/// AMLALE: Should we enforce 4GB by default? I believe it should be 1GB. Depending on use cases.
static std::size_t kDiskSize = mkfs::detail::gib_cast(4UL);
static std::u8string kDiskLabel;
static std::size_t kDiskSectorSz = 512;