Commit Graph

25220 Commits

Author SHA1 Message Date
CvH
390ecfeea4 crazycat: add tbs5520se fix 2019-02-18 20:33:31 +01:00
CvH
e9f8a46432 Merge pull request #3290 from MilhouseVH/le90_cacert_20190206
openssl: update SSL CA trust store (sync with Kodi PR15441)
2019-02-17 22:00:11 +01:00
CvH
6f3efcd7b9 Merge pull request #3304 from MilhouseVH/le91_libnfs4.0.0
libnfs: update to libnfs-4.0.0
2019-02-17 21:58:02 +01:00
MilhouseVH
77f1f1097b libnfs: update to libnfs-4.0.0 2019-02-17 19:41:39 +00:00
Christian Hewitt
8dfe7d74df Merge pull request #3308 from mglae/le92_nano_wrap
nano: disable line wrapping
2019-02-16 15:09:42 +04:00
awiouy
8445257042 emby4: update to 4.0.2.0 2019-02-15 19:00:05 +01:00
mglae
70f63858e2 nano: disable line wrapping 2019-02-14 00:26:23 +01:00
MilhouseVH
da79708b57 libtool: fix dependency 2019-02-13 15:10:54 +00:00
MilhouseVH
48eee9e68a nmap: fix dependency 2019-02-13 15:10:54 +00:00
MilhouseVH
29e7605ab7 aom: fix dependency 2019-02-13 15:10:54 +00:00
MilhouseVH
fd66be981d mpd: fix dependency 2019-02-13 15:10:54 +00:00
MilhouseVH
78d97cc12b slice-firmware: fix dependency 2019-02-13 15:10:54 +00:00
MilhouseVH
812739f7d6 slice: fix slice addon build 2019-02-13 15:10:54 +00:00
MilhouseVH
7ed6710a19 libvpx: fix ignored dependency 2019-02-13 15:10:54 +00:00
MilhouseVH
88420e232b tools/pkgcheck: add "ignored depends assign" warning 2019-02-13 15:10:54 +00:00
MilhouseVH
255a8cdeff flex: needs yacc command, provided by bison 2019-02-13 15:10:54 +00:00
Jernej Škrabec
b306960630 Merge pull request #3284 from MilhouseVH/le92_libva_2.4.0
libva: update to libva-2.4.0
2019-02-08 19:20:38 +01:00
Jernej Škrabec
c765275db6 Merge pull request #3282 from MilhouseVH/le90_mesa-18.3.3
mesa: update to mesa-18.3.3
2019-02-08 19:20:10 +01:00
MilhouseVH
93f2479fe5 autoconf: add yoctoproject/poky performance patch
Source: http://git.yoctoproject.org/cgit.cgi/poky/tree/meta/recipes-devtools/autoconf/autoconf
2019-02-08 17:17:43 +00:00
MilhouseVH
52f921055a font-bitstream-type1: add font-xfree86-type1 dependency to avoid install race condition
Both packages update the same fonts.dir, but font-xfree86-type1 trashes it so build this first.
2019-02-08 17:17:43 +00:00
MilhouseVH
42a2b7171a flex: host depends on autotools 2019-02-08 17:17:43 +00:00
MilhouseVH
9babaaebe9 libcec: add libX11/libXrandr depends (optional, but needed for reproducible build)
"libX11 and xrandr to read the sink's EDID, used to determine the PC's HDMI physical address"
2019-02-08 17:17:43 +00:00
MilhouseVH
9f75c9be17 lirc: detects alsa automagically - we don't want the alsa libs
When building lirc after alsa-utils, the following unwanted alsa libraries are built by lirc:

NEW FILE       Delta: 10,536       devel-20190115185543-5767941: 10,536        devel-20190115133317-5767941: n/a          /usr/lib/lirc/plugins/alsa_usb.so
NEW FILE       Delta: 19,176       devel-20190115185543-5767941: 19,176        devel-20190115133317-5767941: n/a          /usr/lib/lirc/plugins/audio_alsa.so
2019-02-08 17:17:43 +00:00
MilhouseVH
2cfc2b3077 alsa-utils: depends on systemd otherwise udev rules installed incorrectly
udev rules will be installed to /lib/udev/rules.d and not /usr/lib/udev/rules.d
if udev (via systemd) is not already installed.

if test "${with_udev_rules_dir+set}" = set; then :
  withval=$with_udev_rules_dir; udevrulesdir="$withval"
else
  udevdir=$($PKG_CONFIG udev --variable=udevdir)
        if test "x$udevdir" = "x"; then
            udevrulesdir="/lib/udev/rules.d"
        else
            udevrulesdir="$udevdir/rules.d"
        fi
fi
2019-02-08 17:17:43 +00:00
MilhouseVH
12cc464155 initramfs: use ln -sfn when LINK_NAME is a directory
INSTALL      initramfs (target)
ln: failed to create symbolic link '/home/ubuntu/projects/LibreELEC.tv/build.LibreELEC-RPi2.arm-9.0-devel-mt/initramfs/lib/lib': Permission denied
ln: failed to create symbolic link '/home/ubuntu/projects/LibreELEC.tv/build.LibreELEC-RPi2.arm-9.0-devel-mt/initramfs/bin/bin': Permission denied
ln: failed to create symbolic link '/home/ubuntu/projects/LibreELEC.tv/build.LibreELEC-RPi2.arm-9.0-devel-mt/initramfs/sbin/sbin': Permission denied

If the directory sym link already exists, we try to
create a directory within the dereferenced sym link. So...

ln -sf /usr/lib $BUILD/initramfs/lib

means we attempt to create a sym link within the existing
$BUILD/initramfs/lib which is derefernced to /usr/lib/lib,
resulting in "permission denied".
2019-02-08 17:17:43 +00:00