2009-07-21 Vladimir Serbinenko <phcoder@gmail.com>
* fs/ufs.c (grub_ufs_sblock): Fix offset of mtime2 which was off by 128 bytes
This commit is contained in:
parent
1ef44b802b
commit
cffcddb2b5
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-07-21 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* fs/ufs.c (grub_ufs_sblock): Fix offset of mtime2 which was off by
|
||||
128 bytes
|
||||
|
||||
2009-07-20 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Add BFS support
|
||||
|
|
4
fs/ufs.c
4
fs/ufs.c
|
@ -99,10 +99,10 @@ struct grub_ufs_sblock
|
|||
|
||||
/* Volume name for UFS2. */
|
||||
grub_uint8_t volume_name[GRUB_UFS_VOLNAME_LEN];
|
||||
grub_uint8_t unused8[232];
|
||||
grub_uint8_t unused8[360];
|
||||
|
||||
grub_uint64_t mtime2;
|
||||
grub_uint8_t unused9[420];
|
||||
grub_uint8_t unused9[292];
|
||||
|
||||
/* Magic value to check if this is really a UFS filesystem. */
|
||||
grub_uint32_t magic;
|
||||
|
|
Loading…
Reference in a new issue