Posts by vpeter
-
-
-
Code
# copy skin folder and change it's content cp -r /usr/share/kodi/addons/skin.estuary /storage/.kodi/addons/skin.estuary.edit # if name is also changed then new skin must be selected from Kodi settings !!! sed -i 's/id=\"skin.estuary\"/id=\"skin.estuary.edit\"/' /storage/.kodi/addons/skin.estuary.edit/addon.xml sed -i 's/name=\"Estuary\"/name=\"Estuary (Edit)\"/' /storage/.kodi/addons/skin.estuary.edit/addon.xmlAnd then edit files in /storage/.kodi/addons/skin.estuary.edit.
-
-
This reading could help: PXE Boot stuck on reboot/shutdown
-
-
-
Until proper solution will be suggested wrote ir-keytable command in file /storage/.config/autostart.sh.
-
-
Read this
Amlogic != Allwinner
-
P.S (off topic) (Ovi from TBS here
)Welcome

-
I though openssl uses this file by default? If not then it is ok to use different name (didn't look into this part).
-
openssl.cnf is not relevant here.
-
Sure, this would work also and it is initial idea.
But you need to leave /etc/ssl/cert.pem because this is default name used. Use symbolic link instead.
Also I would rename openssl-config to something more appropriate.
-
Ah, then nothing. At least you have workaround

-
You can try this: libreelec-generic.x86_64-9.0-devel-20180713105447-32ef9ba-certs-test.img.gz
- remove mount line of /etc/ssl from autostart.sh
- create folder /storage/.config/ssl-certs if doesn't exist
- copy your cacert.pem file there (filename is not important)
- update certs with command update-ca-certificates.sh
-
With little more investigation I got more elegant solution.
Curl needs to be build with --with-ca-path=/storage/.config/ssl-certs instead of --without-ca-path. Then users pem files can be put in this folder. But pem file needs to be named by the hash values with command cd /storage/.config/ssl-certs && find *.pem -exec sh -c 'ln -s $0 $(openssl x509 -hash -noout -in "$0").0' {} \;.
Probably better path would be standard one /etc/ssl/certs/ with link to /storage.
-