mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Changes in v1.7.2 (8/7/2002) (brianp)
- Fragment size must be equal to the block size svn path=/trunk/; revision=3321
This commit is contained in:
parent
3cb41fbb8b
commit
793d60fcff
3 changed files with 13 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Changes in v1.7.2 (8/7/2002) (brianp)
|
||||||
|
|
||||||
|
- Fragment size must be equal to the block size
|
||||||
|
|
||||||
Changes in v1.7.1 (8/7/2002) (brianp)
|
Changes in v1.7.1 (8/7/2002) (brianp)
|
||||||
|
|
||||||
- Symbolic links on EXT2/3 are now supported
|
- Symbolic links on EXT2/3 are now supported
|
||||||
|
|
|
@ -713,6 +713,13 @@ BOOL Ext2ReadSuperBlock(VOID)
|
||||||
DbgPrint((DPRINT_FILESYSTEM, "Ext2FragmentSizeInBytes: %d\n", Ext2FragmentSizeInBytes));
|
DbgPrint((DPRINT_FILESYSTEM, "Ext2FragmentSizeInBytes: %d\n", Ext2FragmentSizeInBytes));
|
||||||
DbgPrint((DPRINT_FILESYSTEM, "Ext2FragmentSizeInSectors: %d\n", Ext2FragmentSizeInSectors));
|
DbgPrint((DPRINT_FILESYSTEM, "Ext2FragmentSizeInSectors: %d\n", Ext2FragmentSizeInSectors));
|
||||||
|
|
||||||
|
// Verify that the fragment size and the block size are equal
|
||||||
|
if (Ext2BlockSizeInBytes != Ext2FragmentSizeInBytes)
|
||||||
|
{
|
||||||
|
FileSystemError("The fragment size must be equal to the block size.");
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
// Calculate the number of inodes in one block
|
// Calculate the number of inodes in one block
|
||||||
Ext2InodesPerBlock = Ext2BlockSizeInBytes / EXT3_INODE_SIZE(Ext2SuperBlock);
|
Ext2InodesPerBlock = Ext2BlockSizeInBytes / EXT3_INODE_SIZE(Ext2SuperBlock);
|
||||||
DbgPrint((DPRINT_FILESYSTEM, "Ext2InodesPerBlock: %d\n", Ext2InodesPerBlock));
|
DbgPrint((DPRINT_FILESYSTEM, "Ext2InodesPerBlock: %d\n", Ext2InodesPerBlock));
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
/* just some stuff */
|
/* just some stuff */
|
||||||
#define VERSION "FreeLoader v1.7.1"
|
#define VERSION "FreeLoader v1.7.2"
|
||||||
#define COPYRIGHT "Copyright (C) 1998-2002 Brian Palmer <brianp@sginet.com>"
|
#define COPYRIGHT "Copyright (C) 1998-2002 Brian Palmer <brianp@sginet.com>"
|
||||||
#define AUTHOR_EMAIL "<brianp@sginet.com>"
|
#define AUTHOR_EMAIL "<brianp@sginet.com>"
|
||||||
#define BY_AUTHOR "by Brian Palmer"
|
#define BY_AUTHOR "by Brian Palmer"
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
//
|
//
|
||||||
#define FREELOADER_MAJOR_VERSION 1
|
#define FREELOADER_MAJOR_VERSION 1
|
||||||
#define FREELOADER_MINOR_VERSION 7
|
#define FREELOADER_MINOR_VERSION 7
|
||||||
#define FREELOADER_PATCH_VERSION 1
|
#define FREELOADER_PATCH_VERSION 2
|
||||||
|
|
||||||
|
|
||||||
PUCHAR GetFreeLoaderVersionString(VOID);
|
PUCHAR GetFreeLoaderVersionString(VOID);
|
||||||
|
|
Loading…
Reference in a new issue