diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-12-04 16:45:46 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-04 17:36:37 +0100 |
commit | a79f43a54b7df7b12bc1c0fbf4ba76520ba40354 (patch) | |
tree | 03a6e0effbcf72eb68f3412b4c137d2ad5dd7aef /fs/partitions | |
parent | Merge branch 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6 (diff) | |
download | linux-a79f43a54b7df7b12bc1c0fbf4ba76520ba40354.tar.xz linux-a79f43a54b7df7b12bc1c0fbf4ba76520ba40354.zip |
[PATCH] Enable RAID autorun on Mac partition tables.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/partitions')
-rw-r--r-- | fs/partitions/mac.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/partitions/mac.c b/fs/partitions/mac.c index c0871002d00d..d4a0fad3563b 100644 --- a/fs/partitions/mac.c +++ b/fs/partitions/mac.c @@ -74,6 +74,8 @@ int mac_partition(struct parsed_partitions *state, struct block_device *bdev) be32_to_cpu(part->start_block) * (secsize/512), be32_to_cpu(part->block_count) * (secsize/512)); + if (!strnicmp(part->type, "Linux_RAID", 10)) + state->parts[slot].flags = 1; #ifdef CONFIG_PPC_PMAC /* * If this is the first bootable partition, tell the |