diff options
author | José Bollo <jose.bollo@iot.bzh> | 2019-09-05 10:44:30 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-09-09 13:15:15 +0000 |
commit | 07904e35fa6e1a22a934ae6d93ba551dcaf5f230 (patch) | |
tree | 2f21c3654e152d72719d4661e286248fd1de5541 /meta-app-framework | |
parent | 69385a84f83e8876687023cfa117007314d00963 (diff) |
af-platform-setup: fix installation mode
The file systemd-udevd.service.d/udev-shared.conf was
installed with default rigths meaning rwxr-xr-x.
Systemd complains about it:
Configuration file /lib/systemd/system/systemd-udevd.service.d/udev-shared.conf
is marked executable. Please remove executable permission bits. Proceeding anyway.
This commit fix that issue.
Bug-AGL: SPEC-2798
Change-Id: I90a2b0f538416b5e8e6f8e1aaf552530150c8103
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'meta-app-framework')
-rw-r--r-- | meta-app-framework/recipes-core/af-platform-setup/af-platform-setup_1.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-app-framework/recipes-core/af-platform-setup/af-platform-setup_1.0.bb b/meta-app-framework/recipes-core/af-platform-setup/af-platform-setup_1.0.bb index 0963875d1..eb473cd14 100644 --- a/meta-app-framework/recipes-core/af-platform-setup/af-platform-setup_1.0.bb +++ b/meta-app-framework/recipes-core/af-platform-setup/af-platform-setup_1.0.bb @@ -10,7 +10,7 @@ S = "${WORKDIR}" do_install() { d=${D}${systemd_system_unitdir}/systemd-udevd.service.d install -d $d - install ${S}/udev-shared.conf $d + install -m 0644 ${S}/udev-shared.conf $d } FILES_${PN} = "${systemd_system_unitdir}" |