aboutsummaryrefslogtreecommitdiffstats
path: root/fs/partitions/check.c
diff options
context:
space:
mode:
authorPhilippe De Muyter <phdm@macqel.be>2007-05-08 03:29:15 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-08 14:15:09 -0400
commit19d0e8ce856a7628a630710aed82931ce1c7eb97 (patch)
treef2d111b8723417ddc1b136c405923a49d4fce62a /fs/partitions/check.c
parente729aa16b168fb202d1a20f936028cb7c2a0278d (diff)
partition: add support for sysv68 partitions
Add support for the Motorola sysv68 disk partition (slices in motorola doc). Signed-off-by: Philippe De Muyter <phdm@macqel.be> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/partitions/check.c')
-rw-r--r--fs/partitions/check.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/partitions/check.c b/fs/partitions/check.c
index 6b9dae3f0e6c..9a3a058f3553 100644
--- a/fs/partitions/check.c
+++ b/fs/partitions/check.c
@@ -34,6 +34,7 @@
34#include "ultrix.h" 34#include "ultrix.h"
35#include "efi.h" 35#include "efi.h"
36#include "karma.h" 36#include "karma.h"
37#include "sysv68.h"
37 38
38#ifdef CONFIG_BLK_DEV_MD 39#ifdef CONFIG_BLK_DEV_MD
39extern void md_autodetect_dev(dev_t dev); 40extern void md_autodetect_dev(dev_t dev);
@@ -105,6 +106,9 @@ static int (*check_part[])(struct parsed_partitions *, struct block_device *) =
105#ifdef CONFIG_KARMA_PARTITION 106#ifdef CONFIG_KARMA_PARTITION
106 karma_partition, 107 karma_partition,
107#endif 108#endif
109#ifdef CONFIG_SYSV68_PARTITION
110 sysv68_partition,
111#endif
108 NULL 112 NULL
109}; 113};
110 114