1# 2# Ftape configuration 3# 4dep_tristate ' Zftape, the VFS interface' CONFIG_ZFTAPE $CONFIG_FTAPE 5if [ "$CONFIG_ZFTAPE" != "n" ]; then 6 int ' Default block size' CONFIG_ZFT_DFLT_BLK_SZ 10240 7 comment ' The compressor will be built as a module only!' 8 define_tristate CONFIG_ZFT_COMPRESSOR m 9fi 10if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 11 int ' Number of ftape buffers (EXPERIMENTAL)' CONFIG_FT_NR_BUFFERS 3 12fi 13if [ "$CONFIG_PROC_FS" = "y" ]; then 14 bool ' Enable procfs status report (+2kb)' CONFIG_FT_PROC_FS 15fi 16choice 'Debugging output' \ 17 "Normal CONFIG_FT_NORMAL_DEBUG \ 18 Excessive CONFIG_FT_FULL_DEBUG \ 19 Reduced CONFIG_FT_NO_TRACE \ 20 None CONFIG_FT_NO_TRACE_AT_ALL" Normal 21comment 'Hardware configuration' 22choice 'Floppy tape controllers' \ 23 "Standard CONFIG_FT_STD_FDC \ 24 MACH-2 CONFIG_FT_MACH2 \ 25 FC-10/FC-20 CONFIG_FT_PROBE_FC10 \ 26 Alt/82078 CONFIG_FT_ALT_FDC" Standard 27if [ "$CONFIG_FT_STD_FDC" != "y" ]; then 28 comment ' Consult the manuals of your tape drive for the correct settings!' 29 hex ' IO base of the floppy disk controller' CONFIG_FT_FDC_BASE 0 30 int ' IRQ channel of the floppy disk controller' CONFIG_FT_FDC_IRQ 0 31 int ' DMA channel of the floppy disk controller' CONFIG_FT_FDC_DMA 0 32fi 33if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then 34 int ' Default FIFO threshold (EXPERIMENTAL)' CONFIG_FT_FDC_THR 8 35 int ' Maximal data rate to use (EXPERIMENTAL)' CONFIG_FT_FDC_MAX_RATE 2000 36fi 37 38if [ "$CONFIG_ALPHA" = "y" ]; then 39 int ' CPU clock frequency of your DEC Alpha' CONFIG_FT_ALPHA_CLOCK 0 40else 41 define_int CONFIG_FT_ALPHA_CLOCK 0 42fi 43