diff options
| author | Simon Dawson <spdawson@gmail.com> | 2013-12-05 09:39:41 +0000 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2013-12-05 11:17:29 +0100 |
| commit | 3fe55b1a2bde0015345778d319d49abce6c37eb5 (patch) | |
| tree | 2a523dc963890a8051aeaf5fae56c05ab7007f0d /system | |
| parent | 940ea28488252f165c774fd1b04f99417b2d0d85 (diff) | |
| download | buildroot-3fe55b1a2bde0015345778d319d49abce6c37eb5.tar.gz buildroot-3fe55b1a2bde0015345778d319d49abce6c37eb5.zip | |
udev: disable on avr32
udev requires the epoll_create1 system call, which is not available on avr32.
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'system')
| -rw-r--r-- | system/Config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system/Config.in b/system/Config.in index c8f2758638..54c196c69e 100644 --- a/system/Config.in +++ b/system/Config.in @@ -116,15 +116,18 @@ config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV bool "Dynamic using udev" + depends on !BR2_avr32 # udev depends on BR2_LARGEFILE # udev depends on BR2_USE_WCHAR # udev depends on !BR2_PREFER_STATIC_LIB # udev -> kmod select BR2_PACKAGE_UDEV comment "udev needs a toolchain w/ largefile, wchar" + depends on !BR2_avr32 # udev depends on !(BR2_LARGEFILE && BR2_USE_WCHAR) comment "udev doesn't work with 'prefer static libraries'" + depends on !BR2_avr32 # udev depends on BR2_PREFER_STATIC_LIB endchoice |

