[U-Boot-Users] 8610: Add diufb=15M to default kernel command lines

In order for the Freescale MPC8610 HPCD Linux kernel to boot with the DIU framebuffer driver, the parameter "diu=15M" must be passed on the kernel command line. This patch adds that to the default U-Boot environment variable set.
Signed-off-by: Timur Tabi timur@freescale.com --- include/configs/MPC8610HPCD.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/include/configs/MPC8610HPCD.h b/include/configs/MPC8610HPCD.h index 9fa42f3..ab0f7cf 100644 --- a/include/configs/MPC8610HPCD.h +++ b/include/configs/MPC8610HPCD.h @@ -621,7 +621,7 @@ "diuregs=md e002c000 1d\0" \ "dium=mw e002c01c\0" \ "diuerr=md e002c014 1\0" \ - "othbootargs=debug\0" \ + "othbootargs=diufb=15M debug\0" \ "pmregs=md e00e1000 2b\0" \ "lawregs=md e0000c08 4b\0" \ "lbcregs=md e0005000 36\0" \ @@ -637,6 +637,7 @@ "netdev=eth0\0" \ "uboot=" MK_STR(CONFIG_UBOOTPATH) "\0" \ "consoledev=ttyS0\0" \ + "othbootargs=diufb=15M\0" \ "ramdiskaddr=2000000\0" \ "ramdiskfile=8610hpcd/ramdisk.uboot\0" \ "dtbaddr=c00000\0" \
participants (1)
-
Timur Tabi