summaryrefslogtreecommitdiffhomepage
path: root/Tools
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-02 10:09:27 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-02 10:09:27 +0100
commitc8b5a4cc2981c4fd8987b7f048380a13d80981fd (patch)
treee2beba4453cfcea814fb6ddaa7b8293d2e2db356 /Tools
parent28939d40c856aed0b56fe5a4d1d68a906099d745 (diff)
See below.
- Pack NewFS data structures. - Add README.TXT in /Drivers/ - Move /Internals/Tools in just /Tools. Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
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;
+}