diff options
Diffstat (limited to 'include/configs/am335x_evm.h')
| -rw-r--r-- | include/configs/am335x_evm.h | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index 2f06ca2ea..f746e4854 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -100,6 +100,7 @@  	"loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \  	"importbootenv=echo Importing environment from mmc ...; " \  		"env import -t $loadaddr $filesize\0" \ +	"dfu_alt_info_ram=" DFU_ALT_INFO_RAM "\0" \  	"ramargs=setenv bootargs console=${console} " \  		"${optargs} " \  		"root=${ramroot} " \ @@ -170,7 +171,6 @@  	"run mmcboot;" \  	"setenv mmcdev 1; " \  	"setenv bootpart 1:2; " \ -	"setenv mmcroot /dev/mmcblk1p2 ro; " \  	"run mmcboot;" \  	"run nandboot;" @@ -327,6 +327,11 @@  	"kernel part 0 8;" \  	"rootfs part 0 9"  #endif +#define CONFIG_DFU_RAM +#define DFU_ALT_INFO_RAM \ +	"kernel ram 0x80200000 0xD80000;" \ +	"fdt ram 0x80F80000 0x80000;" \ +	"ramdisk ram 0x81000000 0x4000000"  /*   * Default to using SPI for environment, etc. |