diff options
author | Repository mirror & CI <repomirrorci@gentoo.org> | 2021-06-18 18:35:18 +0000 |
---|---|---|
committer | Repository mirror & CI <repomirrorci@gentoo.org> | 2021-06-18 18:35:18 +0000 |
commit | b0a8e098077f5fcd558eab76846942227ce74471 (patch) | |
tree | 74b04b2d3120c4b19b7a215e0a08397cc235fde4 | |
parent | 2021-06-18 18:20:21 UTC (diff) | |
parent | eclass/linux-info: eclassdoc fixes. Mark variables correctly (diff) | |
download | gentoo-b0a8e098077f5fcd558eab76846942227ce74471.tar.gz gentoo-b0a8e098077f5fcd558eab76846942227ce74471.tar.bz2 gentoo-b0a8e098077f5fcd558eab76846942227ce74471.zip |
Merge updates from master
-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. |