configs: am57x: Increase the CB_SIZE to 2KB for AM57x
The u-boot environment variable emmc_android_boot total size increased to more than 1KB. U-boot hangs when the emmc_android_boot variable is reused in the u-boot prompt as the maximum size of the u-boot command line buffer is 1KB. Increase the CB_SIZE to 2KB for AM57x SoC family Signed-off-by: Sinthu Raja <sinthu.raja@ti.com>
This commit is contained in:
parent
8c121e6e3c
commit
304eea858a
|
|
@ -19,6 +19,7 @@ CONFIG_AHCI=y
|
|||
CONFIG_SPL_LOAD_FIT=y
|
||||
CONFIG_OF_BOARD_SETUP=y
|
||||
CONFIG_DISTRO_DEFAULTS=y
|
||||
CONFIG_SYS_CBSIZE=2048
|
||||
CONFIG_USE_BOOTARGS=y
|
||||
CONFIG_BOOTARGS="androidboot.serialno=${serial#} console=ttyS2,115200 androidboot.console=ttyS2 androidboot.hardware=beagle_x15board"
|
||||
CONFIG_BOOTCOMMAND="if test ${dofastboot} -eq 1; then echo Boot fastboot requested, resetting dofastboot ...;setenv dofastboot 0; saveenv;echo Booting into fastboot ...; fastboot 1;fi;if test ${boot_fit} -eq 1; then run update_to_fit;fi;run findfdt; run finduuid; run distro_bootcmd;run emmc_android_boot; "
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ CONFIG_AHCI=y
|
|||
CONFIG_SPL_LOAD_FIT=y
|
||||
CONFIG_OF_BOARD_SETUP=y
|
||||
CONFIG_DISTRO_DEFAULTS=y
|
||||
CONFIG_SYS_CBSIZE=2048
|
||||
CONFIG_USE_BOOTARGS=y
|
||||
CONFIG_BOOTARGS="androidboot.serialno=${serial#} console=ttyS2,115200 androidboot.console=ttyS2 androidboot.hardware=beagle_x15board"
|
||||
CONFIG_BOOTCOMMAND="if test ${dofastboot} -eq 1; then echo Boot fastboot requested, resetting dofastboot ...;setenv dofastboot 0; saveenv;echo Booting into fastboot ...; fastboot 1;fi;if test ${boot_fit} -eq 1; then run update_to_fit;fi;run findfdt; run finduuid; run distro_bootcmd;run emmc_android_boot; "
|
||||
|
|
|
|||
Loading…
Reference in New Issue