From: Eric Le Bihan Date: Thu, 3 Jul 2014 16:57:36 +0000 (+0200) Subject: systemd: fix path for kmod in service files X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=64b38f03a705fdbb40f0cf0186bbe38d611d1e10;p=buildroot.git systemd: fix path for kmod in service files The path for kmod used in kmod-static-nodes.service is the one found by the ./configure script, which ends up being the path to the host kmod program. This patch forces the path to the target kmod program. Signed-off-by: Eric Le Bihan Signed-off-by: Thomas Petazzoni --- diff --git a/package/systemd/systemd.mk b/package/systemd/systemd.mk index 95e72148f8..f7fbf79a54 100644 --- a/package/systemd/systemd.mk +++ b/package/systemd/systemd.mk @@ -50,6 +50,10 @@ SYSTEMD_CONF_OPT += \ --disable-dbus \ --without-python +# Override path to kmod, used in kmod-static-nodes.service +SYSTEMD_CONF_ENV = \ + ac_cv_path_KMOD=/usr/bin/kmod + ifeq ($(BR2_PACKAGE_SYSTEMD_COMPAT),y) SYSTEMD_CONF_OPT += --enable-compat-libs else