diff options
author | Scott Murray <scott.murray@konsulko.com> | 2023-01-01 16:28:35 -0500 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-01-29 14:29:37 +0000 |
commit | c76683f4f8ecb50675d5fbc7f6745a4a8122b9b9 (patch) | |
tree | eec35c0c04c6a76d80c75e0e7cac16e36ae5eb10 /recipes-demo/flutter-homescreen/flutter-homescreen_git.bb | |
parent | d1d39f2d808b42c10b42faa016f99ac363dc5226 (diff) |
flutter-homescreen: Update SRCREV
Update SRCREV to pick up:
5ce59ba UI Fixes
3caff56 Improve app listing
4fbd3fd Add volume control to bottom panel
As well, add installation of a now required configuration .yaml file
to enable the KUKSA.val usage added by 8528b5b.
Bug-AGL: SPEC-4615, SPEC-4659
Change-Id: I38ac698472acd169e9f6c8e4becf28a98e37ad42
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'recipes-demo/flutter-homescreen/flutter-homescreen_git.bb')
-rw-r--r-- | recipes-demo/flutter-homescreen/flutter-homescreen_git.bb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/recipes-demo/flutter-homescreen/flutter-homescreen_git.bb b/recipes-demo/flutter-homescreen/flutter-homescreen_git.bb index 1f6f0188b..e97bded1c 100644 --- a/recipes-demo/flutter-homescreen/flutter-homescreen_git.bb +++ b/recipes-demo/flutter-homescreen/flutter-homescreen_git.bb @@ -11,8 +11,9 @@ SRC_URI = "git://gerrit.automotivelinux.org/gerrit/apps/flutter-homescreen;proto file://flutter-homescreen-profile.json \ file://flutter-homescreen-release.json \ file://flutter-homescreen.service \ + file://homescreen_config.yaml \ " -SRCREV = "e21709c9601209e26d09dea0a45e37f0636bb605" +SRCREV = "5ce59ba69f1451ec18c565b7b18301856553f574" S = "${WORKDIR}/git" @@ -33,6 +34,9 @@ do_install:append() { ln -s ../flutter-homescreen.service ${D}${systemd_user_unitdir}/agl-session.target.wants/flutter-homescreen.service install -D -m 0644 ${WORKDIR}/${APP_CONFIG} ${D}${datadir}/flutter/flutter-homescreen.json + + install -d ${D}${sysconfdir}/xdg/AGL + install -m 0644 ${WORKDIR}/homescreen_config.yaml ${D}${sysconfdir}/xdg/AGL/ } -FILES:${PN} += "${datadir} ${systemd_user_unitdir}" +FILES:${PN} += "${datadir} ${systemd_user_unitdir} ${sysconfdir}/xdg/AGL" |