From 6107312f03e07d979d4e0811cf54daa2ac2bfde6 Mon Sep 17 00:00:00 2001 From: Javier Viguera Date: Mon, 16 Sep 2024 18:58:15 +0200 Subject: [PATCH] bluetooth-init: fix systemd service syntax According to systemd manual, "After" setting expects a space-separated list. Fix the wrong comma-separated list to prevent the following boot failure: bluetooth-init.service:4: Failed to add dependency on systemd-udev-settle.service,bluetooth.service, ignoring: Invalid argument Signed-off-by: Javier Viguera --- .../bluez/bluez5-init/ccimx9/bluetooth-init.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-digi-dey/recipes-connectivity/bluez/bluez5-init/ccimx9/bluetooth-init.service b/meta-digi-dey/recipes-connectivity/bluez/bluez5-init/ccimx9/bluetooth-init.service index 80e0d1f7a..cc1b54a0f 100644 --- a/meta-digi-dey/recipes-connectivity/bluez/bluez5-init/ccimx9/bluetooth-init.service +++ b/meta-digi-dey/recipes-connectivity/bluez/bluez5-init/ccimx9/bluetooth-init.service @@ -1,7 +1,7 @@ [Unit] Description=Initialization of the IW612 bluetooth chip ConditionPathIsDirectory=/proc/device-tree/bluetooth -After=systemd-udev-settle.service,bluetooth.service +After=systemd-udev-settle.service bluetooth.service [Service] Type=oneshot