From: Gustavo Zacarias Date: Wed, 9 Mar 2016 23:46:35 +0000 (-0300) Subject: boot/grub2: add rootwait to default config X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9284b4aa396adb5d0093d9e67fc1033decdd72d8;p=buildroot.git boot/grub2: add rootwait to default config It doesn't hurt, and is useful for removable boot media like a pendrive that may depend on usb enumeration and isn't available immediately. Signed-off-by: Gustavo Zacarias Reviewed-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/boot/grub2/grub.cfg b/boot/grub2/grub.cfg index c8abbd3447..bd3e3f0006 100644 --- a/boot/grub2/grub.cfg +++ b/boot/grub2/grub.cfg @@ -2,5 +2,5 @@ set default="0" set timeout="5" menuentry "Buildroot" { - linux /boot/bzImage root=/dev/sda1 console=tty1 + linux /boot/bzImage root=/dev/sda1 rootwait console=tty1 }