We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b226453 + 32bb2e5 commit c0762aaCopy full SHA for c0762aa
1 file changed
initrd/etc/gui_functions
@@ -6,8 +6,8 @@
6
# continue with automatic boot, nonzero if user interrupted.
7
pause_automatic_boot()
8
{
9
- if IFS= read -t "$CONFIG_AUTO_BOOT_TIMEOUT" -s -n 1 -p \
10
- "Automatic boot in $CONFIG_AUTO_BOOT_TIMEOUT seconds unless interrupted by keypress... "; then
+ if IFS= read -t "$CONFIG_AUTO_BOOT_TIMEOUT" -s -n 1 -r -p \
+ $'Automatic boot in '"$CONFIG_AUTO_BOOT_TIMEOUT"$' seconds unless interrupted by keypress...\n'; then
11
return 1 # Interrupt automatic boot
12
fi
13
return 0 # Continue with automatic boot
0 commit comments