Commit 75bccd881a49d2da796ec0852158f957dc023f61

Authored by Gilles Espinasse
Committed by Sam Ravnborg
1 parent b925dbfe3c

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: Gilles Espinasse <g.esp@free.fr>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -1543,7 +1543,7 @@
1543 1543 cmd_depmod = \
1544 1544 if [ -r System.map -a -x $(DEPMOD) ]; then \
1545 1545 $(DEPMOD) -ae -F System.map \
1546   - $(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) -r) \
  1546 + $(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) ) \
1547 1547 $(KERNELRELEASE); \
1548 1548 fi
1549 1549