From a82ce3e477a475dccea3837eabacd9e93b873ee6 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Thu, 3 Mar 2016 16:56:43 +0000 Subject: 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 Signed-off-by: Richard Purdie --- 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 41066def97..ecfdf26e26 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 -- cgit 1.2.3-korg