diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /fs/partitions/atari.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'fs/partitions/atari.h')
-rw-r--r-- | fs/partitions/atari.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/fs/partitions/atari.h b/fs/partitions/atari.h new file mode 100644 index 000000000000..63186b00e135 --- /dev/null +++ b/fs/partitions/atari.h | |||
@@ -0,0 +1,34 @@ | |||
1 | /* | ||
2 | * fs/partitions/atari.h | ||
3 | * Moved by Russell King from: | ||
4 | * | ||
5 | * linux/include/linux/atari_rootsec.h | ||
6 | * definitions for Atari Rootsector layout | ||
7 | * by Andreas Schwab (schwab@ls5.informatik.uni-dortmund.de) | ||
8 | * | ||
9 | * modified for ICD/Supra partitioning scheme restricted to at most 12 | ||
10 | * partitions | ||
11 | * by Guenther Kelleter (guenther@pool.informatik.rwth-aachen.de) | ||
12 | */ | ||
13 | |||
14 | struct partition_info | ||
15 | { | ||
16 | u8 flg; /* bit 0: active; bit 7: bootable */ | ||
17 | char id[3]; /* "GEM", "BGM", "XGM", or other */ | ||
18 | __be32 st; /* start of partition */ | ||
19 | __be32 siz; /* length of partition */ | ||
20 | }; | ||
21 | |||
22 | struct rootsector | ||
23 | { | ||
24 | char unused[0x156]; /* room for boot code */ | ||
25 | struct partition_info icdpart[8]; /* info for ICD-partitions 5..12 */ | ||
26 | char unused2[0xc]; | ||
27 | u32 hd_siz; /* size of disk in blocks */ | ||
28 | struct partition_info part[4]; | ||
29 | u32 bsl_st; /* start of bad sector list */ | ||
30 | u32 bsl_cnt; /* length of bad sector list */ | ||
31 | u16 checksum; /* checksum for bootable disks */ | ||
32 | } __attribute__((__packed__)); | ||
33 | |||
34 | int atari_partition(struct parsed_partitions *state, struct block_device *bdev); | ||