summaryrefslogtreecommitdiffhomepage
path: root/Tools
diff options
context:
space:
mode:
Diffstat (limited to 'Tools')
-rw-r--r--Tools/.gitkeep0
-rw-r--r--Tools/PartTool.cxx27
2 files changed, 27 insertions, 0 deletions
diff --git a/Tools/.gitkeep b/Tools/.gitkeep
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/Tools/.gitkeep
diff --git a/Tools/PartTool.cxx b/Tools/PartTool.cxx
new file mode 100644
index 00000000..df40ae3c
--- /dev/null
+++ b/Tools/PartTool.cxx
@@ -0,0 +1,27 @@
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+ File: MakeNewFS.cpp
+ Purpose: Partition a drive with a NewFS/EPM filesystem in it.
+
+ Revision History:
+
+ 31/01/24: Added file (amlel)
+
+------------------------------------------- */
+
+/***********************************************************************************/
+/// @file MakeNewFS.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;
+}