├── .github └── workflows │ └── create-release-archive.yml ├── .gitignore ├── LICENSE ├── doc ├── distrib │ ├── kobostuff │ │ ├── kobo-stuff-1.6.N-r18901.tar.xz │ │ └── source.txt │ ├── nickelmenu │ │ ├── KoboRoot.tgz │ │ └── source.txt │ └── rtcwake │ │ ├── rtcwake_kobo.zip │ │ └── source.txt └── img │ ├── Koboaurasecondedition.png │ ├── batterysupport.png │ ├── capture.jpg │ ├── ledsupport.png │ ├── libra2.jpg │ ├── libracolor.jpg │ ├── menu.png │ └── nottrmnlogsupport.png ├── readme.md └── src ├── TRMNL ├── bin │ ├── busybox_kobo │ ├── error.png │ ├── fbink │ │ ├── CREDITS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fbdepth │ │ ├── fbink │ │ ├── finger_trace │ │ └── input_scan │ └── luajit ├── config.json ├── ffi │ ├── __gc.lua │ ├── posix_h.lua │ ├── posix_types_64b_h.lua │ ├── posix_types_def_h.lua │ ├── posix_types_x64_h.lua │ └── posix_types_x86_h.lua ├── lua │ └── ntx_io.lua ├── scripts │ ├── disable-wifi.sh │ ├── enable-wifi.sh │ ├── getrssi.sh │ ├── ledToggle.sh │ ├── log.sh │ ├── obtain-ip.sh │ ├── release-ip.sh │ └── restore-wifi-async.sh ├── trmnl.sh └── trmnlloop.sh └── nm └── TRMNL.ini /.github/workflows/create-release-archive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/.github/workflows/create-release-archive.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/LICENSE -------------------------------------------------------------------------------- /doc/distrib/kobostuff/kobo-stuff-1.6.N-r18901.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/distrib/kobostuff/kobo-stuff-1.6.N-r18901.tar.xz -------------------------------------------------------------------------------- /doc/distrib/kobostuff/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/distrib/kobostuff/source.txt -------------------------------------------------------------------------------- /doc/distrib/nickelmenu/KoboRoot.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/distrib/nickelmenu/KoboRoot.tgz -------------------------------------------------------------------------------- /doc/distrib/nickelmenu/source.txt: -------------------------------------------------------------------------------- 1 | https://pgaskin.net/NickelMenu/ -------------------------------------------------------------------------------- /doc/distrib/rtcwake/rtcwake_kobo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/distrib/rtcwake/rtcwake_kobo.zip -------------------------------------------------------------------------------- /doc/distrib/rtcwake/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/distrib/rtcwake/source.txt -------------------------------------------------------------------------------- /doc/img/Koboaurasecondedition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/img/Koboaurasecondedition.png -------------------------------------------------------------------------------- /doc/img/batterysupport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/img/batterysupport.png -------------------------------------------------------------------------------- /doc/img/capture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/img/capture.jpg -------------------------------------------------------------------------------- /doc/img/ledsupport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/img/ledsupport.png -------------------------------------------------------------------------------- /doc/img/libra2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/img/libra2.jpg -------------------------------------------------------------------------------- /doc/img/libracolor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/img/libracolor.jpg -------------------------------------------------------------------------------- /doc/img/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/img/menu.png -------------------------------------------------------------------------------- /doc/img/nottrmnlogsupport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/doc/img/nottrmnlogsupport.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/readme.md -------------------------------------------------------------------------------- /src/TRMNL/bin/busybox_kobo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/bin/busybox_kobo -------------------------------------------------------------------------------- /src/TRMNL/bin/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/bin/error.png -------------------------------------------------------------------------------- /src/TRMNL/bin/fbink/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/bin/fbink/CREDITS -------------------------------------------------------------------------------- /src/TRMNL/bin/fbink/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/bin/fbink/LICENSE -------------------------------------------------------------------------------- /src/TRMNL/bin/fbink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/bin/fbink/README.md -------------------------------------------------------------------------------- /src/TRMNL/bin/fbink/fbdepth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/bin/fbink/fbdepth -------------------------------------------------------------------------------- /src/TRMNL/bin/fbink/fbink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/bin/fbink/fbink -------------------------------------------------------------------------------- /src/TRMNL/bin/fbink/finger_trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/bin/fbink/finger_trace -------------------------------------------------------------------------------- /src/TRMNL/bin/fbink/input_scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/bin/fbink/input_scan -------------------------------------------------------------------------------- /src/TRMNL/bin/luajit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/bin/luajit -------------------------------------------------------------------------------- /src/TRMNL/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/config.json -------------------------------------------------------------------------------- /src/TRMNL/ffi/__gc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/ffi/__gc.lua -------------------------------------------------------------------------------- /src/TRMNL/ffi/posix_h.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/ffi/posix_h.lua -------------------------------------------------------------------------------- /src/TRMNL/ffi/posix_types_64b_h.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/ffi/posix_types_64b_h.lua -------------------------------------------------------------------------------- /src/TRMNL/ffi/posix_types_def_h.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/ffi/posix_types_def_h.lua -------------------------------------------------------------------------------- /src/TRMNL/ffi/posix_types_x64_h.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/ffi/posix_types_x64_h.lua -------------------------------------------------------------------------------- /src/TRMNL/ffi/posix_types_x86_h.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/ffi/posix_types_x86_h.lua -------------------------------------------------------------------------------- /src/TRMNL/lua/ntx_io.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/lua/ntx_io.lua -------------------------------------------------------------------------------- /src/TRMNL/scripts/disable-wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/scripts/disable-wifi.sh -------------------------------------------------------------------------------- /src/TRMNL/scripts/enable-wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/scripts/enable-wifi.sh -------------------------------------------------------------------------------- /src/TRMNL/scripts/getrssi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/scripts/getrssi.sh -------------------------------------------------------------------------------- /src/TRMNL/scripts/ledToggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/scripts/ledToggle.sh -------------------------------------------------------------------------------- /src/TRMNL/scripts/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/scripts/log.sh -------------------------------------------------------------------------------- /src/TRMNL/scripts/obtain-ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/scripts/obtain-ip.sh -------------------------------------------------------------------------------- /src/TRMNL/scripts/release-ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/scripts/release-ip.sh -------------------------------------------------------------------------------- /src/TRMNL/scripts/restore-wifi-async.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/scripts/restore-wifi-async.sh -------------------------------------------------------------------------------- /src/TRMNL/trmnl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/trmnl.sh -------------------------------------------------------------------------------- /src/TRMNL/trmnlloop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/TRMNL/trmnlloop.sh -------------------------------------------------------------------------------- /src/nm/TRMNL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usetrmnl/trmnl-kobo/HEAD/src/nm/TRMNL.ini --------------------------------------------------------------------------------