From cc34519201278a4737fb12b551fce98740383ff5 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Tue, 10 Sep 2013 21:54:59 +0200 Subject: [PATCH] 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 --- linux/linux.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.30.2