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 ]

(From OE-Core rev: a82ce3e477a475dccea3837eabacd9e93b873ee6)

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ross Burton 2016-03-03 16:56:43 +00:00 committed by Richard Purdie
parent e2107f5b97
commit 463fd5ee26
1 changed files with 1 additions and 1 deletions

View File

@ -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