1 #ifndef AFFS_HARDBLOCKS_H
2 #define AFFS_HARDBLOCKS_H
4 /* Just the needed definitions for the RDB of an Amiga HD. */
6 struct RigidDiskBlock
{
8 __be32 rdb_SummedLongs
;
11 __be32 rdb_BlockBytes
;
14 __be32 rdb_PartitionList
;
15 u32 rdb_FileSysHeaderList
;
33 u32 rdb_AutoParkSeconds
;
34 u32 rdb_HighRDSKBlock
;
36 char rdb_DiskVendor
[8];
37 char rdb_DiskProduct
[16];
38 char rdb_DiskRevision
[4];
39 char rdb_ControllerVendor
[8];
40 char rdb_ControllerProduct
[16];
41 char rdb_ControllerRevision
[4];
42 u32 rdb_Reserved5
[10];
45 #define IDNAME_RIGIDDISK 0x5244534B /* "RDSK" */
47 struct PartitionBlock
{
49 __be32 pb_SummedLongs
;
58 __be32 pb_Environment
[17];
62 #define IDNAME_PARTITION 0x50415254 /* "PART" */
64 #define RDB_ALLOCATION_LIMIT 16
66 #endif /* AFFS_HARDBLOCKS_H */