summaryrefslogtreecommitdiff
path: root/boot/grub2
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2016-03-09 20:46:35 -0300
committerPeter Korsgaard <peter@korsgaard.com>2016-03-10 22:21:35 +0100
commit9284b4aa396adb5d0093d9e67fc1033decdd72d8 (patch)
tree32ccd1efed41e32c59e6baf15f1508ea7775eb56 /boot/grub2
parent078708ba8d24c6a3c4053af194337dad84a3b905 (diff)
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 <gustavo@zacarias.com.ar> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'boot/grub2')
-rw-r--r--boot/grub2/grub.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/grub2/grub.cfg b/boot/grub2/grub.cfg
index c8abbd344..bd3e3f000 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
}