From: Peter Korsgaard Date: Tue, 10 Sep 2013 19:54:59 +0000 (+0200) Subject: linux: fix depmod location after move to host-kmod X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cc34519201278a4737fb12b551fce98740383ff5;p=buildroot.git linux: fix depmod location after move to host-kmod The host-kmod version of depmod gets installed into HOST_DIR/sbin, so adjust the path we use to refer to it in linux.mk Reported-by: Ryan Coe Signed-off-by: Peter Korsgaard --- diff --git a/linux/linux.mk b/linux/linux.mk index 8508a54242..649d06b6d3 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -47,7 +47,7 @@ LINUX_MAKE_FLAGS = \ ARCH=$(KERNEL_ARCH) \ INSTALL_MOD_PATH=$(TARGET_DIR) \ CROSS_COMPILE="$(CCACHE) $(TARGET_CROSS)" \ - DEPMOD=$(HOST_DIR)/usr/sbin/depmod + DEPMOD=$(HOST_DIR)/sbin/depmod # Get the real Linux version, which tells us where kernel modules are # going to be installed in the target filesystem.