@Clouds
Hang in there. A few more details to iron out!
@raisjn
That is great news!
I did encounter a problem trying to swipe to get the initial menu.
Trying the remux binary from
https://raisjn.net/fbink/, and running from SSH on my kobo, I got the error:
# sh /opt/bin/remux.sh
/opt/bin/apps/remux: /lib/libm.so.6: version `GLIBC_2.27' not found (required by /opt/bin/apps/remux)
So I tried your build directions (with a few mods):
Build toolchain as in fbpad:
https://www.mobileread.com/forums/sh...16&postcount=4
$ source ~/koxtoolchain/refs/x-compile.sh kobo env bare
$ git clone
https://github.com/rmkit-dev/rmkit.git
$ cd rmkit
$ git checkout fbink
$ git submodule init
$ git submodule update
$ pushd src/vendor/FBInk/
$ git submodule init
$ git submodule update
$ CROSS_TC=arm-kobo-linux-gnueabihf BITMAP=1 make staticlib
$ popd
$ cp src/vendor/FBInk/fbink.h src/vendor/
$ KOBO=1 FBINK=1 CROSS_TC=arm-kobo-linux-gnueabihf make
So then, copying src/build/remux to /mnt/onboard/.adds/rmkit/bin/apps/ I get:
# sh /opt/bin/remux.sh
[FBInk] Detected a Kobo Clara HD (376 => Nova @ Mark 7)
[FBInk] Enabled Kobo Mark 7 quirks
[FBInk] Clock tick frequency appears to be 100 Hz
[FBInk] Screen density set to 300 dpi
[FBInk] Variable fb info: 1072x1448, 32bpp @ rotation: 3 (Counter Clockwise, 270°)
[FBInk] Fixed fb info: ID is "mxc_epdc_fb", length of fb mem: 6782976 bytes & line length: 4352 bytes
[FBInk] Canonical rotation: 0 (Upright, 0°)
[FBInk] Fontsize set to 24x24 (IBM base glyph size: 8x8)
[FBInk] Line length: 44 cols, Page size: 60 rows
[FBInk] Vertical fit isn't perfect, shifting rows down by 4 pixels
[FBInk] Pen colors set to #000000 for the foreground and #FFFFFF for the background
W: 1072 H: 1448 S: 1088
OPENING /dev/input/event0 AS BUTTONS
OPENING /dev/input/event1 AS TOUCH
ERROR OPENING INPUT DEVICE /dev/input/event2
ERROR OPENING INPUT DEVICE /dev/input/event3
ERROR OPENING INPUT DEVICE /dev/input/event4
READING CONFIG FROM /home/root/.config/remux/remux.conf
No such file or directory
No such file or directory
No such file or directory
memory stats took 0.0110213
CURRENT APP IS _
READING TIMEOUTS FOR SLEEP/SHUTDOWN FROM XOCHITL
sh: systemctl: not found
LAUNCHING APP xochitl _
POWER MANAGEMENT: 0
RESETTING MT GESTURES
sh: systemctl: not found
COULDNT READ XOCHITL CMD FROM SYSTEMCTL, DEFAULTING TO /LIB
XOCHITL CMD IS xochitl --system
CHECKING PROCESS xochitl 0
setsid: can't execute 'xochitl': No such file or directory
STARTING SUSPEND THREAD
STARTING FIFO THREAD
LAST SUSPEND LOOP WAS 1706567123 AGO, RESETTING IDLE TIMER
SETTING UP GESTURES
SETTING LAUNCH GESTURES TO DEFAULT
ADDED SWIPE GESTURE:
command:
gesture: swipe
fingers:
min_events:
zone: 0 0 107 1448
direction: up
distance:
ADDED SWIPE GESTURE:
command:
gesture: swipe
fingers:
min_events:
zone: 964 0 1072 1448
direction: up
distance:
And there is no response to swiping.
However...
Running from another SSH window:
# /mnt/onboard/.adds/rmkit/bin/apps/input_demo
W: 1072 H: 1448 S: 1088
XRES 1072 YRES 1448 BPP 16 GRAYSCALE 0
RUNNING ON CLARA HD
DRAG START
DRAGGING 433 933
The input_demo app works!
(Except that Nickel is still responding to touch events.)
So, main problem is that swiping along edge no longer brings up menu.
Running app individually stll sends touches to Nickel.
***