Build error LE90 Fedora 28

  • Make Error:139

    (segment fault)

    It is in http://LibreELEC.tv/packages/sysutils/busybox/package.mk:180

    ROOT_PWD="`$TOOLCHAIN/bin/cryptpw -m sha512 $ROOT_PASSWORD`"

    cryptpw needs glibc and use dist's glibc.

    Better link static:

    diff --git a/packages/sysutils/busybox/package.mk b/packages/sysutils/busybox/package.mk

    index 63d519ed9..1abfb8b7e 100644

    --- a/packages/sysutils/busybox/package.mk

    +++ b/packages/sysutils/busybox/package.mk

    @@ -76,6 +76,8 @@ configure_host() {

    # set install dir

    sed -i -e "s|^CONFIG_PREFIX=.*$|CONFIG_PREFIX=\"$PKG_BUILD/.install_host\"|" .config

    + LDFLAGS="$LDFLAGS -static"

    +

    make oldconfig

    }

    • Official Post

    Please provide FULL details of your commands and what you are trying to achieve.

    If possible - try on Ubuntu 16.04 and see if it works.