From: Tom Rini Date: Thu, 11 Apr 2013 05:22:10 +0000 (+0000) Subject: omap5_common: Add optargs variable for kernel command line args X-Git-Tag: v2013.07-rc1~83^2~15 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=85b7ac4588c3128e3702f7232b3fd46c7cd7cf43;p=oweals%2Fu-boot.git omap5_common: Add optargs variable for kernel command line args Add 'optargs' variable to be set to additional kernel arguments, similar to omap3*/am3* usage. Cc: Sricharan R Signed-off-by: Tom Rini --- diff --git a/include/configs/omap5_common.h b/include/configs/omap5_common.h index c21c387cba..7528f4c0b1 100644 --- a/include/configs/omap5_common.h +++ b/include/configs/omap5_common.h @@ -150,10 +150,12 @@ "usbtty=cdc_acm\0" \ "vram=16M\0" \ "partitions=" PARTS_DEFAULT "\0" \ + "optargs=\0" \ "mmcdev=0\0" \ "mmcroot=/dev/mmcblk0p2 rw\0" \ "mmcrootfstype=ext4 rootwait\0" \ "mmcargs=setenv bootargs console=${console} " \ + "${optargs} " \ "vram=${vram} " \ "root=${mmcroot} " \ "rootfstype=${mmcrootfstype}\0" \