diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-12-04 15:45:46 +0000 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-04 08:36:37 -0800 |
commit | a79f43a54b7df7b12bc1c0fbf4ba76520ba40354 (patch) | |
tree | 03a6e0effbcf72eb68f3412b4c137d2ad5dd7aef /fs/partitions | |
parent | 07704eb29a765d2e862000d952fd96271c1464e2 (diff) | |
download | op-kernel-dev-a79f43a54b7df7b12bc1c0fbf4ba76520ba40354.zip op-kernel-dev-a79f43a54b7df7b12bc1c0fbf4ba76520ba40354.tar.gz |
[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 c087100..d4a0fad 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 |