[oe-commits] [openembedded-core] 01/07: formfactor: assume a keyboard is plugged in

git at git.openembedded.org git at git.openembedded.org
Thu Mar 3 23:23:47 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 313e4bc4999eb8a399b08d5d2730880b25d0a317
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Thu Mar 3 16:56:43 2016 +0000

    formfactor: assume a keyboard is plugged in
    
    A sensible assumption is that BSPs have a USB keyboard and mouse connected
    unless told otherwise, so flip the logic in the formfactor config script that
    previously assumed that a keyboard was not connected by default.
    
    [ YOCTO #9174 ]
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-bsp/formfactor/files/config | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-bsp/formfactor/files/config b/meta/recipes-bsp/formfactor/files/config
index 41066de..ecfdf26 100755
--- a/meta/recipes-bsp/formfactor/files/config
+++ b/meta/recipes-bsp/formfactor/files/config
@@ -9,7 +9,7 @@ if [ -z "$HAVE_TOUCHSCREEN" ]; then
 fi
 
 if [ -z "$HAVE_KEYBOARD" ]; then
-    HAVE_KEYBOARD=0
+    HAVE_KEYBOARD=1
 fi
 
 if [ -z "$HAVE_KEYBOARD_PORTRAIT" ]; then

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list