diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-26 05:37:44 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-26 05:37:44 +0100 |
| commit | 0d6df50e386dae373c654522d241330a8a42412b (patch) | |
| tree | 004fba8b1bd513154cb925450c76ae1e011b86f8 /Private/FSKit | |
| parent | 1cd930c0c72f215101300dfcc5860800a474362d (diff) | |
NewBoot: Fully Implemented an EPM drive, needs now to write the layout
found inside Private/Rooot inside the epm.img, so that the user can
install it.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/FSKit')
| -rw-r--r-- | Private/FSKit/NewFS.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Private/FSKit/NewFS.hxx b/Private/FSKit/NewFS.hxx index b82bde9e..8e306180 100644 --- a/Private/FSKit/NewFS.hxx +++ b/Private/FSKit/NewFS.hxx @@ -54,6 +54,10 @@ #define kNewFSCatalogKindPage 8 +#define kNewFSPartitionTypeStandard 7 +#define kNewFSPartitionTypePage 8 +#define kNewFSPartitionTypeBoot 9 + #define kNewFSCatalogKindDevice 9 #define kNewFSCatalogKindLock 10 @@ -182,7 +186,7 @@ class NewFSParser { HCORE_COPY_DEFAULT(NewFSParser); public: - virtual _Output NewFork* ForkFrom(NewCatalog& catalog, const Int64& id) = 0; + virtual _Output NewFork* GetForkFrom(NewCatalog& catalog, const Char* name) = 0; virtual _Output NewCatalog* FindCatalog(const char* catalogName) = 0; |
