kbuild: doc: Update default INSTALL_MOD_DIR from extra to updates

The default INSTALL_MOD_DIR was changed from 'extra' to
'updates' in commit b74d7bb7ca24 ("kbuild: Modify default
INSTALL_MOD_DIR from extra to updates").

This commit updates the documentation to align with the
latest kernel.

Fixes: b74d7bb7ca24 ("kbuild: Modify default INSTALL_MOD_DIR from extra to updates")
Signed-off-by: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

authored by Mark-PK Tsai and committed by Masahiro Yamada 07d4cc2e 9cc5f3bf

+4 -4
+4 -4
Documentation/kbuild/modules.rst
··· 128 128 129 129 modules_install 130 130 Install the external module(s). The default location is 131 - /lib/modules/<kernel_release>/extra/, but a prefix may 131 + /lib/modules/<kernel_release>/updates/, but a prefix may 132 132 be added with INSTALL_MOD_PATH (discussed in section 5). 133 133 134 134 clean ··· 417 417 418 418 And external modules are installed in: 419 419 420 - /lib/modules/$(KERNELRELEASE)/extra/ 420 + /lib/modules/$(KERNELRELEASE)/updates/ 421 421 422 422 5.1 INSTALL_MOD_PATH 423 423 -------------------- ··· 438 438 ------------------- 439 439 440 440 External modules are by default installed to a directory under 441 - /lib/modules/$(KERNELRELEASE)/extra/, but you may wish to 441 + /lib/modules/$(KERNELRELEASE)/updates/, but you may wish to 442 442 locate modules for a specific functionality in a separate 443 443 directory. For this purpose, use INSTALL_MOD_DIR to specify an 444 - alternative name to "extra.":: 444 + alternative name to "updates.":: 445 445 446 446 $ make INSTALL_MOD_DIR=gandalf -C $KDIR \ 447 447 M=$PWD modules_install