From 1214b6d53f6305a5ea7d16dd73b19f083109eb7a Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 20 Feb 2025 14:25:16 +0100 Subject: [PATCH] mxgrub: Use single quotes for Linux command line (`KERNEL_PARAMETER`) Some Linux command line parameters use double quotes themselves, like: dyndbg="module e1000e +flmpt" Instead of having to change the outer quotes manually to single quotes, or quoting the quotes, use single quotes. --- mxgrub/mxgrub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mxgrub/mxgrub b/mxgrub/mxgrub index 3b36fa0..da540d6 100755 --- a/mxgrub/mxgrub +++ b/mxgrub/mxgrub @@ -240,7 +240,7 @@ sub scan_mariux { } } -our $KERNEL_PARAMETER="ro crashkernel=64G-:256M console=ttyS0,115200n8 console=tty0 init=/bin/systemd audit=0 random.trust_cpu=on systemd.unified_cgroup_hierarchy"; +our $KERNEL_PARAMETER='ro crashkernel=64G-:256M console=ttyS0,115200n8 console=tty0 init=/bin/systemd audit=0 random.trust_cpu=on systemd.unified_cgroup_hierarchy'; sub update_grub_cfg { my $kernellist='';