Some example device lines from various kernel configuration files:
#
# FreeBSD samples
#
maxusers 128
options INCLUDE_CONFIG_FILE
options INET #InterNETworking
device isa
device pci
device ata0 at isa? port IO_WD1 irq 14
device ata
device atadisk # ATA disk drives
device atapicd # ATAPI CDROM drives
device atapifd # ATAPI floppy drives
device atapist # ATAPI tape drives
options ATA_STATIC_ID #Static device numbering
#
# Linux samples
#
# Loadable module support
CONFIG_MODULES=y
CONFIG_MODVERSIONS=y
# CONFIG_KMOD is not set
# General setup
CONFIG_NET=y
CONFIG_PCI=y
# Block devices
CONFIG_BLK_DEV_FD=m
CONFIG_BLK_DEV_IDE=y
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_BLK_DEV_IDECD=m
CONFIG_BLK_DEV_IDETAPE=m
CONFIG_BLK_DEV_IDEFLOPPY=m
# CONFIG_BLK_DEV_IDESCSI is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_BLK_DEV_IDEDMA=y
CONFIG_IDEDMA_AUTO=y
The kernel build process involves setting up an appropriate
configuration file for your platform and then using a tool (generally
config(8); check the manpage) to create a kernel
build setup from the configuration file. Then you simply run
make within the kernel build setup and you have a
new kernel. Once the new kernel is installed, you reboot the machine,
and poof, you're running on a sleek new customized
kernel.
To understand how to configure the kernel on your platform, consult
the documentation for that platform. Note that many platforms have
tools or even GUIs for helping you configure your kernel. For the
free Unixes, search the Web. There are extensive HOWTOs available
describing how to configure your kernel in excruciating detail.