Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Documentation: kernel-hacking: Convert internal links

Convert internal cross-references in "Putting Your Stuff in the kernel"
section from inline code to internal links.

Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20251223035254.22894-4-bagasdotme@gmail.com>

authored by

Bagas Sanjaya and committed by
Jonathan Corbet
bb51cf4f 2b79aafb

+3 -3
+3 -3
Documentation/kernel-hacking/hacking.rst
··· 736 736 - Usually you want a configuration option for your kernel hack. Edit 737 737 ``Kconfig`` in the appropriate directory. The Config language is 738 738 simple to use by cut and paste, and there's complete documentation in 739 - ``Documentation/kbuild/kconfig-language.rst``. 739 + Documentation/kbuild/kconfig-language.rst. 740 740 741 741 In your description of the option, make sure you address both the 742 742 expert user and the user who knows nothing about your feature. ··· 746 746 747 747 - Edit the ``Makefile``: the CONFIG variables are exported here so you 748 748 can usually just add a "obj-$(CONFIG_xxx) += xxx.o" line. The syntax 749 - is documented in ``Documentation/kbuild/makefiles.rst``. 749 + is documented in Documentation/kbuild/makefiles.rst. 750 750 751 751 - Put yourself in ``CREDITS`` if you consider what you've done 752 752 noteworthy, usually beyond a single file (your name should be at the ··· 755 755 it implies a more-than-passing commitment to some part of the code. 756 756 757 757 - Finally, don't forget to read 758 - ``Documentation/process/submitting-patches.rst`` 758 + Documentation/process/submitting-patches.rst. 759 759 760 760 Kernel Cantrips 761 761 ===============