summaryrefslogtreecommitdiffhomepage
path: root/Private/Tools
diff options
context:
space:
mode:
Diffstat (limited to 'Private/Tools')
-rw-r--r--Private/Tools/.gitkeep0
-rw-r--r--Private/Tools/PartTool.cxx27
2 files changed, 27 insertions, 0 deletions
diff --git a/Private/Tools/.gitkeep b/Private/Tools/.gitkeep
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/Private/Tools/.gitkeep
diff --git a/Private/Tools/PartTool.cxx b/Private/Tools/PartTool.cxx
new file mode 100644
index 00000000..8c8d52b1
--- /dev/null
+++ b/Private/Tools/PartTool.cxx
@@ -0,0 +1,27 @@
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+ File: PartTool.cpp
+ Purpose: Partition a drive with a NewFS/EPM filesystem in it.
+
+ Revision History:
+
+ 31/01/24: Added file (amlel)
+
+------------------------------------------- */
+
+/***********************************************************************************/
+/// @file PartTool.cxx
+/// @brief NewFS partition program.
+/***********************************************************************************/
+
+#include <iostream>
+
+int main() {
+ std::cout
+ << "PartTool: build a NewFS partition image from a directory!\n"
+ << "Copyright Mahrouss Logic, all rights reserved. (INTERNAL TOOL)\n";
+
+ return 0;
+}