Commit 15b498bbdf0b6c5e3e1e8aff0e57a95c1783cb1e

Authored by Lokesh Vutla
1 parent 19ac1a8346

ARM: OMAP5+: configs: Fix default boot command

The default boot command searches for dofastboot varaiable
and does a fastboot if it is set to 1.
But the condition "if test ${dofastboot} -eq 1" always
returns true if dofastboot is not defined and breaking mmc boot.
So make dofastboot as 0 by default and let the runtime
environment set it if fastboot is required.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

include/configs/ti_omap5_common.h
... ... @@ -142,6 +142,7 @@
142 142 "vram=16M\0" \
143 143 "partitions=" PARTS_DEFAULT "\0" \
144 144 "optargs=\0" \
  145 + "dofastboot=0\0" \
145 146 "mmcdev=0\0" \
146 147 "mmcroot=/dev/mmcblk0p2 rw\0" \
147 148 "mmcrootfstype=ext4 rootwait\0" \