Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1543,7 +1543,7 @@ quiet_cmd_depmod = DEPMOD $(KERNELRELEASE)
      cmd_depmod = \
	if [ -r System.map -a -x $(DEPMOD) ]; then                              \
		$(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);                                               \
	fi