This is awesome! How reliable are kindle jailbreaks/avoiding updates, etc? Have opted for other devices like the xteink (or a boox in the future) due to what seemed like a relatively small ecosystem around “aftermarket” kindle modifications. The kindle would be a great option if it could be reliably jailbroken and loaded with custom software
Rust (and Slint) on a Jailbroken Kindle
11–20 of 43 posts
Re: Rust (and Slint) on a Jailbroken Kindle
#12Tangential, how does slint fare compared to Druid/egui(?)
Re: Rust (and Slint) on a Jailbroken Kindle
#13This is awesome! How reliable are kindle jailbreaks/avoiding updates, etc? Have opted for other devices like the xteink (or a boox in the future) due to what seemed like a relatively small ecosystem around “aftermarket” kindle modifications. The kindle would be a great option if it could be reliably jailbroken and loaded with custom software
Re: Rust (and Slint) on a Jailbroken Kindle
#14Re: Rust (and Slint) on a Jailbroken Kindle
#15Tangential, how does slint fare compared to Druid/egui(?)
I'm partial to iced, which to me is the best GUI library in Rust by far. The Discord is super active if you have questions.
Re: Rust (and Slint) on a Jailbroken Kindle
#16This is awesome! How reliable are kindle jailbreaks/avoiding updates, etc? Have opted for other devices like the xteink (or a boox in the future) due to what seemed like a relatively small ecosystem around “aftermarket” kindle modifications. The kindle would be a great option if it could be reliably jailbroken and loaded with custom software
Worth noting that kobo devices are not locked down at all and run linux. They’re very easy to build for.
Upon further inspection there is also the Pine Note!
https://news.ycombinator.com/item?id=46283016
https://pine64.org/devices/pinenote/
It’s quite pricey but certainly more straightforward in its offering.
Kobo is the cheaper and has a color option and is likely slightly less hackable.
[EDIT] Ah, I think this is what I found:
https://github.com/Quill-OS/quill
Kobo’s switch to secure boot made things harder for Quill which seemed to be the only custom OS.
Re: Rust (and Slint) on a Jailbroken Kindle
#17It's just running `cargo build --release --target armv7-unknown-linux-musleabihf` with a .cargo/config.toml:
``` [target.armv7-unknown-linux-musleabihf] linker = "rust-lld" rustflags = ["-C", "link-self-contained=yes"]. ```
the downside is I can't use any c-deps. :)
Re: Rust (and Slint) on a Jailbroken Kindle
#18Tangential, how does slint fare compared to Druid/egui(?)