diff options
author | Tom Rini | 2013-04-11 00:22:10 -0500 |
---|---|---|
committer | Tom Rini | 2013-05-10 07:25:55 -0500 |
commit | 85b7ac4588c3128e3702f7232b3fd46c7cd7cf43 (patch) | |
tree | e3e2a61b180120340c2bb11e313c9e5c91faa490 | |
parent | 2bcc785a1e8ffd3783c2116837fb4b4866a70cef (diff) | |
download | u-boot-85b7ac4588c3128e3702f7232b3fd46c7cd7cf43.tar.gz u-boot-85b7ac4588c3128e3702f7232b3fd46c7cd7cf43.tar.xz u-boot-85b7ac4588c3128e3702f7232b3fd46c7cd7cf43.zip |
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 <r.sricharan@ti.com>
Signed-off-by: Tom Rini <trini@ti.com>
-rw-r--r-- | include/configs/omap5_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 @@ | |||
150 | "usbtty=cdc_acm\0" \ | 150 | "usbtty=cdc_acm\0" \ |
151 | "vram=16M\0" \ | 151 | "vram=16M\0" \ |
152 | "partitions=" PARTS_DEFAULT "\0" \ | 152 | "partitions=" PARTS_DEFAULT "\0" \ |
153 | "optargs=\0" \ | ||
153 | "mmcdev=0\0" \ | 154 | "mmcdev=0\0" \ |
154 | "mmcroot=/dev/mmcblk0p2 rw\0" \ | 155 | "mmcroot=/dev/mmcblk0p2 rw\0" \ |
155 | "mmcrootfstype=ext4 rootwait\0" \ | 156 | "mmcrootfstype=ext4 rootwait\0" \ |
156 | "mmcargs=setenv bootargs console=${console} " \ | 157 | "mmcargs=setenv bootargs console=${console} " \ |
158 | "${optargs} " \ | ||
157 | "vram=${vram} " \ | 159 | "vram=${vram} " \ |
158 | "root=${mmcroot} " \ | 160 | "root=${mmcroot} " \ |
159 | "rootfstype=${mmcrootfstype}\0" \ | 161 | "rootfstype=${mmcrootfstype}\0" \ |