From 4f4d57274b16d19df31dac61bda2a29c3b50b3e4 Mon Sep 17 00:00:00 2001 From: Alex Van Damme Date: Fri, 12 Jan 2018 13:05:48 -0800 Subject: [PATCH] Ignore return code of alsa-init (b/69693153) - alsa-init service fails to start without a sound card: update the ExecStart line of the service to ignore the return code. Change-Id: Iba92e6996b6c2e093580b4e111c9cdc813648801 --- systemd/alsa-init.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemd/alsa-init.service b/systemd/alsa-init.service index 5d87326d..0841d7c3 100644 --- a/systemd/alsa-init.service +++ b/systemd/alsa-init.service @@ -10,7 +10,7 @@ After=local-fs.target sysinit.target [Service] Type=oneshot -ExecStart=/usr/bin/aplay -q -d 1 -c 1 -t raw -f S32_LE /dev/zero +ExecStart=-/usr/bin/aplay -q -d 1 -c 1 -t raw -f S32_LE /dev/zero [Install] WantedBy=basic.target