diff options
| author | Peter Kjellerstedt <pkj@axis.com> | 2025-10-08 21:52:17 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-10-13 18:01:03 +0100 |
| commit | edc81a05ba83f4e0b2ca42245993d04387fe2815 (patch) | |
| tree | a5c1ee314c81ff31529de915cd7af520770a0641 /meta/classes-recipe | |
| parent | 36840ba8deb8fb8ac8cd52afa0a9b22a5d3224ef (diff) | |
| download | poky-edc81a05ba83f4e0b2ca42245993d04387fe2815.tar.gz | |
core-image.bbclass: Tweak the descriptions of the image features
Some minor grammatical changes, and removal of some duplicate
information. Also note which features were previously part of the
debug-tweaks feature.
(From OE-Core rev: 377e6e7bc4be086c217f92db11f5c6101b52d88c)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe')
| -rw-r--r-- | meta/classes-recipe/core-image.bbclass | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/meta/classes-recipe/core-image.bbclass b/meta/classes-recipe/core-image.bbclass index 33a903d4e4..66b4cfeb3d 100644 --- a/meta/classes-recipe/core-image.bbclass +++ b/meta/classes-recipe/core-image.bbclass | |||
| @@ -4,16 +4,16 @@ | |||
| 4 | # | 4 | # |
| 5 | # SPDX-License-Identifier: MIT | 5 | # SPDX-License-Identifier: MIT |
| 6 | 6 | ||
| 7 | # IMAGE_FEATURES control content of the core reference images | 7 | # IMAGE_FEATURES control the content of the core reference images |
| 8 | # | 8 | # |
| 9 | # By default we install packagegroup-core-boot and packagegroup-base-extended packages; | 9 | # By default we install packagegroup-core-boot and packagegroup-base-extended packages; |
| 10 | # this gives us working (console only) rootfs. | 10 | # this gives us a working (console only) rootfs. |
| 11 | # | 11 | # |
| 12 | # Available IMAGE_FEATURES: | 12 | # Available IMAGE_FEATURES: |
| 13 | # | 13 | # |
| 14 | # These features install additional packages into the rootfs: | 14 | # These features install additional packages into the rootfs: |
| 15 | # - eclipse-debug - Eclipse remote debugging support | 15 | # - eclipse-debug - Eclipse remote debugging support |
| 16 | # - hwcodecs - Install hardware acceleration codecs | 16 | # - hwcodecs - hardware acceleration codecs (specified in MACHINE_HWCODECS) |
| 17 | # - nfs-client - NFS client | 17 | # - nfs-client - NFS client |
| 18 | # - nfs-server - NFS server | 18 | # - nfs-server - NFS server |
| 19 | # - package-management - installs package management tools and preserves the package manager database | 19 | # - package-management - installs package management tools and preserves the package manager database |
| @@ -30,11 +30,10 @@ | |||
| 30 | # - x11-sato - OpenedHand Sato environment | 30 | # - x11-sato - OpenedHand Sato environment |
| 31 | # | 31 | # |
| 32 | # These features install complementary packages for all installed packages in the rootfs: | 32 | # These features install complementary packages for all installed packages in the rootfs: |
| 33 | # - dbg-pkgs - debug symbol packages for all installed packages in the rootfs | 33 | # - dbg-pkgs - debug symbol packages |
| 34 | # - dev-pkgs - development packages (headers, etc.) for all installed packages in the rootfs | 34 | # - dev-pkgs - development packages (headers, etc.) |
| 35 | # - doc-pkgs - documentation packages for all installed packages in the rootfs | 35 | # - doc-pkgs - documentation packages |
| 36 | # - lic-pkgs - license packages for all installed pacakges in the rootfs, requires | 36 | # - lic-pkgs - license packages, requires LICENSE_CREATE_PACKAGE="1" to be set when building packages too |
| 37 | # LICENSE_CREATE_PACKAGE="1" to be set when building packages too | ||
| 38 | # - ptest-pkgs - ptest packages for all ptest-enabled recipes | 37 | # - ptest-pkgs - ptest packages for all ptest-enabled recipes |
| 39 | # | 38 | # |
| 40 | # These features install complementary development packages: | 39 | # These features install complementary development packages: |
| @@ -42,14 +41,14 @@ | |||
| 42 | # - zsh-completion-pkgs - zsh-completion packages | 41 | # - zsh-completion-pkgs - zsh-completion packages |
| 43 | # | 42 | # |
| 44 | # These features tweak the behavior of the rootfs: | 43 | # These features tweak the behavior of the rootfs: |
| 45 | # - read-only-rootfs - tweaks an image to support read-only rootfs | 44 | # - read-only-rootfs - tweaks an image to support a read-only rootfs |
| 46 | # - stateless-rootfs - systemctl-native not run, image populated by systemd at runtime | 45 | # - stateless-rootfs - systemctl-native is not run, image is populated by systemd at runtime |
| 47 | # | 46 | # |
| 48 | # These features are for development purposes (some were previously part of the debug-tweaks feature): | 47 | # These features are for development purposes (some were previously part of the debug-tweaks feature): |
| 49 | # - allow-empty-password - users can have an empty password | 48 | # - allow-empty-password - users can have an empty password (debug-tweaks) |
| 50 | # - allow-root-login - the root user can login | 49 | # - allow-root-login - the root user can login (debug-tweaks) |
| 51 | # - empty-root-password - the root user has no password set | 50 | # - empty-root-password - the root user has no password set (debug-tweaks) |
| 52 | # - post-install-logging - log the output of postinstall scriptlets | 51 | # - post-install-logging - log the output of postinstall scriptlets (debug-tweaks) |
| 53 | # - serial-autologin-root - with 'empty-root-password': autologin 'root' on the serial console | 52 | # - serial-autologin-root - with 'empty-root-password': autologin 'root' on the serial console |
| 54 | # | 53 | # |
| 55 | FEATURE_PACKAGES_eclipse-debug = "packagegroup-core-eclipse-debug" | 54 | FEATURE_PACKAGES_eclipse-debug = "packagegroup-core-eclipse-debug" |
