2023-11-07, 17:46
is the netflix addon working with inputstream adaptive?
If yes is 4K dolby vision also working within netflix?
If yes is 4K dolby vision also working within netflix?
(2023-10-31, 23:45)satdx62 Wrote: @mufex
Hi,
You can offload .kodi to USB. Install Kodi. Start it and set it up. Then copy the entire .kodi folder on USB to/tmp/usb/sda/sda1/
and then delete the entire contents of the .kodi folder on the TV. The .kodi folder on the TV must remain empty.
Mount with the following script:
kodi:#!/bin/sh
jailer -S -t native_devmode -p /media/developer/apps/usr/palm/applications/org.xbmc.kodi -i org.xbmc.kodi
mount -o bind /tmp/usb/sda/sda1/.kodi /var/palm/jail/org.xbmc.kodi/media/developer/apps/usr/palm/applications/org.xbmc.kodi/.kodi
To make this permanent, you need to save the script in/var/lib/webosbrew/init.d/
and make it executable, withchmod +x filename
. (For example,chmod 777 kodi
) if the file name is kodi.
This must be saved as files and must not have any extension in the name like .sh/.bash .txt etc.
“Executable scripts in here will be launched on boot by /var/lib/webosbrew/startup.sh (main startup script)
Note the filename may only contain a-zA-Z0-9_- (and no .sh/.bash etc.) since this is executed by run-parts
run-parts requires the files to be executable (chmod +x $file) and to exit with status code 0.”
(2023-11-08, 15:58)wisheey Wrote:That's exactly what I described:(2023-10-31, 23:45)satdx62 Wrote: @mufex
Hi,
You can offload .kodi to USB. Install Kodi. Start it and set it up. Then copy the entire .kodi folder on USB to/tmp/usb/sda/sda1/
and then delete the entire contents of the .kodi folder on the TV. The .kodi folder on the TV must remain empty.
Mount with the following script:
kodi:#!/bin/sh
jailer -S -t native_devmode -p /media/developer/apps/usr/palm/applications/org.xbmc.kodi -i org.xbmc.kodi
mount -o bind /tmp/usb/sda/sda1/.kodi /var/palm/jail/org.xbmc.kodi/media/developer/apps/usr/palm/applications/org.xbmc.kodi/.kodi
To make this permanent, you need to save the script in/var/lib/webosbrew/init.d/
and make it executable, withchmod +x filename
. (For example,chmod 777 kodi
) if the file name is kodi.
This must be saved as files and must not have any extension in the name like .sh/.bash .txt etc.
“Executable scripts in here will be launched on boot by /var/lib/webosbrew/startup.sh (main startup script)
Note the filename may only contain a-zA-Z0-9_- (and no .sh/.bash etc.) since this is executed by run-parts
run-parts requires the files to be executable (chmod +x $file) and to exit with status code 0.”
Thanks for the instructions.....It's working from the usb flash drive now ! except i can't make the script to run on boot..i made all the necessary steps..the only way for it to work is to run the script manually each time I reboot.
Is there anyway to make webos ( Rooted ) to run a script automatically on device boot ?
startup.sh is installed correctly with run-parts command available.
Thanks.
/var/lib/webosbrew/init.d/
and make it executable, with chmod +x filename. (For example, chmod 777 kodi) if the file name is kodi. /var/lib/webosbrew/init.d/
using FileZilla. Right-click on the files, from context, change files right and enter 777 to run them automatically on boot. That's all there is to it.
(2023-11-09, 06:20)nayef Wrote: Hi @satdx62
you have "inputstream.ffmpegdirect" addon for org.xbmc.kodi_20231018-8b55b2be-retroplayer-21beta1_arm.ipk ?
(2023-11-08, 17:44)satdx62 Wrote:Thanks again for you help....that's exactly what i did..I think the problem may be that Homebrew doesn't run startup.sh probably ...I will try again and report back...(2023-11-08, 15:58)wisheey Wrote:That's exactly what I described:(2023-10-31, 23:45)satdx62 Wrote: @mufex
Hi,
You can offload .kodi to USB. Install Kodi. Start it and set it up. Then copy the entire .kodi folder on USB to/tmp/usb/sda/sda1/
and then delete the entire contents of the .kodi folder on the TV. The .kodi folder on the TV must remain empty.
Mount with the following script:
kodi:#!/bin/sh
jailer -S -t native_devmode -p /media/developer/apps/usr/palm/applications/org.xbmc.kodi -i org.xbmc.kodi
mount -o bind /tmp/usb/sda/sda1/.kodi /var/palm/jail/org.xbmc.kodi/media/developer/apps/usr/palm/applications/org.xbmc.kodi/.kodi
To make this permanent, you need to save the script in/var/lib/webosbrew/init.d/
and make it executable, withchmod +x filename
. (For example,chmod 777 kodi
) if the file name is kodi.
This must be saved as files and must not have any extension in the name like .sh/.bash .txt etc.
“Executable scripts in here will be launched on boot by /var/lib/webosbrew/startup.sh (main startup script)
Note the filename may only contain a-zA-Z0-9_- (and no .sh/.bash etc.) since this is executed by run-parts
run-parts requires the files to be executable (chmod +x $file) and to exit with status code 0.”
Thanks for the instructions.....It's working from the usb flash drive now ! except i can't make the script to run on boot..i made all the necessary steps..the only way for it to work is to run the script manually each time I reboot.
Is there anyway to make webos ( Rooted ) to run a script automatically on device boot ?
startup.sh is installed correctly with run-parts command available.
Thanks.
“To make this permanent, you need to save the script in/var/lib/webosbrew/init.d/
and make it executable, with chmod +x filename. (For example, chmod 777 kodi) if the file name is kodi.
This must be saved as files and must not have any extension in the name like .sh/.bash .txt etc.”
Or even simpler:
Simply create a file with the name kodi with Notepad++, with the content of the script and save it as a Unix/Linux file. Remove the .sh or .bash extension from the file name and copy it to/var/lib/webosbrew/init.d/
using FileZilla. Right-click on the files, from context, change files right and enter 777 to run them automatically on boot. That's all there is to it.
(2023-11-09, 14:49)wisheey Wrote:Normally, all scripts that are located in(2023-11-08, 17:44)satdx62 Wrote:Thanks again for you help....that's exactly what i did..I think the problem may be that Homebrew doesn't run startup.sh probably ...I will try again and report back...(2023-11-08, 15:58)wisheey Wrote: Thanks for the instructions.....It's working from the usb flash drive now ! except i can't make the script to run on boot..i made all the necessary steps..the only way for it to work is to run the script manually each time I reboot.That's exactly what I described:
Is there anyway to make webos ( Rooted ) to run a script automatically on device boot ?
startup.sh is installed correctly with run-parts command available.
Thanks.
“To make this permanent, you need to save the script in/var/lib/webosbrew/init.d/
and make it executable, with chmod +x filename. (For example, chmod 777 kodi) if the file name is kodi.
This must be saved as files and must not have any extension in the name like .sh/.bash .txt etc.”
Or even simpler:
Simply create a file with the name kodi with Notepad++, with the content of the script and save it as a Unix/Linux file. Remove the .sh or .bash extension from the file name and copy it to/var/lib/webosbrew/init.d/
using FileZilla. Right-click on the files, from context, change files right and enter 777 to run them automatically on boot. That's all there is to it.
Question : can i run run-parts command after kodi starts with SSH ? I can run sh to the file i made and it works great ....i thin the problem now is run-parts.
/var/lib/webosbrew/init.d/
are executed. As far as I remember, there were problems with webOS 4.xx