Hello, Can this patch also be backported to hardknott please ? BR, Hugo ________________________________ De : meta-arm@lists.yoctoproject.org de la part de Hugo L'Hostis via lists.yoctoproject.org Envoyé : mardi 21 septembre 2021 12:12 À : meta-arm@lists.yoctoproject.org Cc : nd Objet : [meta-arm] [PATCH] arm-bsp/n1sdp: remove debug and verbose kernel cmd line parameters from grub cfg By removing the verbose and debug kernel command line parameters from the grub menu entries we prevent the console printing unnecessary messages and slowing down the boot process. Issue-Id: SCM-3027 Signed-off-by: Hugo L'Hostis Change-Id: Ieb68c606b7ed5b20191f6989aea84963b8cda778 --- meta-arm-bsp/wic/n1sdp-grub.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-arm-bsp/wic/n1sdp-grub.cfg b/meta-arm-bsp/wic/n1sdp-grub.cfg index 12b77a0..7323ec7 100644 --- a/meta-arm-bsp/wic/n1sdp-grub.cfg +++ b/meta-arm-bsp/wic/n1sdp-grub.cfg @@ -4,15 +4,15 @@ set default="0" set timeout="5" menuentry 'Arm reference image boot on N1SDP (ACPI)' { - linux /Image earlycon=pl011,0x2A400000 console=ttyAMA0,115200 root=PARTUUID=6a60524d-061d-454a-bfd1-38989910eccd rootwait rootfstype=ext4 acpi=force verbose debug + linux /Image earlycon=pl011,0x2A400000 console=ttyAMA0,115200 root=PARTUUID=6a60524d-061d-454a-bfd1-38989910eccd rootwait rootfstype=ext4 acpi=force } menuentry 'Arm reference image boot on Single-Chip N1SDP (Device Tree)' { devicetree /n1sdp-single-chip.dtb - linux /Image earlycon=pl011,0x2A400000 console=ttyAMA0,115200 root=PARTUUID=6a60524d-061d-454a-bfd1-38989910eccd rootwait rootfstype=ext4 verbose debug + linux /Image earlycon=pl011,0x2A400000 console=ttyAMA0,115200 root=PARTUUID=6a60524d-061d-454a-bfd1-38989910eccd rootwait rootfstype=ext4 } menuentry 'Arm reference image boot on Multi-Chip N1SDP (Device Tree)' { devicetree /n1sdp-multi-chip.dtb - linux /Image earlycon=pl011,0x2A400000 console=ttyAMA0,115200 root=PARTUUID=6a60524d-061d-454a-bfd1-38989910eccd rootwait rootfstype=ext4 verbose debug + linux /Image earlycon=pl011,0x2A400000 console=ttyAMA0,115200 root=PARTUUID=6a60524d-061d-454a-bfd1-38989910eccd rootwait rootfstype=ext4 } -- 2.25.1