32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
|
From 756b069dca4ea54265dade3028e2bddca3b90266 Mon Sep 17 00:00:00 2001
|
||
|
From: Thomas Renninger <trenn@suse.de>
|
||
|
Date: Wed, 23 Jul 2014 15:34:00 +0200
|
||
|
Subject: 99base: Increase initqueue timeout in non systemd case
|
||
|
|
||
|
In case of systemd is used the timeout already is set to 180s, compare
|
||
|
with file: modules.d/98systemd/dracut-initqueue.sh
|
||
|
|
||
|
Do the same if systemd is not used, e.g. in kdump case.
|
||
|
|
||
|
Signed-off-by: Thomas Renninger <trenn@suse.de>
|
||
|
---
|
||
|
modules.d/99base/init.sh | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/modules.d/99base/init.sh b/modules.d/99base/init.sh
|
||
|
index a1232eb..a8ea054 100755
|
||
|
--- a/modules.d/99base/init.sh
|
||
|
+++ b/modules.d/99base/init.sh
|
||
|
@@ -155,7 +155,7 @@ make_trace_mem "hook initqueue" '1:shortmem' '2+:mem' '3+:slab'
|
||
|
getarg 'rd.break=initqueue' -d 'rdbreak=initqueue' && emergency_shell -n initqueue "Break before initqueue"
|
||
|
|
||
|
RDRETRY=$(getarg rd.retry -d 'rd_retry=')
|
||
|
-RDRETRY=${RDRETRY:-30}
|
||
|
+RDRETRY=${RDRETRY:-180}
|
||
|
RDRETRY=$(($RDRETRY*2))
|
||
|
export RDRETRY
|
||
|
main_loop=0
|
||
|
--
|
||
|
1.8.4.5
|
||
|
|