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

git at git.openembedded.org git at git.openembedded.org
Mon Mar 7 00:12:15 UTC 2016


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

commit a82ce3e477a475dccea3837eabacd9e93b873ee6
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