[U-Boot] [PATCH 01/13] BeagleBoard: config: load kernel from MMC ext, not FAT

From: Koen Kooi koen@dominion.thruhere.net
Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index a494f99..038fb5b 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -231,7 +231,8 @@ "loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \ "importbootenv=echo Importing environment from mmc ...; " \ "env import -t $loadaddr $filesize\0" \ - "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \ + "loaduimagefat=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \ + "loaduimage=ext2load mmc ${mmcdev}:2 ${loadaddr} /boot/uImage\0" \ "mmcboot=echo Booting from mmc ...; " \ "run mmcargs; " \ "bootm ${loadaddr}\0" \

Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 038fb5b..6e66100 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -200,7 +200,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \ - "console=ttyS2,115200n8\0" \ + "console=ttyO2,115200n8\0" \ "mpurate=auto\0" \ "buddy=none "\ "vram=12M\0" \

On Mon, Aug 15, 2011 at 7:47 PM, Joel A Fernandes agnel.joel@gmail.com wrote:
Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com
include/configs/omap3_beagle.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 038fb5b..6e66100 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -200,7 +200,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \
- "console=ttyS2,115200n8\0" \
- "console=ttyO2,115200n8\0" \
"mpurate=auto\0" \ "buddy=none "\ "vram=12M\0" \
Any status on this patch? It doesn't seem to have made it into v2011.09
FWIW:
Tested-by: Steve Sakoman steve@sakoman.com
Steve

Hi Joel, Steve, Sandeep,
Le 30/09/2011 21:14, Steve Sakoman a écrit :
On Mon, Aug 15, 2011 at 7:47 PM, Joel A Fernandesagnel.joel@gmail.com wrote:
Signed-off-by: Koen Kooikoen@dominion.thruhere.net Signed-off-by: Joel A Fernandesagnel.joel@gmail.com
include/configs/omap3_beagle.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 038fb5b..6e66100 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -200,7 +200,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \
"console=ttyS2,115200n8\0" \
"console=ttyO2,115200n8\0" \ "mpurate=auto\0" \ "buddy=none "\ "vram=12M\0" \
Any status on this patch? It doesn't seem to have made it into v2011.09
FWIW:
Tested-by: Steve Sakomansteve@sakoman.com
Hmm... This patch is awaiting upstream, delegated to Sandeep, but the latest u-boot-ti pull request did not contain it.
Sandeep, it this patch in your tree?
Steve
Amicalement,

Hi Joel, Steve, Sandeep,
Le 30/09/2011 21:14, Steve Sakoman a écrit :
On Mon, Aug 15, 2011 at 7:47 PM, Joel A Fernandesagnel.joel@gmail.com
wrote:
Signed-off-by: Koen Kooikoen@dominion.thruhere.net Signed-off-by: Joel A Fernandesagnel.joel@gmail.com
include/configs/omap3_beagle.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/configs/omap3_beagle.h
b/include/configs/omap3_beagle.h
index 038fb5b..6e66100 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -200,7 +200,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \
"console=ttyS2,115200n8\0" \
"console=ttyO2,115200n8\0" \ "mpurate=auto\0" \ "buddy=none "\ "vram=12M\0" \
Any status on this patch? It doesn't seem to have made it into v2011.09
FWIW:
Tested-by: Steve Sakomansteve@sakoman.com
Hmm... This patch is awaiting upstream, delegated to Sandeep, but the latest u-boot-ti pull request did not contain it.
Sandeep, it this patch in your tree?
Working on my next pull request.
I should be in a position to send my next pull request this weekend.
Regards, Sandeep

Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 6e66100..78d0aa2 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -200,6 +200,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \ + "usbethaddr=de:ad:be:ef\0" \ "console=ttyO2,115200n8\0" \ "mpurate=auto\0" \ "buddy=none "\

Dear Joel A Fernandes,
In message 1313462834-4008-3-git-send-email-agnel.joel@gmail.com you wrote:
Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com
include/configs/omap3_beagle.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 6e66100..78d0aa2 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -200,6 +200,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \
- "usbethaddr=de:ad:be:ef\0" \
NAK.
We don;'t allow any static network configurations in the board config files, and especially not if they contain bogus data.
Best regards,
Wolfgang Denk

Dear Sandeep & Albert,
In message 20110822220245.E99A911F9E74@gemini.denx.de I wrote:
Dear Joel A Fernandes,
In message 1313462834-4008-3-git-send-email-agnel.joel@gmail.com you wrote:
Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com
include/configs/omap3_beagle.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 6e66100..78d0aa2 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -200,6 +200,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \
- "usbethaddr=de:ad:be:ef\0" \
NAK.
We don;'t allow any static network configurations in the board config files, and especially not if they contain bogus data.
I see this patch is already maked as "Awaiting Upstream" in Patchwork. Please make sure NOT to include it in any pull requests.
Thanks.
Best regards,
Wolfgang Denk

+u-boot@lists.denx.de
On Mon, Aug 22, 2011 at 5:08 PM, Wolfgang Denk wd@denx.de wrote:
Dear Sandeep & Albert,
In message 20110822220245.E99A911F9E74@gemini.denx.de I wrote:
Dear Joel A Fernandes,
In message 1313462834-4008-3-git-send-email-agnel.joel@gmail.com you wrote:
Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com
include/configs/omap3_beagle.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 6e66100..78d0aa2 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -200,6 +200,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \
- "usbethaddr=de:ad:be:ef\0" \
NAK.
We don;'t allow any static network configurations in the board config files, and especially not if they contain bogus data.
I see this patch is already maked as "Awaiting Upstream" in Patchwork. Please make sure NOT to include it in any pull requests.
Hi Wolfgang,
I will mark this patch as NAK in patchwork.
thanks, Joel

I see this patch is already maked as "Awaiting Upstream" in Patchwork. Please make sure NOT to include it in any pull requests.
Wolfgang,
I am sure i didn't change the state of this patch to "Awaiting Upstream".
Regards, Sandeep

(Adding my U-Boot address)
Le 23/08/2011 04:05, Paulraj, Sandeep a écrit :
I see this patch is already maked as "Awaiting Upstream" in Patchwork. Please make sure NOT to include it in any pull requests.
Wolfgang,
I am sure i didn't change the state of this patch to "Awaiting Upstream".
I am quite sure I didn't either -- actually, I've been using "Accepted" for patches that I accept in u-boot-arm, instead of "Awaiting upstream" -- should I use the latter?
Anyway, this one is not in my repo at all, and not in Sandeep's as I have it as a remote and up-to-date.
Regards, Sandeep
Amicalement,

Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 78d0aa2..263e478 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -201,6 +201,7 @@ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \ "usbethaddr=de:ad:be:ef\0" \ + "bootfile=uImage.beagle\0" \ "console=ttyO2,115200n8\0" \ "mpurate=auto\0" \ "buddy=none "\

From: Koen Kooi koen@dominion.thruhere.net
Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 263e478..36ccd4e 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -195,7 +195,7 @@ /* partition */
/* Environment information */ -#define CONFIG_BOOTDELAY 10 +#define CONFIG_BOOTDELAY 2
#define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \

From: Koen Kooi koen@dominion.thruhere.net
Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 36ccd4e..722dfc3 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -129,6 +129,10 @@ #define CONFIG_CMD_USB #define CONFIG_USB_EHCI #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3 +#define CONFIG_USB_HOST_ETHER +#define CONFIG_USB_ETHER_SMSC95XX + +#define CONFIG_NET_MULTI
/* commands to include */ #include <config_cmd_default.h> @@ -149,13 +153,15 @@ #define CONFIG_USB_STORAGE /* USB storage support */ #define CONFIG_CMD_NAND /* NAND support */ #define CONFIG_CMD_LED /* LED support */ +#define CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */ +#define CONFIG_CMD_NFS /* NFS support */ +#define CONFIG_CMD_PING +
#undef CONFIG_CMD_FLASH /* flinfo, erase, protect */ #undef CONFIG_CMD_FPGA /* FPGA configuration Support */ #undef CONFIG_CMD_IMI /* iminfo */ #undef CONFIG_CMD_IMLS /* List all found images */ -#undef CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */ -#undef CONFIG_CMD_NFS /* NFS support */
#define CONFIG_SYS_NO_FLASH #define CONFIG_HARD_I2C 1

From: Koen Kooi koen@dominion.thruhere.net
Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 722dfc3..0bfbfc1 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -131,6 +131,7 @@ #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3 #define CONFIG_USB_HOST_ETHER #define CONFIG_USB_ETHER_SMSC95XX +#define CONFIG_USB_ETHER_ASIX
#define CONFIG_NET_MULTI
@@ -156,7 +157,7 @@ #define CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */ #define CONFIG_CMD_NFS /* NFS support */ #define CONFIG_CMD_PING - +#define CONFIG_CMD_DHCP
#undef CONFIG_CMD_FLASH /* flinfo, erase, protect */ #undef CONFIG_CMD_FPGA /* FPGA configuration Support */

From: Koen Kooi koen@dominion.thruhere.net
Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 0bfbfc1..9fc65f7 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -172,6 +172,7 @@ #define CONFIG_SYS_I2C_BUS_SELECT 1 #define CONFIG_I2C_MULTI_BUS 1 #define CONFIG_DRIVER_OMAP34XX_I2C 1 +#define CONFIG_VIDEO_OMAP3 /* DSS Support */
/* * TWL4030

From: Jason Kridner jkridner@beagleboard.org
Utilize the alternate mtest and define a valid region.
Signed-off-by: Jason Kridner jkridner@beagleboard.org Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 9fc65f7..c2d0078 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -287,10 +287,11 @@ /* Boot Argument Buffer Size */ #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
-#define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) /* memtest */ - /* works on */ -#define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \ - 0x01F00000) /* 31MB */ +#define CONFIG_SYS_ALT_MEMTEST 1 +#define CONFIG_SYS_MEMTEST_START (0x82000000) /* memtest */ + /* defaults */ +#define CONFIG_SYS_MEMTEST_END (0x87FFFFFF) /* 128MB */ +#define CONFIG_SYS_MEMTEST_SCRATCH (0x81000000) /* dummy address */
#define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default */ /* load address */

From: Jason Kridner jkridner@beagleboard.org
Enable the expression evaluator.
Signed-off-by: Jason Kridner jkridner@beagleboard.org Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index c2d0078..ae509d0 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -158,6 +158,7 @@ #define CONFIG_CMD_NFS /* NFS support */ #define CONFIG_CMD_PING #define CONFIG_CMD_DHCP +#define CONFIG_CMD_SETEXPR /* Evaluate expressions */
#undef CONFIG_CMD_FLASH /* flinfo, erase, protect */ #undef CONFIG_CMD_FPGA /* FPGA configuration Support */ @@ -279,11 +280,11 @@ #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */ #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " #define CONFIG_SYS_PROMPT "OMAP3 beagleboard.org # " -#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ +#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */ /* Print Buffer Size */ #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ sizeof(CONFIG_SYS_PROMPT) + 16) -#define CONFIG_SYS_MAXARGS 16 /* max number of command args */ +#define CONFIG_SYS_MAXARGS 32 /* max number of command args */ /* Boot Argument Buffer Size */ #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)

From: Jason Kridner jkridner@beagleboard.org
buddy and camera are used to configure peripherals in the kernel at boot time that cannot easily be detected by the kernel.
Signed-off-by: Jason Kridner jkridner@beagleboard.org Signed-off-by: Koen Kooi koen@dominion.thruhere.net Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index ae509d0..6038c91 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -214,6 +214,8 @@ "console=ttyO2,115200n8\0" \ "mpurate=auto\0" \ "buddy=none "\ + "optargs=\0" \ + "camera=none\0" \ "vram=12M\0" \ "dvimode=1024x768MR-16@60\0" \ "defaultdisplay=dvi\0" \ @@ -223,16 +225,20 @@ "nandroot=/dev/mtdblock4 rw\0" \ "nandrootfstype=jffs2\0" \ "mmcargs=setenv bootargs console=${console} " \ + "${optargs} " \ "mpurate=${mpurate} " \ "buddy=${buddy} "\ + "camera=${camera} "\ "vram=${vram} " \ "omapfb.mode=dvi:${dvimode} " \ "omapdss.def_disp=${defaultdisplay} " \ "root=${mmcroot} " \ "rootfstype=${mmcrootfstype}\0" \ "nandargs=setenv bootargs console=${console} " \ + "${optargs} " \ "mpurate=${mpurate} " \ "buddy=${buddy} "\ + "camera=${camera} "\ "vram=${vram} " \ "omapfb.mode=dvi:${dvimode} " \ "omapdss.def_disp=${defaultdisplay} " \

From: Jason Kridner jkridner@beagleboard.org
Signed-off-by: Jason Kridner jkridner@beagleboard.org Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 6038c91..85bd0da 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -115,6 +115,12 @@ /* DDR - I use Micron DDR */ #define CONFIG_OMAP3_MICRON_DDR 1
+/* Enable Multi Bus support for I2C */ +#define CONFIG_I2C_MULTI_BUS 1 + +/* Probe all devices */ +#define CONFIG_SYS_I2C_NOPROBES {0x0, 0x0} + /* USB */ #define CONFIG_MUSB_UDC 1 #define CONFIG_USB_OMAP3 1

From: Jason Kridner jkridner@beagleboard.org
* Improved boot env var setting * Made room for a 64MB ramdisk by moving from 0x81600000 to 0x81000000 * Added ramarg, ramroot and ramboot env variables
Signed-off-by: Jason Kridner jkridner@beagleboard.org Signed-off-by: Joel A Fernandes agnel.joel@gmail.com --- include/configs/omap3_beagle.h | 20 ++++++++++++++++++-- 1 files changed, 18 insertions(+), 2 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 85bd0da..42975b1 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -213,7 +213,8 @@ #define CONFIG_BOOTDELAY 2
#define CONFIG_EXTRA_ENV_SETTINGS \ - "loadaddr=0x82000000\0" \ + "loadaddr=0x80200000\0" \ + "rdaddr=0x81000000\0" \ "usbtty=cdc_acm\0" \ "usbethaddr=de:ad:be:ef\0" \ "bootfile=uImage.beagle\0" \ @@ -223,13 +224,15 @@ "optargs=\0" \ "camera=none\0" \ "vram=12M\0" \ - "dvimode=1024x768MR-16@60\0" \ + "dvimode=640x480MR-16@60\0" \ "defaultdisplay=dvi\0" \ "mmcdev=0\0" \ "mmcroot=/dev/mmcblk0p2 rw\0" \ "mmcrootfstype=ext3 rootwait\0" \ "nandroot=/dev/mtdblock4 rw\0" \ "nandrootfstype=jffs2\0" \ + "ramroot=/dev/ram0 rw ramdisk_size=65536 initrd=0x81000000,64M\0" \ + "ramrootfstype=ext2\0" \ "mmcargs=setenv bootargs console=${console} " \ "${optargs} " \ "mpurate=${mpurate} " \ @@ -254,6 +257,16 @@ "loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \ "importbootenv=echo Importing environment from mmc ...; " \ "env import -t $loadaddr $filesize\0" \ + "ramargs=setenv bootargs console=${console} " \ + "${optargs} " \ + "mpurate=${mpurate} " \ + "buddy=${buddy} "\ + "vram=${vram} " \ + "omapfb.mode=dvi:${dvimode} " \ + "omapdss.def_disp=${defaultdisplay} " \ + "root=${ramroot} " \ + "rootfstype=${ramrootfstype}\0" \ + "loadramdisk=fatload mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \ "loaduimagefat=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \ "loaduimage=ext2load mmc ${mmcdev}:2 ${loadaddr} /boot/uImage\0" \ "mmcboot=echo Booting from mmc ...; " \ @@ -263,6 +276,9 @@ "run nandargs; " \ "nand read ${loadaddr} 280000 400000; " \ "bootm ${loadaddr}\0" \ + "ramboot=echo Booting from ramdisk ...; " \ + "run ramargs; " \ + "bootm ${loadaddr}\0" \
#define CONFIG_BOOTCOMMAND \ "if mmc rescan ${mmcdev}; then " \
participants (6)
-
Albert ARIBAUD
-
Albert ARIBAUD
-
Joel A Fernandes
-
Paulraj, Sandeep
-
Steve Sakoman
-
Wolfgang Denk