Config.in
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Partition configuration
  3. #
  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 '    EESOX partition support' CONFIG_ACORN_PARTITION_EESOX
  10.       bool '    ICS partition support' CONFIG_ACORN_PARTITION_ICS
  11.       bool '    Native filecore partition support' CONFIG_ACORN_PARTITION_ADFS
  12.       bool '    PowerTec partition support' CONFIG_ACORN_PARTITION_POWERTEC
  13.       bool '    RISCiX partition support' CONFIG_ACORN_PARTITION_RISCIX
  14.    fi
  15.    bool '  Alpha OSF partition support' CONFIG_OSF_PARTITION
  16.    bool '  Amiga partition table support' CONFIG_AMIGA_PARTITION
  17.    bool '  Atari partition table support' CONFIG_ATARI_PARTITION
  18.    if [ "$CONFIG_ARCH_S390" = "y" ]; then
  19.       bool '  IBM disk label and partition support' CONFIG_IBM_PARTITION
  20.    fi
  21.    bool '  Macintosh partition map support' CONFIG_MAC_PARTITION
  22.    bool '  PC BIOS (MSDOS partition tables) support' CONFIG_MSDOS_PARTITION
  23.    if [ "$CONFIG_MSDOS_PARTITION" = "y" ]; then
  24.       bool '    BSD disklabel (FreeBSD partition tables) support' CONFIG_BSD_DISKLABEL
  25.       bool '    Minix subpartition support' CONFIG_MINIX_SUBPARTITION
  26.       bool '    Solaris (x86) partition table support' CONFIG_SOLARIS_X86_PARTITION
  27.       bool '    Unixware slices support' CONFIG_UNIXWARE_DISKLABEL
  28.    fi
  29.    dep_bool '  Windows Logical Disk Manager (Dynamic Disk) support' CONFIG_LDM_PARTITION $CONFIG_EXPERIMENTAL
  30.    if [ "$CONFIG_LDM_PARTITION" = "y" ]; then
  31.       bool '    Windows LDM extra logging' CONFIG_LDM_DEBUG
  32.    fi
  33.    bool '  SGI partition support' CONFIG_SGI_PARTITION
  34.    bool '  Ultrix partition table support' CONFIG_ULTRIX_PARTITION
  35.    bool '  Sun partition tables support' CONFIG_SUN_PARTITION
  36. else
  37.    if [ "$ARCH" = "alpha" ]; 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_EESOX y
  56.       define_bool CONFIG_ACORN_PARTITION_ICS y
  57.       define_bool CONFIG_ACORN_PARTITION_POWERTEC y
  58.       define_bool CONFIG_ACORN_PARTITION_RISCIX y
  59.    fi
  60.    if [ "$CONFIG_ATARI" = "y" ]; then
  61.       define_bool CONFIG_ATARI_PARTITION y
  62.    fi
  63.    if [ "$CONFIG_SGI_IP22" = "y" -o "$CONFIG_SGI_IP27" = "y" ]; then
  64.       define_bool CONFIG_SGI_PARTITION y
  65.    fi
  66.    if [ "$CONFIG_DECSTATION" = "y" ]; then
  67.       define_bool CONFIG_ULTRIX_PARTITION y
  68.    fi
  69.    if [ "$ARCH" = "sparc" -o "$ARCH" = "sparc64" ]; then
  70.       define_bool CONFIG_SUN_PARTITION y
  71.    fi
  72. fi