From cefd5af1bbe53bf1e1c507554d50d223e171e845 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Fri, 24 Nov 2023 09:07:40 -0500 Subject: [PATCH] flutter-ics-homescreen: disable bg animation For now, disable the background animation on all platforms except M3/H3 by passing the build time environment flag. This will be revisited to work out a runtime configuration scheme after the Quillback M1 release. Bug-AGL: SPEC-4984 Change-Id: I4938b0bb46fd04e36f4a006fb1fb4cef7f565896 Signed-off-by: Scott Murray Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/29473 Reviewed-by: Jan-Simon Moeller ci-image-build: Jenkins Job builder account ci-image-boot-test: Jenkins Job builder account Tested-by: Jenkins Job builder account --- recipes-demo/flutter-ics-homescreen/flutter-ics-homescreen_git.bb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/recipes-demo/flutter-ics-homescreen/flutter-ics-homescreen_git.bb b/recipes-demo/flutter-ics-homescreen/flutter-ics-homescreen_git.bb index 700754e35..ae897ff87 100644 --- a/recipes-demo/flutter-ics-homescreen/flutter-ics-homescreen_git.bb +++ b/recipes-demo/flutter-ics-homescreen/flutter-ics-homescreen_git.bb @@ -27,6 +27,11 @@ APP_CONFIG = "${BPN}.json" SYSTEMD_SERVICE:${PN} = "flutter-ics-homescreen.service" +# Disable the background animation on all platforms except the Renesas M3/H3 for now +DISABLE_BG_ANIMATION = "-DDISABLE_BKG_ANIMATION=true" +DISABLE_BG_ANIMATION:rcar-gen3 = "" +APP_AOT_EXTRA:append = " ${DISABLE_BG_ANIMATION}" + do_install:append() { install -D -m 0644 ${WORKDIR}/${BPN}.service ${D}${systemd_system_unitdir}/${BPN}.service -- 2.16.6