diff options
author | Stefan Roese <sr@denx.de> | 2013-12-04 09:27:35 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-12 14:54:21 -0500 |
commit | b36f457c1bc726f4452fdc55230a067c1704eaf8 (patch) | |
tree | 0b443056034263bc8da151474c9d49e04fba0563 /include | |
parent | a9f524904730a0f722483938bf7eb8baedbc2448 (diff) |
arm: omap3: Remove bootargs mem_size handling
The memory size is autodetected and is passed to the Linux kernel
either via ATAGs or device-tree (dtb). So there is no need to
pass it via the bootargs.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Tapani Utriainen <tapani@technexion.com>
Cc: Thorsten Eisbein <thorsten.eisbein@head-acoustics.de>
Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/tao3530.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/configs/tao3530.h b/include/configs/tao3530.h index fdc6c066da0..9abfe829022 100644 --- a/include/configs/tao3530.h +++ b/include/configs/tao3530.h @@ -146,21 +146,18 @@ "video_mode=omapdss.def_disp=lcd vram=6M omapfb.vram=0:2M,1:2M,2:2M\0" \ "lcd_mode=omapfb.mode=lcd:800x480@60 \0" \ "extra_options= \0" \ - "mem_size=mem=128M \0" \ "mmcdev=0\0" \ "mmcroot=/dev/mmcblk0p2 rw\0" \ "mmcrootfstype=ext3 rootwait\0" \ "nandroot=ubi0:rootfs ubi.mtd=4\0" \ "nandrootfstype=ubifs\0" \ "mmcargs=setenv bootargs console=${console} " \ - "${mem_size} " \ "mpurate=${mpurate} " \ "${video_mode} " \ "root=${mmcroot} " \ "rootfstype=${mmcrootfstype} " \ "${extra_options}\0" \ "nandargs=setenv bootargs console=${console} " \ - "${mem_size} " \ "mpurate=${mpurate} " \ "${video_mode} " \ "${network_setting} " \ |