| Message ID | 20260204145930.2170462-2-adam.duskett@amarulasolutions.com |
|---|---|
| State | Accepted |
| Headers | show |
| Series | [v3,1/2] libtsm: upgrade 4.4.0 -> 4.4.2 | expand |
On Wed, Feb 4, 2026 at 10:59 PM Adam Duskett via lists.openembedded.org <adam.duskett=amarulasolutions.com@lists.openembedded.org> wrote: > > - Remove upstreamed patch (commit ID: a1fc510a) > > - backspace_sends_delete is now a runtime option as > of commit 0d6d85a8b865cac17529d049ae9a561db782ac59 > > - The kmscon.conf file in the source is renamed to kms.conf.example > To keep the same behavior as the previous versions, kms.conf.example > is moved to ${sysconfdir}/kmscon/kmscon.conf before running sed. > > - The render-engine config option has been removed as of commit > 59eef2a154f78101195ad8ff08376e2418e773f0. > > Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com> > --- > .../kmscon/{kmscon_9.2.1.bb => kmscon_9.3.1.bb} | 10 +++------- > 1 file changed, 3 insertions(+), 7 deletions(-) > rename meta-oe/recipes-graphics/kmscon/{kmscon_9.2.1.bb => kmscon_9.3.1.bb} (85%) > > diff --git a/meta-oe/recipes-graphics/kmscon/kmscon_9.2.1.bb b/meta-oe/recipes-graphics/kmscon/kmscon_9.3.1.bb > similarity index 85% > rename from meta-oe/recipes-graphics/kmscon/kmscon_9.2.1.bb > rename to meta-oe/recipes-graphics/kmscon/kmscon_9.3.1.bb > index 508f24c58e..4e27ba218a 100644 > --- a/meta-oe/recipes-graphics/kmscon/kmscon_9.2.1.bb > +++ b/meta-oe/recipes-graphics/kmscon/kmscon_9.3.1.bb > @@ -19,17 +19,13 @@ DEPENDS = "\ > udev \ > " > > -SRC_URI = "\ > - git://github.com/kmscon/kmscon;branch=main;protocol=https \ > - file://0001-kmscon_conf.c-Fix-llvm-compilation-failure.patch \ This file itself should be removed as well. Thanks, Anuj
diff --git a/meta-oe/recipes-graphics/kmscon/kmscon_9.2.1.bb b/meta-oe/recipes-graphics/kmscon/kmscon_9.3.1.bb similarity index 85% rename from meta-oe/recipes-graphics/kmscon/kmscon_9.2.1.bb rename to meta-oe/recipes-graphics/kmscon/kmscon_9.3.1.bb index 508f24c58e..4e27ba218a 100644 --- a/meta-oe/recipes-graphics/kmscon/kmscon_9.2.1.bb +++ b/meta-oe/recipes-graphics/kmscon/kmscon_9.3.1.bb @@ -19,17 +19,13 @@ DEPENDS = "\ udev \ " -SRC_URI = "\ - git://github.com/kmscon/kmscon;branch=main;protocol=https \ - file://0001-kmscon_conf.c-Fix-llvm-compilation-failure.patch \ -" -SRCREV = "7d46650dbb0826f9b89de42f879be879391c14fd" +SRC_URI = "git://github.com/kmscon/kmscon;protocol=https;branch=main;tag=v${PV}" +SRCREV = "e44ff728e51c5a38b56392abe9bc3e8306db86cc" inherit meson pkgconfig systemd PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'opengl', d)}" -PACKAGECONFIG[backspace_sends_delete] = "-Dbackspace_sends_delete=true, -Dbackspace_sends_delete=false" PACKAGECONFIG[font_pango] = "-Dfont_pango=enabled, -Dfont_pango=disabled, pango" PACKAGECONFIG[multi_seat] = "-Dmulti_seat=enabled, -Dmulti_seat=disabled, systemd" PACKAGECONFIG[opengl] = "-Drenderer_gltex=enabled -Dvideo_drm3d=enabled, -Drenderer_gltex=disabled -Dvideo_drm3d=disabled, libdrm virtual/egl virtual/libgles2 virtual/libgbm" @@ -61,9 +57,9 @@ do_install:append() { fi if ${@bb.utils.contains('PACKAGECONFIG', 'opengl', 'true', 'false', d)}; then + mv ${D}${sysconfdir}/kmscon/kmscon.conf.example ${D}${sysconfdir}/kmscon/kmscon.conf sed -e "s@#drm@drm@g" \ -e "s@#hwaccel@hwaccel@g" \ - -e "s@#render-engine=gltex@render-engine=gltex@g" \ -i ${D}${sysconfdir}/kmscon/kmscon.conf fi }
- Remove upstreamed patch (commit ID: a1fc510a) - backspace_sends_delete is now a runtime option as of commit 0d6d85a8b865cac17529d049ae9a561db782ac59 - The kmscon.conf file in the source is renamed to kms.conf.example To keep the same behavior as the previous versions, kms.conf.example is moved to ${sysconfdir}/kmscon/kmscon.conf before running sed. - The render-engine config option has been removed as of commit 59eef2a154f78101195ad8ff08376e2418e773f0. Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com> --- .../kmscon/{kmscon_9.2.1.bb => kmscon_9.3.1.bb} | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) rename meta-oe/recipes-graphics/kmscon/{kmscon_9.2.1.bb => kmscon_9.3.1.bb} (85%)