]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
formfactor: assume a keyboard is plugged in
authorRoss Burton <ross.burton@intel.com>
Thu, 3 Mar 2016 16:56:43 +0000 (16:56 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 6 Mar 2016 23:52:56 +0000 (23:52 +0000)
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@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-bsp/formfactor/files/config

index 41066def97ce1934b0474d53dad86ec8c8adb043..ecfdf26e268e07990fb0409cd44df91ef50461f0 100755 (executable)
@@ -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