diff options
author | Mike Pagano <mpagano@gentoo.org> | 2021-06-18 14:26:04 -0400 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2021-06-18 14:26:04 -0400 |
commit | 3f4cf0d9984e3d8a5657082b260de31b75b61b4b (patch) | |
tree | 6b77e73a229db464785b97030608ae8c5a3fc30a /eclass/linux-info.eclass | |
parent | sys-kernel/gentoo-kernel-bin: Bump to 5.4.127 (diff) | |
download | gentoo-3f4cf0d9984e3d8a5657082b260de31b75b61b4b.tar.gz gentoo-3f4cf0d9984e3d8a5657082b260de31b75b61b4b.tar.bz2 gentoo-3f4cf0d9984e3d8a5657082b260de31b75b61b4b.zip |
eclass/linux-info: eclassdoc fixes. Mark variables correctly
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
Diffstat (limited to 'eclass/linux-info.eclass')
-rw-r--r-- | eclass/linux-info.eclass | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/eclass/linux-info.eclass b/eclass/linux-info.eclass index 861123e0e8b7..e2f2ad1b8885 100644 --- a/eclass/linux-info.eclass +++ b/eclass/linux-info.eclass @@ -76,43 +76,43 @@ KERNEL_DIR="${KERNEL_DIR:-${ROOT%/}/usr/src/linux}" # set by hand. These are as follows: # @ECLASS-VARIABLE: KV_FULL -# @INTERNAL +# @OUTPUT_VARIABLE # @DESCRIPTION: # A read-only variable. It's a string containing the full kernel version. ie: 2.6.9-gentoo-johnm-r1 # @ECLASS-VARIABLE: KV_MAJOR -# @INTERNAL +# @OUTPUT_VARIABLE # @DESCRIPTION: # A read-only variable. It's an integer containing the kernel major version. ie: 2 # @ECLASS-VARIABLE: KV_MINOR -# @INTERNAL +# @OUTPUT_VARIABLE # @DESCRIPTION: # A read-only variable. It's an integer containing the kernel minor version. ie: 6 # @ECLASS-VARIABLE: KV_PATCH -# @INTERNAL +# @OUTPUT_VARIABLE # @DESCRIPTION: # A read-only variable. It's an integer containing the kernel patch version. ie: 9 # @ECLASS-VARIABLE: KV_EXTRA -# @INTERNAL +# @OUTPUT_VARIABLE # @DESCRIPTION: # A read-only variable. It's a string containing the kernel EXTRAVERSION. ie: -gentoo # @ECLASS-VARIABLE: KV_LOCAL -# @INTERNAL +# @OUTPUT_VARIABLE # @DESCRIPTION: # A read-only variable. It's a string containing the kernel LOCALVERSION concatenation. ie: -johnm # @ECLASS-VARIABLE: KV_DIR -# @INTERNAL +# @OUTPUT_VARIABLE # @DESCRIPTION: # A read-only variable. It's a string containing the kernel source directory, will be null if # KERNEL_DIR is invalid. # @ECLASS-VARIABLE: KV_OUT_DIR -# @INTERNAL +# @OUTPUT_VARIABLE # @DESCRIPTION: # A read-only variable. It's a string containing the kernel object directory, will be KV_DIR unless # KBUILD_OUTPUT is used. This should be used for referencing .config. |