auto-detect Kindle 3 based on /dev/input/event2

This is somewhat important, because if we are started without
explicit -d k3 all key mappings are wrong, and user can't exit
This commit is contained in:
Dobrica Pavlinusic
2011-12-23 23:27:26 +01:00
parent 5a384bc6d9
commit 1a2f51cafb

View File

@@ -63,6 +63,15 @@ elseif optarg["d"] == "emu" then
else
input.open("/dev/input/event0")
input.open("/dev/input/event1")
-- check if we are running on Kindle 3 (additional volume input)
local f=lfs.attributes("/dev/input/event2")
print(f)
if f then
print("Auto-detected Kindle 3")
set_k3_keycodes()
end
end
if optarg["G"] ~= nil then