View Single Post
Old 01-07-2024, 04:55 PM   #3
orontee
Connoisseur
orontee ought to be getting tired of karma fortunes by now.orontee ought to be getting tired of karma fortunes by now.orontee ought to be getting tired of karma fortunes by now.orontee ought to be getting tired of karma fortunes by now.orontee ought to be getting tired of karma fortunes by now.orontee ought to be getting tired of karma fortunes by now.orontee ought to be getting tired of karma fortunes by now.orontee ought to be getting tired of karma fortunes by now.orontee ought to be getting tired of karma fortunes by now.orontee ought to be getting tired of karma fortunes by now.orontee ought to be getting tired of karma fortunes by now.
 
orontee's Avatar
 
Posts: 84
Karma: 250308
Join Date: Sep 2023
Location: Toulouse, France
Device: Vivlio Touch HD Plus, reMarkable Paper Pro
For the dumb interface, it's really easy. On a Linux box with "build essentials", execute the following commands:
Code:
git clone https://gitlab.com/DavidGriffith/frotz.git
git clone https://github.com/pocketbook/SDK_6.3.0.git
pushd SDK_6.3.0
git checkout 6.5
pushd ../frotz
CROSS=arm-obreey-linux-gnueabi \
CC=$PWD/../SDK_6.3.0/SDK-B288/usr/bin/$CROSS-clang \
CXX=$PWD/../SDK_6.3.0/SDK-B288/usr/bin/$CROSS-clang++ \
AR=$PWD/../SDK_6.3.0/SDK-B288/usr/bin/$CROSS-ar \
STRIP=$PWD/../SDK_6.3.0/SDK-B288/usr/bin/$CROSS-strip \
RANLIB=$PWD/../SDK_6.3.0/SDK-B288/usr/bin/$CROSS-ranlib \
PKGCONFIG=$PWD/../SDK_6.3.0/SDK-B288/usr/bin/pkg-config \
 CFLAGS="-march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp" make dumb
Then copy the generated dfrotz executable to the /mnt/ext1/applications, copy a Z file to the /mnt/ext1/Downloads directory, say espions.z5 and from PBTerm, run
Code:
/mnt/ext1/applications/dfrotz /mnt/ext1/Downloads/espions.z5
Enjoy!
Attached Images
File Type: bmp scr0016.bmp (758.1 KB, 428 views)

Last edited by orontee; 01-07-2024 at 05:04 PM.
orontee is offline   Reply With Quote