diff options
| author | Michael Trimarchi <[email protected]> | 2022-05-22 15:22:08 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-06-06 18:01:21 -0400 |
| commit | 98303ce73d7a14b8019824e7c7912a223e4a6207 (patch) | |
| tree | 5dd55fb17ca8629dbde6c6c5c5671582e4e7406e /include/environment | |
| parent | e5e04eaa2f1cb4dc37a12551018a00a18cab19de (diff) | |
include/configs: Remove rootwait=1 to all the affected boards
rootwait=1 is not a valid kernel boot parameters. According
to the documenation is only rootwait
rootwait [KNL] Wait (indefinitely) for root device to show up.
Useful for devices that are detected asynchronously
(e.g. USB and MMC devices).
Fix:
Unknown kernel command line parameters "rootwait=1", will be passed to user space.
Signed-off-by: Michael Trimarchi <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
Diffstat (limited to 'include/environment')
| -rw-r--r-- | include/environment/ti/nand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/environment/ti/nand.h b/include/environment/ti/nand.h index 11dcefcc41c..7d00afa2b10 100644 --- a/include/environment/ti/nand.h +++ b/include/environment/ti/nand.h @@ -14,7 +14,7 @@ "root=${nandroot} " \ "rootfstype=${nandrootfstype}\0" \ "nandroot=ubi0:rootfs rw ubi.mtd=NAND.file-system,2048\0" \ - "nandrootfstype=ubifs rootwait=1\0" \ + "nandrootfstype=ubifs rootwait\0" \ "nandboot=echo Booting from nand ...; " \ "run nandargs; " \ "nand read ${fdtaddr} NAND.u-boot-spl-os; " \ |
