Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion files/Aboot/boot0.j2
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,12 @@ get_eeprom_value() {
write_kdump_cmdline() {
local sid="$(cmdline_get sid | sed 's/Ssd$//')"
case "$sid" in
Wolverine*|Clearwater2*|OtterLake*|QuartzDd*|Redstart8Mk2Quartz4*|CitrineDd*)
OtterLake*)
if ! cmdline_has crashkernel; then
cmdline_add crashkernel=1G,high
fi
;;
Wolverine*|Clearwater2*|QuartzDd*|Redstart8Mk2Quartz4*|CitrineDd*)
if ! cmdline_has crashkernel; then
cmdline_add crashkernel=0M-2G:256M,2G-4G:320M,4G-8G:384M,8G-16G:448M,16G-32G:768M,32G-:1G
fi
Expand Down
Loading