diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-03-17 05:18:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-20 22:57:55 +0000 |
commit | 958af8fdc4ebec44a21cbdb6ca76351da7c6fdc0 (patch) | |
tree | 430a7744a03e45870a743ae606ab35cbe14f69ca | |
parent | ee60d562c7352fb5a595274490e7f377645aa650 (diff) | |
download | openembedded-core-958af8fdc4ebec44a21cbdb6ca76351da7c6fdc0.tar.gz openembedded-core-958af8fdc4ebec44a21cbdb6ca76351da7c6fdc0.tar.bz2 openembedded-core-958af8fdc4ebec44a21cbdb6ca76351da7c6fdc0.zip |
watchdog: Disable nfs on musl targets
Fixes build issue on musl where it needs to link to sunrpc
when enabling nfs
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-extended/watchdog/watchdog_5.14.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-extended/watchdog/watchdog_5.14.bb b/meta/recipes-extended/watchdog/watchdog_5.14.bb index fc717bc53d..7330238972 100644 --- a/meta/recipes-extended/watchdog/watchdog_5.14.bb +++ b/meta/recipes-extended/watchdog/watchdog_5.14.bb @@ -28,6 +28,7 @@ inherit update-rc.d DEPENDS_append_libc-musl = " libtirpc " CFLAGS_append_libc-musl = " -I${STAGING_INCDIR}/tirpc " LDFLAGS_append_libc-musl = " -ltirpc " +EXTRA_OECONF_append_libc-musl = " --disable-nfs " INITSCRIPT_NAME = "watchdog.sh" INITSCRIPT_PARAMS = "start 15 1 2 3 4 5 . stop 85 0 6 ." |