Page 7 of 13
Re: [ROOT] K ROOT on T-JZ* and T-HK* fws up to 1169
Posted: Tue Apr 17, 2018 11:29 am
by asiersan
I have tried and get this errror:
Code: Select all
# wascmd -i blah0blah1.ROOTK -p $SYSROOT/ROOTK.wgt
install blah0blah1.ROOTK
package_path /opt/storage/usb/sda1/SamyGO/ROOTK.wgt
was_install_app return WAS_TRUE
app_id[blah0blah1.ROOTK] install start
app_id[blah0blah1.ROOTK] install failed[118]
spend time for wascmd is [1940]ms
Re: [ROOT] K ROOT on T-JZ* and T-HK* fws up to 1169
Posted: Tue Apr 17, 2018 11:38 am
by zoelechat
Then first delete widget from apps, or use Tizen Studio to install (VM will be updated later if tests success confirmed).
Re: [ROOT] K ROOT on T-JZ* and T-HK* fws up to 1169
Posted: Tue Apr 17, 2018 12:24 pm
by asiersan
If i delete de app and them run command:
Code: Select all
# wascmd -i blah0blah1.ROOTK -p $SYSROOT/ROOTK.wgt
install blah0blah1.ROOTK
package_path /opt/storage/usb/sda1/SamyGO/ROOTK.wgt
was_install_app return WAS_TRUE
app_id[blah0blah1.ROOTK] install start
app_id[blah0blah1.ROOTK] install completed
spend time for wascmd is [3394]ms
I switch off and on, wait......but no lucky. I wait about 2 minutes
Same thing with tizen studio. Only changes a big advise that k-root is loading..
I must run manually.
Re: [ROOT] K ROOT on T-JZ* and T-HK* fws up to 1169
Posted: Tue Apr 17, 2018 2:09 pm
by zoelechat
You moved widget to Home page, right?
ref:
http://developer.samsung.com/tv/develop ... plications
ahhh sh*t, looks to be "All models 7000 and higher", too bad

Re: [ROOT] K ROOT on T-JZ* and T-HK* fws up to 1169
Posted: Thu Apr 19, 2018 6:39 am
by asiersan
zoelechat wrote: ↑Tue Apr 17, 2018 2:09 pm
ahhh sh*t, looks to be "All models 7000 and higher", too bad
BAd luck!!!!

Re: [ROOT] K ROOT on T-JZ* and T-HK* fws up to 1169
Posted: Thu Apr 19, 2018 10:36 am
by zoelechat
Ok, here's another opportunity:
I've updated
rccli, which now allows to remotely execute a widget on TV, and the magical command is:
Code: Select all
./rccli YOUR_TV_IP -w blah0blah1.ROOTK
Now up to you to make some "daemon" script on router or whatever remote device to monitor TV activity (ping? etc), and automatically start root widget say about 30s after TV power ON

Re: [ROOT] K ROOT on T-JZ* and T-HK* fws up to 1169
Posted: Thu Apr 19, 2018 2:52 pm
by asiersan
zoelechat wrote:Ok, here's another opportunity:
I've updated
rccli, which now allows to remotely execute a widget on TV, and the magical command is:
Code: Select all
./rccli YOUR_TV_IP -w blah0blah1.ROOTK
Now up to you to make some "daemon" script on router or whatever remote device to monitor TV activity (ping? etc), and automatically start root widget say about 30s after TV power ON

Ok i will try, i have a asus router with Merlín firmware so i will investigate how to run a daemon to do it.
Many thanks
Re: [ROOT] K ROOT on T-JZ* and T-HK* fws up to 1169
Posted: Thu Apr 19, 2018 4:55 pm
by zoelechat
Here's the idea, you put that as init (or wherever it can start once) script of your router, copy rccli given build to path of your choice, setup top variables, done.
Code: Select all
#!/bin/sh
TV_IP=192.168.1.7
RCCLI=/usr/local/bin/rccli
while : ; do
if ping -c1 -q $TV_IP ; then
if ! wget -q ftp://$TV_IP/tmp/ROOT -O /dev/null ; then
$RCCLI $TV_IP -w blah0blah1.ROOTK
fi
fi
sleep 15
done&
Surely could be improved but the principle is there

Re: [ROOT] K ROOT on T-JZ* and T-HK* fws up to 1169
Posted: Sat Apr 21, 2018 11:04 am
by zoelechat
So then, kings of feedback, is that OK?

Re: [ROOT] K ROOT on T-JZ* and T-HK* fws up to 1169
Posted: Sat Apr 21, 2018 3:48 pm
by asiersan
zoelechat wrote:So then, kings of feedback, is that OK?

No, when i run the comand un comand line its saying ok but widget is not starting. In try the comand in Windows, i will try in linux