From f2a25dd9b36fdc137c5a35f682a4898ecf433985 Mon Sep 17 00:00:00 2001 From: Drew Reed Date: Tue, 6 Jun 2023 14:08:29 +0000 Subject: [PATCH] bsp: Increase Corstone-1000 systemd device timeout The default systemd device timeout of 90s is not long enough to allow udev to populate the /dev/disk/by-uuid tree as the USB subsystem is very slow on the Corstone-1000 MPS3 boards so we increase this timeout to ensure it's created in time before the /boot partition is mounted. Changelog: bug Signed-off-by: Drew Reed --- .../meta-arm-bsp/recipes-core/systemd/corstone1000/system.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-cassini-bsp/meta-arm/meta-arm-bsp/recipes-core/systemd/corstone1000/system.conf b/meta-cassini-bsp/meta-arm/meta-arm-bsp/recipes-core/systemd/corstone1000/system.conf index 48c9395..77be1ac 100644 --- a/meta-cassini-bsp/meta-arm/meta-arm-bsp/recipes-core/systemd/corstone1000/system.conf +++ b/meta-cassini-bsp/meta-arm/meta-arm-bsp/recipes-core/systemd/corstone1000/system.conf @@ -6,3 +6,5 @@ [Manager] # Change DefaultTimeoutStartSec from 90s to 300s DefaultTimeoutStartSec = 300s +# Change DefaultDeviceTimeoutSec from 90s to 300s +DefaultDeviceTimeoutSec = 300s -- GitLab