Skip to content
Snippets Groups Projects
Commit 75bccd88 authored by Gilles Espinasse's avatar Gilles Espinasse Committed by Sam Ravnborg
Browse files

kbuild: remove unused -r option for module-init-tool depmod


Following a thread on busybox mailing list
depmod -r option is ignored by module-init-tools depmod
-r option break busybox depmod.

So the best solution look to remove -r from kernel Makefile

Signed-off-by: default avatarGilles Espinasse <g.esp@free.fr>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent b925dbfe
No related branches found
No related tags found
No related merge requests found
...@@ -1543,7 +1543,7 @@ quiet_cmd_depmod = DEPMOD $(KERNELRELEASE) ...@@ -1543,7 +1543,7 @@ quiet_cmd_depmod = DEPMOD $(KERNELRELEASE)
cmd_depmod = \ cmd_depmod = \
if [ -r System.map -a -x $(DEPMOD) ]; then \ if [ -r System.map -a -x $(DEPMOD) ]; then \
$(DEPMOD) -ae -F System.map \ $(DEPMOD) -ae -F System.map \
$(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) -r) \ $(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) ) \
$(KERNELRELEASE); \ $(KERNELRELEASE); \
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment