@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