diff options
author | Jérôme Pouiller <jezz@sysmic.org> | 2014-09-23 11:45:47 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-09-23 20:23:02 +0200 |
commit | 80b9dfceafb1d635dbb2c7f948b8b27e190e3e65 (patch) | |
tree | 9b3cb17164bdc520c9b253164bf974a21d07ee87 | |
parent | 6653f58a57db47d7028fd42ad401a88df3519871 (diff) |
directfb: disable multi application if no MMU
directfb-fusion uses the madvise() system call which is not available
on no-MMU targets.
It seems it might be possible to simply remove the call to madvise()
(there is only one call) if not available. However, it's probably not
worth the effort, and people working on no-MMU targets can submit a
patch doing that if they are interested.
[Thomas: tweak commit log.]
Signed-off-by: Jérôme Pouiller <jezz@sysmic.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/directfb/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/directfb/Config.in b/package/directfb/Config.in index d53f7567e..3aa51cba0 100644 --- a/package/directfb/Config.in +++ b/package/directfb/Config.in @@ -12,6 +12,7 @@ if BR2_PACKAGE_DIRECTFB config BR2_PACKAGE_DIRECTFB_MULTI bool "directfb multi application" select BR2_PACKAGE_LINUX_FUSION + depends on BR2_USE_MMU # madvise() depends on BR2_LINUX_KERNEL help Enable use of multiple concurrent DirectFB applications |