root/arch/sparc/config.in

/* [previous][next][first][last][top][bottom][index][help] */
# $Id: config.in,v 1.8 1996/03/01 07:15:47 davem Exp $
# For a description of the syntax of this configuration file,
# see the Configure script.
#
mainmenu_name "Kernel configuration of Linux for SparcStations"

mainmenu_option next_comment
comment 'General setup'

# Global things across all Sparc machines.
define_bool CONFIG_SBUS y
define_bool CONFIG_SUN_MOUSE y
define_bool CONFIG_SERIAL y
define_bool CONFIG_SUN_SERIAL y
define_bool CONFIG_SUN_KEYBOARD y
define_bool CONFIG_SUN_CONSOLE y
define_bool CONFIG_NET_ALIAS n
define_bool CONFIG_BINFMT_AOUT y

bool 'Networking support' CONFIG_NET
bool 'System V IPC' CONFIG_SYSVIPC
tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
endmenu

source drivers/block/Config.in

if [ "$CONFIG_NET" = "y" ]; then
        source net/Config.in
fi

mainmenu_option next_comment
comment 'SCSI support'

tristate 'SCSI support' CONFIG_SCSI

if [ "$CONFIG_SCSI" != "n" ]; then
        source drivers/scsi/Config.in
fi
endmenu

if [ "$CONFIG_NET" = "y" ]; then
        mainmenu_option next_comment
        comment 'Network device support'

        bool 'Network device support' CONFIG_NETDEVICES
        if [ "$CONFIG_NETDEVICES" = "y" ]; then
                source drivers/net/Config.in
        fi
        endmenu
fi

source fs/Config.in

mainmenu_option next_comment
comment 'Kernel hacking'

bool 'Kernel profiling support' CONFIG_PROFILE
if [ "$CONFIG_PROFILE" = "y" ]; then
        int ' Profile shift count' CONFIG_PROFILE_SHIFT 2
fi

/* [previous][next][first][last][top][bottom][index][help] */