1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
mainmenu_option next_comment
comment 'S/390 block device drivers'
tristate 'Loopback device support' CONFIG_BLK_DEV_LOOP
if [ "$CONFIG_NET" = "y" ]; then
tristate 'Network block device support' CONFIG_BLK_DEV_NBD
fi
bool 'Multiple devices driver support' CONFIG_BLK_DEV_MD
if [ "$CONFIG_BLK_DEV_MD" = "y" ]; then
tristate ' Linear (append) mode' CONFIG_MD_LINEAR
tristate ' RAID-0 (striping) mode' CONFIG_MD_STRIPED
tristate ' RAID-1 (mirroring) mode' CONFIG_MD_MIRRORING
tristate ' RAID-4/RAID-5 mode' CONFIG_MD_RAID5
fi
if [ "$CONFIG_MD_LINEAR" = "y" -o "$CONFIG_MD_STRIPED" = "y" ]; then
bool ' Boot support (linear, striped)' CONFIG_MD_BOOT
fi
tristate 'RAM disk support' CONFIG_BLK_DEV_RAM
if [ "$CONFIG_BLK_DEV_RAM" = "y" -o "$CONFIG_BLK_DEV_RAM" = "m" ]; then
int ' Default RAM disk size' CONFIG_BLK_DEV_RAM_SIZE 8192
fi
if [ "$CONFIG_BLK_DEV_RAM" = "y" ]; then
bool ' Initial RAM disk (initrd) support' CONFIG_BLK_DEV_INITRD
fi
tristate 'XPRAM disk support' CONFIG_BLK_DEV_XPRAM
bool 'Support for VM minidisk (VM only)' CONFIG_MDISK
if [ "$CONFIG_MDISK" = "y" ]; then
bool ' Support for synchronous read-write' CONFIG_MDISK_SYNC
fi
tristate 'Support for DASD devices' CONFIG_DASD
if [ "$CONFIG_DASD" != "n" ]; then
comment 'DASD disciplines'
bool ' Support for ECKD Disks' CONFIG_DASD_ECKD
bool ' Support for FBA Disks' CONFIG_DASD_FBA
# bool ' Support for CKD Disks (unsupported)' CONFIG_DASD_CKD
if [ "$CONFIG_MDISK" = "n" ]; then
bool ' Support for DIAG access to CMS formatted Disks' CONFIG_DASD_MDSK
fi
fi
#menu_option next_comment
# comment 'S/390-SCSI support'
# tristate 'S/390-SCSI support' CONFIG_SCSI
#endmenu
if [ "$CONFIG_NET" = "y" ]; then
mainmenu_option next_comment
comment 'S/390 Network device support'
bool 'Network device support' CONFIG_NETDEVICES
if [ "$CONFIG_NETDEVICES" = "y" ]; then
comment 'S390 Network devices'
tristate 'CTC device support' CONFIG_CTC
tristate 'IUCV device support (VM only)' CONFIG_IUCV
tristate 'Dummy net driver support' CONFIG_DUMMY
bool 'Ethernet (10 or 100Mbit)' CONFIG_NET_ETHERNET
bool 'Token Ring driver support' CONFIG_TR
fi
endmenu
fi
mainmenu_option next_comment
comment 'S/390 Terminal and Console options'
bool 'Support for 3215 line mode terminal' CONFIG_3215
if [ "$CONFIG_3215" = "y" ]; then
bool 'Support for console on 3215 line mode terminal' CONFIG_3215_CONSOLE
fi
bool 'Support for HWC line mode terminal' CONFIG_HWC
if [ "$CONFIG_HWC" = "y" ]; then
bool 'console on HWC line mode terminal' CONFIG_HWC_CONSOLE
fi
endmenu
|