Kodi defaults to require authentication when the webserver is
enabled and as no password is set this results in an annoying
error box on fresh installations.
As neither disabling authentication or pre-setting a well known
password are great options just stop enabling the webserver via
appliance.xml. Users can enable it and choose authentication options
if they like via settings.
Signed-off-by: Matthias Reichl <hias@horus.com>
ARMv8.0-A cpus have an optional LSE feature. This is mandatory in
ARMv8.1-A. By default, gcc will attempt to build support for runtime
detection of the LSE feature on ARMv8.0-A. This causes build failures
when attempting to create a 64-bit userland.
Test packages for this failure include gdb and mesa. Errors manifest
as undefined references to "__aarch64_cas4_acq_rel" or
"__aarch64_swp4_acq_rel" at compile time.
Disable runtime detection to always use its fallback by adding
-mno-outline-atomics to cflags.
Signed-off-by: Ian Leonard <antonlacon@gmail.com>