View Single Post
Old 12-06-2019, 07:51 AM   #13
Markismus
Guru
Markismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicing
 
Markismus's Avatar
 
Posts: 955
Karma: 149907
Join Date: Jul 2013
Location: Rotterdam
Device: HiSenseA5ProCC, Cracked OnyxNotePro, Note5, Kobo Glo, Aura
@nhedgehog It works with the code you pm-ed me.
What I did:
I changed the bookstore.app in the applications folder (/mnt/ext1/application) to:
Code:
#!/bin/sh
# line commented out for testing
#exec /ebrmain/bin/bookstore.app
pixelratio="1.263"
add_param="$add_param -pixelratio $pixelratio"
bookstore_url="http://192.168.2.44:8000" 	
/ebrmain/bin/openbook /ebrmain/bin/browser.app -simpletoolbar $add_param $bookstore_url
then instead of the file linking to /ebrmain/bin/bookstore.app which is a symlink for ebrmain/cramfs/bin/bookstore.app, moved the file and created a new symlink to the one modified:
Code:
mount -o remount,rw /ebrmain
cd /ebrmain/bin
mv bookstore.app bookstore.app.bak
ln -s /mnt/ext1/application/bookstore.app bookstore.app
mount -o remount,ro /ebrmain

Last edited by Markismus; 12-06-2019 at 09:14 AM.
Markismus is offline   Reply With Quote