mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +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:
@@ -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)
|
||||
|
||||
- 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, "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
|
||||
Ext2InodesPerBlock = Ext2BlockSizeInBytes / EXT3_INODE_SIZE(Ext2SuperBlock);
|
||||
DbgPrint((DPRINT_FILESYSTEM, "Ext2InodesPerBlock: %d\n", Ext2InodesPerBlock));
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
|
||||
/* just some stuff */
|
||||
#define VERSION "FreeLoader v1.7.1"
|
||||
#define VERSION "FreeLoader v1.7.2"
|
||||
#define COPYRIGHT "Copyright (C) 1998-2002 Brian Palmer <[email protected]>"
|
||||
#define AUTHOR_EMAIL "<[email protected]>"
|
||||
#define BY_AUTHOR "by Brian Palmer"
|
||||
@@ -36,7 +36,7 @@
|
||||
//
|
||||
#define FREELOADER_MAJOR_VERSION 1
|
||||
#define FREELOADER_MINOR_VERSION 7
|
||||
#define FREELOADER_PATCH_VERSION 1
|
||||
#define FREELOADER_PATCH_VERSION 2
|
||||
|
||||
|
||||
PUCHAR GetFreeLoaderVersionString(VOID);
|
||||
|
||||
Reference in New Issue
Block a user