diff options
| author | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-10 21:54:59 +0200 |
|---|---|---|
| committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-10 21:56:35 +0200 |
| commit | cc34519201278a4737fb12b551fce98740383ff5 (patch) | |
| tree | 1c91e50ae3b350638def00b07dd609679c6f7c09 | |
| parent | d9b89e8a43b9c92653d62dedc1bea8d37a4112a9 (diff) | |
| download | buildroot-cc34519201278a4737fb12b551fce98740383ff5.tar.gz buildroot-cc34519201278a4737fb12b551fce98740383ff5.zip | |
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 <bluemrp9@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| -rw-r--r-- | linux/linux.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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. |

