From: Arne Fitzenreiter Date: Wed, 2 May 2018 09:38:23 +0000 (+0200) Subject: u-boot: remove useless rootwait double X-Git-Tag: v2.21-core122~178^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a06f9daf20acece8080c7024e01b39d4b2a21b7b;p=ipfire-2.x.git u-boot: remove useless rootwait double Signed-off-by: Arne Fitzenreiter --- diff --git a/config/u-boot/boot.cmd b/config/u-boot/boot.cmd index e8ee59a088..d740e756e6 100644 --- a/config/u-boot/boot.cmd +++ b/config/u-boot/boot.cmd @@ -44,10 +44,10 @@ if test "${SERIAL-CONSOLE}" = "ON"; then fi; fi echo Set console to ${console}; - setenv bootargs console=${console} rootwait root=${root_dev} rootwait; + setenv bootargs console=${console} root=${root_dev} rootwait; else echo Set console to tty1 ; - setenv bootargs console=tty1 rootwait root=${root_dev} rootwait; + setenv bootargs console=tty1 root=${root_dev} rootwait; fi; setenv fdt_high ffffffff; diff --git a/config/u-boot/boot.scr b/config/u-boot/boot.scr index c08443beb9..d9a1dbbc92 100644 Binary files a/config/u-boot/boot.scr and b/config/u-boot/boot.scr differ