diff options
author | 2013-08-20 13:03:04 +0200 | |
---|---|---|
committer | 2013-09-02 23:22:14 +0200 | |
commit | b7c0041c31754a5679eb0a3e4bcf41f80d473ae2 (patch) | |
tree | 775690b6f5a5f91dbd12a7e4848b4aa0b0bbb5ec /system | |
parent | 52e7073a58409ac09b79865a3ae4332cf01edb58 (diff) | |
download | buildroot-b7c0041c31754a5679eb0a3e4bcf41f80d473ae2.tar.gz buildroot-b7c0041c31754a5679eb0a3e4bcf41f80d473ae2.tar.bz2 |
kmod: does not support static builds
Since kmod 14, the support for building a static library has been
removed completely from kmod. Therefore, we mark kmod as
!BR2_PREFER_STATIC_LIB, as well as all its reverse dependencies, which
includes the option to use the "udev" /dev management method.
[Peter: show comment for udev when BR2_PREFER_STATIC_LIB is enabled]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'system')
-rw-r--r-- | system/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/system/Config.in b/system/Config.in index d41f184758..401285bb52 100644 --- a/system/Config.in +++ b/system/Config.in @@ -84,11 +84,15 @@ config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV bool "Dynamic using 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 requires a toolchain with LARGEFILE + WCHAR support" depends on !(BR2_LARGEFILE && BR2_USE_WCHAR) +comment "udev doesn't work with 'prefer static libraries'" + depends on BR2_PREFER_STATIC_LIB + endchoice choice |