Pārlūkot izejas kodu

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@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton 8 gadi atpakaļ
vecāks
revīzija
a82ce3e477
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      meta/recipes-bsp/formfactor/files/config

+ 1 - 1
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