On Tue, Jun 06, 2023 at 06:03:20PM -0500, Randolph Sapp via lists.yoctoproject.org wrote: > From: Randolph Sapp <[email protected]> > > SYSTEMD_DEFAULT_TARGET is dynamically set based on the contents of > IMAGE_FEATURES. Would you like to know what doesn't get updated when we > use a bunch of package groups to dictate what is present in the image? > > This makes systemd actually start graphical applications if the opengl > distro feature is set. It assumes the distro is using weston though. I'm
Why check for "opengl" and not "wayland" in DISTRO_FEATURES? > sure that will eventually be invalid when the package group contents > drift. > > Signed-off-by: Randolph Sapp <[email protected]> > --- > meta-arago-distro/recipes-core/images/arago-image.inc | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/meta-arago-distro/recipes-core/images/arago-image.inc > b/meta-arago-distro/recipes-core/images/arago-image.inc > index d00c1f70..7104d87c 100644 > --- a/meta-arago-distro/recipes-core/images/arago-image.inc > +++ b/meta-arago-distro/recipes-core/images/arago-image.inc > @@ -6,6 +6,11 @@ COMPATIBLE_MACHINE = "ti-soc" > > IMAGE_FEATURES += "package-management splash" > > +# this is required to make sure the proper systemd default target gets set > +IMAGE_FEATURES += " \ > + ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'weston', '',d)} \ > +" > + > # 4KB per 1 inode should be enough > EXTRA_IMAGECMD:ext2.gz += "-i 4096" > > -- > 2.40.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14512): https://lists.yoctoproject.org/g/meta-arago/message/14512 Mute This Topic: https://lists.yoctoproject.org/mt/99374354/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/leave/10763299/21656/89520264/xyzzy [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
