From Geert: Quickfix to get DDB compile.
[linux-2.6/linux-mips.git] / fs / partitions / Config.in
blob6fadbd84616b2f74e105a402f7ce425a69c24bcf
2 # Partition configuration
4 bool 'Advanced partition selection' CONFIG_PARTITION_ADVANCED
5 if [ "$CONFIG_PARTITION_ADVANCED" = "y" ]; then
6    bool '  Acorn partition support' CONFIG_ACORN_PARTITION
7    if [ "$CONFIG_ACORN_PARTITION" != "n" ]; then
8 #      bool '    Cumana partition support' CONFIG_ACORN_PARTITION_CUMANA
9       bool '    ICS partition support' CONFIG_ACORN_PARTITION_ICS
10       bool '    Native filecore partition support' CONFIG_ACORN_PARTITION_ADFS
11       bool '    PowerTec partition support' CONFIG_ACORN_PARTITION_POWERTEC
12       bool '    RISCiX partition support' CONFIG_ACORN_PARTITION_RISCIX
13    fi
14    bool '  Alpha OSF partition support' CONFIG_OSF_PARTITION
15    bool '  Amiga partition table support' CONFIG_AMIGA_PARTITION
16    bool '  Atari partition table support' CONFIG_ATARI_PARTITION
17    if [ "$CONFIG_ARCH_S390" = "y" ]; then
18       bool '  IBM disk label and partition support' CONFIG_IBM_PARTITION
19    fi
20    bool '  Macintosh partition map support' CONFIG_MAC_PARTITION
21    bool '  PC BIOS (MSDOS partition tables) support' CONFIG_MSDOS_PARTITION
22    if [ "$CONFIG_MSDOS_PARTITION" = "y" ]; then
23       bool '    BSD disklabel (FreeBSD partition tables) support' CONFIG_BSD_DISKLABEL
24       bool '    Solaris (x86) partition table support' CONFIG_SOLARIS_X86_PARTITION
25       bool '    Unixware slices support' CONFIG_UNIXWARE_DISKLABEL
26    fi
27    bool '  SGI partition support' CONFIG_SGI_PARTITION
28    bool '  Ultrix partition table support' CONFIG_ULTRIX_PARTITION
29    bool '  Sun partition tables support' CONFIG_SUN_PARTITION
30 else
31    if [ "$ARCH" = "alpha" ]; then
32       define_bool CONFIG_OSF_PARTITION y
33    fi
34    if [ "$CONFIG_AMIGA" != "y" -a "$CONFIG_ATARI" != "y" -a \
35         "$CONFIG_MAC" != "y" -a "$CONFIG_SGI_IP22" != "y" -a \
36         "$CONFIG_SGI_IP27" != "y" ]; then
37       define_bool CONFIG_MSDOS_PARTITION y
38    fi
39    if [ "$CONFIG_AMIGA" = "y" ]; then
40       define_bool CONFIG_AMIGA_PARTITION y
41    fi
42    if [ "$CONFIG_MAC" = "y" ]; then
43       define_bool CONFIG_MAC_PARTITION y
44    fi
45    if [ "$CONFIG_ARCH_ACORN" = "y" ]; then
46       define_bool CONFIG_ACORN_PARTITION y
47       define_bool CONFIG_ACORN_PARTITION_ADFS y
48 #      define_bool CONFIG_ACORN_PARTITION_CUMANA y
49       define_bool CONFIG_ACORN_PARTITION_ICS y
50       define_bool CONFIG_ACORN_PARTITION_POWERTEC y
51       define_bool CONFIG_ACORN_PARTITION_RISCIX y
52    fi
53    if [ "$CONFIG_ATARI" = "y" ]; then
54       define_bool CONFIG_ATARI_PARTITION y
55    fi
56    if [ "$CONFIG_SGI_IP22" = "y" -o "$CONFIG_SGI_IP27" = "y" ]; then
57       define_bool CONFIG_SGI_PARTITION y
58    fi
59    if [ "$CONFIG_DECSTATION" = "y" ]; then
60       define_bool CONFIG_ULTRIX_PARTITION y
61    fi
62    if [ "$ARCH" = "sparc" -o "$ARCH" = "sparc64" ]; then
63       define_bool CONFIG_SUN_PARTITION y
64    fi