diff options
Diffstat (limited to 'components')
| -rwxr-xr-x | components/9990-initramfs-tools.sh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/components/9990-initramfs-tools.sh b/components/9990-initramfs-tools.sh index 5354134..210579d 100755 --- a/components/9990-initramfs-tools.sh +++ b/components/9990-initramfs-tools.sh @@ -25,7 +25,16 @@ maybe_break() } # Override panic from scripts/functions -panic() { +panic() +{ + for _PARAMETER in ${LIVE_BOOT_CMDLINE} + do + case "${_PARAMETER}" in + panic=*) + panic="${_PARAMETER#*verify-checksums=}" + ;; + esac + done DEB_1="\033[1;31m .''\`. \033[0m" DEB_2="\033[1;31m: :' : \033[0m" |
