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
pull/2/merge
Dobrica Pavlinusic 13 years ago
parent 5a384bc6d9
commit 1a2f51cafb

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

Loading…
Cancel
Save