Page 2 of 2

Re: remove bloatware

Posted: Tue Jul 17, 2018 10:06 pm
by setti
I did it more the systemd way, lets see if its enough.

Code: Select all

tv-schlafzimmer~ # cat $SYSROOT/etc/init.d/02_tvplus_disable.init
#!/bin/sh
#
#       (c) 2017        setti @ SamyGO
#

case $1 in
        start)
        systemctl stop tvplus-service.path tvplus-service.service
        ;;
        stop)
        systemctl start tvplus-service.path tvplus-service.service
        ;;
        restart)
        $0 stop ; sleep 1 ; $0 start
        ;;
        status)
        systemctl status tvplus-service.path tvplus-service.service
        ;;
        *)
        echo "Usage: $0 {start|stop|restart|status}" >&2 && exit 1
        ;;
esac

Re: remove bloatware

Posted: Tue Jul 17, 2018 10:22 pm
by zoelechat
If not enough, you'd just have to add mount to start case and umount to stop case (before each systemctl) :)

Re: remove bloatware

Posted: Tue Jul 17, 2018 10:31 pm
by zoelechat
Btw, just found that :D
Option-Engineer_Option.png
That said, it's possible you can't permanently change it (=back to ON after reboot) as soon as your local set is selected... Worth the try maybe.

Re: remove bloatware

Posted: Wed Jul 18, 2018 7:26 am
by setti
Thx zoelechat!