diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2010-01-14 16:47:57 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-03-07 20:04:48 -0500 |
commit | 4237e5fd3e07da268029cd4862cf551d9a74e33f (patch) | |
tree | 22a1729bcfec67a63e2bf33485d11a3b77045300 /drivers | |
parent | 5e31d76f2817bd50258a092a7c5b15b3006fd61c (diff) |
Driver-Core: devtmpfs - remove EXPERIMENTAL and flush out the description
All major distros enable devtmpfs on recent systems, so remove
the EXPERIMENTAL flag, and make the description a bit more instructive.
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/base/Kconfig | 41 |
1 files changed, 24 insertions, 17 deletions
diff --git a/drivers/base/Kconfig b/drivers/base/Kconfig index ee377270beb9..8021e19fa1ea 100644 --- a/drivers/base/Kconfig +++ b/drivers/base/Kconfig | |||
@@ -9,29 +9,36 @@ config UEVENT_HELPER_PATH | |||
9 | every uevent. | 9 | every uevent. |
10 | 10 | ||
11 | config DEVTMPFS | 11 | config DEVTMPFS |
12 | bool "Create a kernel maintained /dev tmpfs (EXPERIMENTAL)" | 12 | bool "Maintain a devtmpfs filesystem to mount at /dev" |
13 | depends on HOTPLUG && SHMEM && TMPFS | 13 | depends on HOTPLUG && SHMEM && TMPFS |
14 | help | 14 | help |
15 | This creates a tmpfs filesystem, and mounts it at bootup | 15 | This creates a tmpfs filesystem instance early at bootup. |
16 | and mounts it at /dev. The kernel driver core creates device | 16 | In this filesystem, the kernel driver core maintains device |
17 | nodes for all registered devices in that filesystem. All device | 17 | nodes with their default names and permissions for all |
18 | nodes are owned by root and have the default mode of 0600. | 18 | registered devices with an assigned major/minor number. |
19 | Userspace can add and delete the nodes as needed. This is | 19 | Userspace can modify the filesystem content as needed, add |
20 | intended to simplify bootup, and make it possible to delay | 20 | symlinks, and apply needed permissions. |
21 | the initial coldplug at bootup done by udev in userspace. | 21 | It provides a fully functional /dev directory, where usually |
22 | It should also provide a simpler way for rescue systems | 22 | udev runs on top, managing permissions and adding meaningful |
23 | to bring up a kernel with dynamic major/minor numbers. | 23 | symlinks. |
24 | Meaningful symlinks, permissions and device ownership must | 24 | In very limited environments, it may provide a sufficient |
25 | still be handled by userspace. | 25 | functional /dev without any further help. It also allows simple |
26 | If unsure, say N here. | 26 | rescue systems, and reliably handles dynamic major/minor numbers. |
27 | 27 | ||
28 | config DEVTMPFS_MOUNT | 28 | config DEVTMPFS_MOUNT |
29 | bool "Automount devtmpfs at /dev" | 29 | bool "Automount devtmpfs at /dev, after the kernel mounted the rootfs" |
30 | depends on DEVTMPFS | 30 | depends on DEVTMPFS |
31 | help | 31 | help |
32 | This will mount devtmpfs at /dev if the kernel mounts the root | 32 | This will instruct the kernel to automatically mount the |
33 | filesystem. It will not affect initramfs based mounting. | 33 | devtmpfs filesystem at /dev, directly after the kernel has |
34 | If unsure, say N here. | 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. | ||
35 | 42 | ||
36 | config STANDALONE | 43 | config STANDALONE |
37 | bool "Select only drivers that don't need compile-time external firmware" if EXPERIMENTAL | 44 | bool "Select only drivers that don't need compile-time external firmware" if EXPERIMENTAL |