Posts by vpeter
-
-
Then build system must be fixed to cover some corner cases like this. But I assume this problem doesn't happen to everyone?
Which package is problematic ones to use host libraries? I think we would need similar thing for linking.
-
Seems I forgot to check if IR still works because there were some changes in this field. Will do later today when I come from work.
Mhm, but you are saying that with official image it works? Strange, because in my build there is no change regarding this. Will see.
-
Seems this is for you: Package updates: update kodi, ffmpeg, libcec by MilhouseVH · Pull Request #1465 · LibreELEC/LibreELEC.tv · GitHub
Then you will be on master++

-
-
It is safer to use
Codegrep -q EHC1.*disabled /proc/acpi/wakeup && echo EHC1 >/proc/acpi/wakeup grep -q XHC.*enabled /proc/acpi/wakeup && echo XHC >/proc/acpi/wakeup
It enables EHC1 only if it is disabled. Same for XHC: it disable it if it is enabled.You should check what values are set after boot - maybe they were changed between releases.
-
Why? It builds without a problem after this.
You are mixing libraries from two different systems. If it works doesn't mean it is correct solution (far from that). You need to find out why it fails to find correct library when building image. -
Working on 8.0.1 Virtual build (which will be available in next days):
Code
Display MoreLibreELEC:~ # cat /etc/issue ############################################## # LibreELEC # # http://libreelec.tv # ############################################## LibreELEC (community) Version: 8.0.1 LibreELEC:~ # python Python 2.7.13 (default, Feb 28 2017, 07:41:10) [GCC 6.2.0] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> sys.path.append('/storage/.kodi/addons/virtual.system-tools/lib') >>> import smbus >>> import time >>> import datetime >>> i2c = smbus.SMBus(1) Traceback (most recent call last): File "<stdin>", line 1, in <module> IOError: [Errno 2] No such file or directory >>>Copy/paste those commands in console so we can see what the error is.
And I assume you have system tools addon installed! -
The main problem is that there is no real developer who could cover it. Also userbase is very small.
As noted: there are official images and also I build few different variants of them.
-
Is your local network even working in case of a failure?
-
piotrasd tried everything with syslinux and he couldn't get it booting. Maybe something is missing in kernel too. If anyone has any direct tips let us know.
Maybe I didn't write correctly before. Syslinux did boot and kernel starts loading. But then only dark screen.
-
Last time we check syslinux didn't work. Only grub (and probably others).
-
To see more data when system boots you need to change console_arg line in uEnv.txt file on first partition on the sd card.
-
You can try to remove ccache folder, clean openssl package and build it again. For me it builds so don't know what it could be.
-
So i would have to fork the entire repo, isn't it?
You can only change your local copy. -
You need to change version.
But sometimes you need to bump other related packages too. -
git pull again and build - kodi package was updated yesterday.
-
When you are building package for host you will see linux-x86_64 because you are building on 64 bit system.
When building for target you will see linux-armv4.
This is all good