Quote:
Originally Posted by fennectech
Hey you guys i rewrote the optware mount script that used to use sysvinit (never got that damn thing to work) since the kindle uses upstart i created a .conf file
/etc/upstart/optmount.comf
Code:
# /mnt/us/optware.ext3 is the optware filesystem image
start on mounted_userstore
stop on stopping filesystems
export LANG LC_ALL
pre-start script
mount /mnt/optware
end script
post-stop script
umount /mnt/optware
end script
This compleetly replaces the sysvinit script for optware mount and this one actually works!
https://wiki.mobileread.com/wiki/Optware
|
As written, that script depends on a modification of /etc/fstab.
Which will be lost on every firmware update.
As will the up-start script shown above.