blob: 8021e19fa1ea33fad74caf789a5b1ef797380e4c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001menu "Generic Driver Options"
2
Kay Sievers6a8d8ab2007-08-15 15:38:28 +02003config UEVENT_HELPER_PATH
4 string "path to uevent helper"
5 depends on HOTPLUG
6 default "/sbin/hotplug"
7 help
8 Path to uevent helper program forked by the kernel for
9 every uevent.
10
Kay Sievers2b2af542009-04-30 15:23:42 +020011config DEVTMPFS
Kay Sievers4237e5f2010-01-14 22:47:57 +010012 bool "Maintain a devtmpfs filesystem to mount at /dev"
Kay Sievers2b2af542009-04-30 15:23:42 +020013 depends on HOTPLUG && SHMEM && TMPFS
14 help
Kay Sievers4237e5f2010-01-14 22:47:57 +010015 This creates a tmpfs filesystem instance early at bootup.
16 In this filesystem, the kernel driver core maintains device
17 nodes with their default names and permissions for all
18 registered devices with an assigned major/minor number.
19 Userspace can modify the filesystem content as needed, add
20 symlinks, and apply needed permissions.
21 It provides a fully functional /dev directory, where usually
22 udev runs on top, managing permissions and adding meaningful
23 symlinks.
24 In very limited environments, it may provide a sufficient
25 functional /dev without any further help. It also allows simple
26 rescue systems, and reliably handles dynamic major/minor numbers.
Kay Sievers2b2af542009-04-30 15:23:42 +020027
28config DEVTMPFS_MOUNT
Kay Sievers4237e5f2010-01-14 22:47:57 +010029 bool "Automount devtmpfs at /dev, after the kernel mounted the rootfs"
Kay Sievers2b2af542009-04-30 15:23:42 +020030 depends on DEVTMPFS
31 help
Kay Sievers4237e5f2010-01-14 22:47:57 +010032 This will instruct the kernel to automatically mount the
33 devtmpfs filesystem at /dev, directly after the kernel has
34 mounted the root filesystem. The behavior can be overridden
35 with the commandline parameter: devtmpfs.mount=0|1.
36 This option does not affect initramfs based booting, here
37 the devtmpfs filesystem always needs to be mounted manually
38 after the roots is mounted.
39 With this option enabled, it allows to bring up a system in
40 rescue mode with init=/bin/sh, even when the /dev directory
41 on the rootfs is completely empty.
Kay Sievers2b2af542009-04-30 15:23:42 +020042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043config STANDALONE
44 bool "Select only drivers that don't need compile-time external firmware" if EXPERIMENTAL
45 default y
46 help
47 Select this option if you don't have magic firmware for drivers that
48 need it.
49
50 If unsure, say Y.
51
52config PREVENT_FIRMWARE_BUILD
53 bool "Prevent firmware from being built"
54 default y
55 help
56 Say yes to avoid building firmware. Firmware is usually shipped
57 with the driver, and only when updating the firmware a rebuild
58 should be made.
59 If unsure say Y here.
60
61config FW_LOADER
Adrian Bunkd9b19192008-06-10 19:04:08 +030062 tristate "Userspace firmware loading support" if EMBEDDED
Andrew Morton135c2942006-07-10 04:43:48 -070063 depends on HOTPLUG
Adrian Bunkd9b19192008-06-10 19:04:08 +030064 default y
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 ---help---
66 This option is provided for the case where no in-kernel-tree modules
Kay Sievers312c0042005-11-16 09:00:00 +010067 require userspace firmware loading support, but a module built outside
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 the kernel tree does.
69
David Woodhoused172e7f2008-06-25 13:56:07 +010070config FIRMWARE_IN_KERNEL
71 bool "Include in-kernel firmware blobs in kernel binary"
72 depends on FW_LOADER
73 default y
74 help
75 The kernel source tree includes a number of firmware 'blobs'
76 which are used by various drivers. The recommended way to
77 use these is to run "make firmware_install" and to copy the
78 resulting binary files created in usr/lib/firmware directory
79 of the kernel tree to the /lib/firmware on your system so
80 that they can be loaded by userspace helpers on request.
81
82 Enabling this option will build each required firmware blob
83 into the kernel directly, where request_firmware() will find
84 them without having to call out to userspace. This may be
85 useful if your root file system requires a device which uses
86 such firmware, and do not wish to use an initrd.
87
88 This single option controls the inclusion of firmware for
Nick Andrew11f1fbc2009-01-03 18:50:34 +110089 every driver which uses request_firmware() and ships its
David Woodhoused172e7f2008-06-25 13:56:07 +010090 firmware in the kernel source tree, to avoid a proliferation
91 of 'Include firmware for xxx device' options.
92
93 Say 'N' and let firmware be loaded from userspace.
94
David Woodhouse4d2acfb2008-05-23 13:58:12 +010095config EXTRA_FIRMWARE
96 string "External firmware blobs to build into the kernel binary"
97 depends on FW_LOADER
98 help
99 This option allows firmware to be built into the kernel, for the
100 cases where the user either cannot or doesn't want to provide it from
101 userspace at runtime (for example, when the firmware in question is
102 required for accessing the boot device, and the user doesn't want to
103 use an initrd).
104
105 This option is a string, and takes the (space-separated) names of the
106 firmware files -- the same names which appear in MODULE_FIRMWARE()
107 and request_firmware() in the source. These files should exist under
108 the directory specified by the EXTRA_FIRMWARE_DIR option, which is
109 by default the firmware/ subdirectory of the kernel source tree.
110
111 So, for example, you might set CONFIG_EXTRA_FIRMWARE="usb8388.bin",
112 copy the usb8388.bin file into the firmware/ directory, and build the
113 kernel. Then any request_firmware("usb8388.bin") will be
114 satisfied internally without needing to call out to userspace.
115
116 WARNING: If you include additional firmware files into your binary
117 kernel image which are not available under the terms of the GPL,
118 then it may be a violation of the GPL to distribute the resulting
119 image -- since it combines both GPL and non-GPL work. You should
120 consult a lawyer of your own before distributing such an image.
121
122config EXTRA_FIRMWARE_DIR
123 string "Firmware blobs root directory"
124 depends on EXTRA_FIRMWARE != ""
125 default "firmware"
126 help
127 This option controls the directory in which the kernel build system
128 looks for the firmware files listed in the EXTRA_FIRMWARE option.
129 The default is the firmware/ directory in the kernel source tree,
130 but by changing this option you can point it elsewhere, such as
131 the /lib/firmware/ directory or another separate directory
132 containing firmware files.
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134config DEBUG_DRIVER
135 bool "Driver Core verbose debug messages"
136 depends on DEBUG_KERNEL
137 help
138 Say Y here if you want the Driver core to produce a bunch of
139 debug messages to the system log. Select this if you are having a
140 problem with the driver core and want to see more of what is
141 going on.
142
143 If you are unsure about this, say N here.
144
Tejun Heo9ac78492007-01-20 16:00:26 +0900145config DEBUG_DEVRES
146 bool "Managed device resources verbose debug messages"
147 depends on DEBUG_KERNEL
148 help
149 This option enables kernel parameter devres.log. If set to
150 non-zero, devres debug messages are printed. Select this if
151 you are having a problem with devres or want to debug
152 resource management for a managed device. devres.log can be
153 switched on and off from sysfs node.
154
155 If you are unsure about this, Say N here.
156
Michael Holzheu40394832006-05-09 12:53:49 +0200157config SYS_HYPERVISOR
158 bool
159 default n
Randy Dunlapeba6cd62006-10-28 10:38:55 -0700160
161endmenu