diff options
| author | Evan Wilson <evan@oliodevices.com> | 2014-05-09 14:19:16 -0700 |
|---|---|---|
| committer | Evan Wilson <evan@oliodevices.com> | 2014-05-09 14:19:16 -0700 |
| commit | 9c7060977eff67b7c068a1ac5e49f75d85b124fe (patch) | |
| tree | 1b551cf190f1f8974a8a5a5eb67cf88ed38956b5 /include/configs | |
| parent | c2f08a4bcc2aba9c9e13f85214feb17a6c83b1d8 (diff) | |
| download | olio-uboot-2014.01-9c7060977eff67b7c068a1ac5e49f75d85b124fe.tar.xz olio-uboot-2014.01-9c7060977eff67b7c068a1ac5e49f75d85b124fe.zip | |
Updated pinmux and boot commands
Diffstat (limited to 'include/configs')
| -rw-r--r-- | include/configs/omap3_h1.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/include/configs/omap3_h1.h b/include/configs/omap3_h1.h index 7ca70e725..d367093d1 100644 --- a/include/configs/omap3_h1.h +++ b/include/configs/omap3_h1.h @@ -159,7 +159,7 @@ "mmcrootfstype=ext3 rootwait\0" \ "nandroot=ubi0:rootfs ubi.mtd=4\0" \ "nandrootfstype=ubifs\0" \ - "ramroot=/dev/ram0 rw ramdisk_size=65536 initrd=0x81000000,64M\0" \ + "ramroot=/dev/ram0 rw ramdisk_size=8192 initrd=0x81000000,8M\0" \ "ramrootfstype=ext2\0" \ "nandargs=setenv bootargs console=${console} " \ "${optargs} " \ @@ -183,13 +183,24 @@ "rootfstype=${ramrootfstype}\0" \ "nandboot=echo Booting from nand ...; " \ "run nandargs; " \ - "nand read ${loadaddr} 280000 400000; " \ + "nand read ${loadaddr} 280000 A00000; " \ "bootm ${loadaddr}\0" \ "ramboot=echo Booting from ramdisk ...; " \ "run ramargs; " \ + "bootm ${loadaddr}\0" \ + "h1args=setenv bootargs console=${console} " \ + "androidboot.console=ttyO2 " \ + "${optargs} " \ + "mpurate=${mpurate} " \ + "vram=${vram} " \ + "omapfb.mode=dvi:${dvimode} " \ + "omapfb.vram=0:6M,0:6M " \ + "omapdss.def_disp=${defaultdisplay}\0" \ + "h1boot=run h1args; " \ + "nand read ${loadaddr} 280000 A00000; " \ "bootm ${loadaddr}\0" #define CONFIG_BOOTCOMMAND \ - "run nandboot;" + "run h1boot;" #define CONFIG_AUTO_COMPLETE 1 /* |