diff options
author | Jonathan Maw <jonathan.maw@codethink.co.uk> | 2015-09-29 16:24:47 +0000 |
---|---|---|
committer | Jonathan Maw <jonathan.maw@codethink.co.uk> | 2015-09-29 16:24:47 +0000 |
commit | d83970c8286484ef3ddcdd309c92a7f38045e659 (patch) | |
tree | eec8c51c059e533655e299c908dd3d7aa0471467 | |
parent | e3b0f456ba8176253cf0d289a14bf26b1ea2134a (diff) |
Configure linux-renesas to build uinput
The uinput module is useful for automated testing as it allows
user-space programmes to create and use virtual input devices.
An alternative way of doing this might be to add configuration using the
way recommended by
http://www.yoctoproject.org/docs/1.7.2/kernel-dev/kernel-dev.html#changing-the-configuration,
but I was unable to get that working.
Signed-off-by: Jonathan Maw <jonathan.maw@codethink.co.uk>
-rw-r--r-- | meta-rcar-gen2/recipes-kernel/linux/linux.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-rcar-gen2/recipes-kernel/linux/linux.inc b/meta-rcar-gen2/recipes-kernel/linux/linux.inc index 560bf98..886c2a9 100644 --- a/meta-rcar-gen2/recipes-kernel/linux/linux.inc +++ b/meta-rcar-gen2/recipes-kernel/linux/linux.inc @@ -118,6 +118,9 @@ do_configure_prepend() { kernel_configure_variable QUOTA y kernel_configure_variable BT y + # add uinput for automated testing + kernel_configure_variable INPUT_MISC y + kernel_configure_variable INPUT_UINPUT y # Keep this the last line # Remove all modified configs and add the rest to .config |