Posts by shanemeagher

    Hi,

    By default, which configuration file should LibreELEC use by default:

    Code
    /etc/avahi/avahi-daemon.conf


    or

    Code
    /storage/.conf/avahi/avahi-daemon.conf

    I ask as I'm trying to use an addon that includes its own mdns implementation and which fails if

    Quote


    disallow-other-stacks=yes

    The configuration in `/storage/.config/avahi/avahi-daemon.conf` has this set to `no` whilst the config in `/etc/avahi/avahi-daemon.conf` is set to yes.

    Thanks,
    Shane

    Hi,

    When writing a package.mk for an addon, is it possible to check the PROJECT (e.g. Generic, RPi, RPi2, etc) and ARCH (e.g. x86_64, arm, etc) that is being built when ./scripts/create_addon <addon name>?

    I've tried the following:

    Code
    ifeq ($(PROJECT),Generic)

    but it fails:

    Code
    package.mk: line 61: syntax error near unexpected token `$(PROJECT),Generic'

    I need to copy in an architecture specific binary at build time.

    Thanks,
    Shane