diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-15 22:43:39 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-15 22:43:39 +0200 |
commit | 7f1f9185e7bf5badca554c362ab8a37f04caff5f (patch) | |
tree | c1bdf23b07baa25d9bdca4a17428321a95953977 | |
parent | a68a51257e9ba0f1654d6ca087bb5259841952e7 (diff) | |
download | buildroot-7f1f9185e7bf5badca554c362ab8a37f04caff5f.tar.gz buildroot-7f1f9185e7bf5badca554c362ab8a37f04caff5f.zip |
system: default to devtmpfs for /dev
As discussed on the list, devtmpfs is quite a bit nicer default than
the old static /dev, so change it.
Notice that you NEED to enable CONFIG_DEVTMPFS / CONFIG_DEVTMPFS_MOUNT
in the kernel configuration if you manually build a kernel outside
buildroot, otherwise the rootfs won't work.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | system/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/Config.in b/system/Config.in index 73986fbaf3..9d4e8377af 100644 --- a/system/Config.in +++ b/system/Config.in @@ -68,7 +68,7 @@ config BR2_TARGET_GENERIC_PASSWD_METHOD choice prompt "/dev management" - default BR2_ROOTFS_DEVICE_CREATION_STATIC + default BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS config BR2_ROOTFS_DEVICE_CREATION_STATIC bool "Static using device table" |