Skip to content

Commit

Permalink
yocto-next: put config in the app itself recipe [1/1]
Browse files Browse the repository at this point in the history
PD#SWPL-169421

Problem:
support each app has its own configuration, and app
can get its own configuration to take corresponding
action

Solution:
appmgr parse all the configuration files in the defined
folder

Verify:
yocto-next app can work normally

Signed-off-by: xueling Li <[email protected]>
Change-Id: Ibadfaadd884d9cd29a0a70feb25bcf06f1a1d904
  • Loading branch information
xueling Li authored and Guofeng Tang committed May 30, 2024
1 parent 5132ff7 commit 3578f4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes-platform/aml-appmgr/aml-appmanager.bb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ do_install() {
cp -af ${WORKDIR}/build/libessosrmgr.so ${D}${libdir}
cp -af ${WORKDIR}/build/appmgr ${D}${bindir}
cp -af ${WORKDIR}/build/sample ${D}${bindir}
cp -af ${S}/app_list.txt ${D}/${sysconfdir}
install -d ${D}${sysconfdir}/app_list
cp -af ${S}/app_list.txt ${D}/${sysconfdir}/app_list/
install -d ${D}/etc/dbus-1/system.d
install -m 0644 ${S}/amlogic.yocto.appmgr.conf ${D}/etc/dbus-1/system.d/
}
Expand Down

0 comments on commit 3578f4f

Please sign in to comment.