Skip to content

Commit 75bccd8

Browse files
Gilles Espinassesravnborg
authored andcommitted
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>
1 parent b925dbf commit 75bccd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1543,7 +1543,7 @@ quiet_cmd_depmod = DEPMOD $(KERNELRELEASE)
15431543
cmd_depmod = \
15441544
if [ -r System.map -a -x $(DEPMOD) ]; then \
15451545
$(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) ) \
15471547
$(KERNELRELEASE); \
15481548
fi
15491549

0 commit comments

Comments
 (0)