1# 2# Partition configuration 3# 4bool 'Advanced partition selection' CONFIG_PARTITION_ADVANCED 5if [ "$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 ' Minix subpartition support' CONFIG_MINIX_SUBPARTITION 25 bool ' Solaris (x86) partition table support' CONFIG_SOLARIS_X86_PARTITION 26 bool ' Unixware slices support' CONFIG_UNIXWARE_DISKLABEL 27 fi 28 dep_bool ' Windows Logical Disk Manager (Dynamic Disk) support (EXPERIMENTAL)' CONFIG_LDM_PARTITION $CONFIG_EXPERIMENTAL 29 if [ "$CONFIG_LDM_PARTITION" = "y" ]; then 30 bool ' Windows LDM extra logging' CONFIG_LDM_DEBUG 31 fi 32 bool ' SGI partition support' CONFIG_SGI_PARTITION 33 bool ' Ultrix partition table support' CONFIG_ULTRIX_PARTITION 34 bool ' Sun partition tables support' CONFIG_SUN_PARTITION 35 bool ' EFI GUID Partition support' CONFIG_EFI_PARTITION 36else 37 if [ "$CONFIG_ALPHA" = "y" ]; then 38 define_bool CONFIG_OSF_PARTITION y 39 fi 40 if [ "$CONFIG_AMIGA" != "y" -a "$CONFIG_ATARI" != "y" -a \ 41 "$CONFIG_MAC" != "y" -a "$CONFIG_SGI_IP22" != "y" -a \ 42 "$CONFIG_SGI_IP27" != "y" ]; then 43 define_bool CONFIG_MSDOS_PARTITION y 44 fi 45 if [ "$CONFIG_AMIGA" = "y" -o "$CONFIG_AFFS_FS" = "y" ]; then 46 define_bool CONFIG_AMIGA_PARTITION y 47 fi 48 if [ "$CONFIG_MAC" = "y" ]; then 49 define_bool CONFIG_MAC_PARTITION y 50 fi 51 if [ "$CONFIG_ARCH_ACORN" = "y" ]; then 52 define_bool CONFIG_ACORN_PARTITION y 53 define_bool CONFIG_ACORN_PARTITION_ADFS y 54# define_bool CONFIG_ACORN_PARTITION_CUMANA y 55 define_bool CONFIG_ACORN_PARTITION_ICS y 56 define_bool CONFIG_ACORN_PARTITION_POWERTEC y 57 define_bool CONFIG_ACORN_PARTITION_RISCIX y 58 fi 59 if [ "$CONFIG_ATARI" = "y" ]; then 60 define_bool CONFIG_ATARI_PARTITION y 61 fi 62 if [ "$CONFIG_SGI_IP22" = "y" -o "$CONFIG_SGI_IP27" = "y" ]; then 63 define_bool CONFIG_SGI_PARTITION y 64 fi 65 if [ "$CONFIG_DECSTATION" = "y" ]; then 66 define_bool CONFIG_ULTRIX_PARTITION y 67 fi 68 if [ "$CONFIG_SPARC32" = "y" -o "$CONFIG_SPARC64" = "y" ]; then 69 define_bool CONFIG_SUN_PARTITION y 70 fi 71fi 72