diff options
author | eric.le.bihan.dev@free.fr <eric.le.bihan.dev@free.fr> | 2014-02-07 14:21:32 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-12 22:14:16 +0100 |
commit | 937a95449ecaad02386523f8fe2eeefbea6be971 (patch) | |
tree | 40dfdc3d36d1f1fe4b384c8492d3e47c6c60dc14 /system | |
parent | 9b8ffcd8f25cede33bcd2dc81ef8682c2acb0b97 (diff) | |
download | buildroot-937a95449ecaad02386523f8fe2eeefbea6be971.tar.gz buildroot-937a95449ecaad02386523f8fe2eeefbea6be971.zip |
eudev: new package
eudev is a userspace device management daemon. It is a standalone
version, independent from systemd. It is a fork maintained by Gentoo.
Features:
- No extra configuration options are available: Gudev is build if
libglib2 is selected.
- No dependency on hwdata as the package uses its own hardware
database (as does systemd).
eudev 1.3 is in sync with systemd v207.
[Peter: add BR2_USE_MMU dependency]
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'system')
-rw-r--r-- | system/Config.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/system/Config.in b/system/Config.in index 181a0ac12a..d1b0cbb0db 100644 --- a/system/Config.in +++ b/system/Config.in @@ -137,6 +137,18 @@ comment "udev doesn't work with 'prefer static libraries'" depends on !BR2_avr32 # udev depends on BR2_PREFER_STATIC_LIB +config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV + bool "Dynamic using eudev" + depends on !BR2_avr32 # eudev + depends on BR2_LARGEFILE + depends on BR2_USE_WCHAR + depends on !BR2_PREFER_STATIC_LIB + select BR2_PACKAGE_EUDEV + +comment "eudev needs a toolchain w/ largefile, wchar, dynamic library" + depends on !BR2_avr32 # eudev + depends on !BR2_LARGEFILE || !BR2_USE_WCHAR || BR2_PREFER_STATIC_LIB + endchoice config BR2_ROOTFS_DEVICE_TABLE |