From fd0c8da6b5e49de88ed6d1f2e64706fa0d1fda4d Mon Sep 17 00:00:00 2001 From: Ton van Overbeek Date: Sun, 22 Oct 2017 16:03:49 +0200 Subject: [PATCH] Avoid eps-fuse crash on Raspbian-Stretch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On single core Pi versions without WiFi/Bluetooth hardware (Pi Zero, B2, B+, …) epd-fuse initialisation can fail due to a race condition between serial port and epd-fuse init. By waiting till after /dev/serial1 init (which times out on these Pi versions) we make sure epd-fuse init succeeds. --- PlatformWithOS/driver-common/epd-fuse.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PlatformWithOS/driver-common/epd-fuse.service b/PlatformWithOS/driver-common/epd-fuse.service index ed97411..343949d 100644 --- a/PlatformWithOS/driver-common/epd-fuse.service +++ b/PlatformWithOS/driver-common/epd-fuse.service @@ -1,6 +1,6 @@ [Unit] Description=A Fuse driver for the Repaper.org EPD -After=network.target +After=network.target dev-serial1.device [Service] Type=forking