mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user