summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2008-07-24 09:56:00 +0930
committerPeter Hutterer <peter.hutterer@who-t.net>2008-07-29 10:03:07 +0930
commit538942cc65b5a112739fb94e57b3be963cf50873 (patch)
tree27033bf669e2dbbd5986ed28fb9d371513f26fb5
parent37927b8bfa78670b263311ae1f06d2aae973601d (diff)
xfree86: if AllowEmptyInput is on, warn the user that we rely on HAL now.
(cherry picked from commit f30b0823dbfc5902e54b337b5b6b570ebf216584)
-rw-r--r--hw/xfree86/common/xf86Config.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/hw/xfree86/common/xf86Config.c b/hw/xfree86/common/xf86Config.c
index fde3a9c74..1052e2153 100644
--- a/hw/xfree86/common/xf86Config.c
+++ b/hw/xfree86/common/xf86Config.c
@@ -2460,6 +2460,13 @@ static void
checkInput(serverLayoutPtr layout) {
if (!xf86Info.allowEmptyInput)
checkCoreInputDevices(layout, FALSE);
+ else
+ {
+ xf86Msg(X_INFO, "AllowEmptyInput is on.\n"
+ "\tThe server relies on HAL to provide the list of input "
+ "devices.\n\tIf no devices become available, reconfigure "
+ "HAL.\n");
+ }
}
/*