mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 0/3] Omap xloader boot menu support and beagle env
@ 2012-04-14 16:15 Jean-Christophe PLAGNIOL-VILLARD
  2012-04-14 16:17 ` [PATCH 1/3] beagle: add default env support Jean-Christophe PLAGNIOL-VILLARD
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-04-14 16:15 UTC (permalink / raw)
  To: barebox

Hi,

	The following patch seri add the support of a boot menu in the xloader

	This will allow to choice where we boot from.
	As example if the nand boot is broken we can choose to boot from mmc.
	The autoboot is set to 1s as most of the time you expect to boot from the
	default boot.

	As the xloader need to be really small to fit in the sram the boot menu allow
	to add user interaction.

	This pull request also include 
	menu: enable the fancy color support only if HUSH is enabled

	send previously

The following changes since commit c406f591292ccc2af583445c0a8b5f9ade0310e2:

  at91sam9260ek/9g20ek: udpate defconfig (2012-04-13 15:55:28 +0200)

are available in the git repository at:

  git://git.jcrosoft.org/barebox.git omap

for you to fetch changes up to 3687e2b6dbc2e7319c6abf8023f122f7e9ec8403:

  beagle/xload: update defconfig (2012-04-15 00:25:26 +0800)

----------------------------------------------------------------
Jean-Christophe PLAGNIOL-VILLARD (4):
      menu: enable the fancy color support only if HUSH is enabled
      beagle: add default env support
      beagle: add xloader boot menu support
      beagle/xload: update defconfig

 arch/arm/boards/beagle/env/config                |   39 ++++++++
 arch/arm/configs/omap3530_beagle_defconfig       |   16 +++-
 arch/arm/configs/omap3530_beagle_xload_defconfig |    2 +
 arch/arm/mach-omap/xload.c                       |  115 ++++++++++++++++++++-
 common/menu.c                                    |   21 +++-
 5 files changed, 177 insertions(+), 16 deletions(-)
 create mode 100644 arch/arm/boards/beagle/env/config

Best Regards,
J.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH 1/3] beagle: add default env support
  2012-04-14 16:15 [PATCH 0/3] Omap xloader boot menu support and beagle env Jean-Christophe PLAGNIOL-VILLARD
@ 2012-04-14 16:17 ` Jean-Christophe PLAGNIOL-VILLARD
  2012-04-14 17:52   ` Eric Bénard
  2012-04-14 16:17 ` [PATCH 2/3] beagle: add xloader boot menu support Jean-Christophe PLAGNIOL-VILLARD
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-04-14 16:17 UTC (permalink / raw)
  To: barebox

update defconfig too to support oftree

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 arch/arm/boards/beagle/env/config          |   39 ++++++++++++++++++++++++++++
 arch/arm/configs/omap3530_beagle_defconfig |   16 ++++++++---
 2 files changed, 51 insertions(+), 4 deletions(-)
 create mode 100644 arch/arm/boards/beagle/env/config

diff --git a/arch/arm/boards/beagle/env/config b/arch/arm/boards/beagle/env/config
new file mode 100644
index 0000000..927e96b
--- /dev/null
+++ b/arch/arm/boards/beagle/env/config
@@ -0,0 +1,39 @@
+#!/bin/sh
+
+# use 'dhcp' to do dhcp in barebox and in kernel
+# use 'none' if you want to skip kernel ip autoconfiguration
+ip=dhcp-barebox
+dhcp_vendor_id=barebox-beagle
+
+# or set your networking parameters here
+#eth0.ipaddr=a.b.c.d
+#eth0.netmask=a.b.c.d
+#eth0.gateway=a.b.c.d
+#eth0.serverip=a.b.c.d
+
+# can be either 'nfs', 'tftp' or 'nand'
+kernel_loc=nfs
+# can be either 'net', 'nand' or 'initrd'
+rootfs_loc=net
+# can be either 'nfs', 'tftp', 'nand' or empty
+oftree_loc=nfs
+
+# can be either 'jffs2' or 'ubifs'
+rootfs_type=ubifs
+rootfsimage=root.$rootfs_type
+
+kernelimage=zImage
+#kernelimage=uImage
+#kernelimage=Image
+#kernelimage=Image.lzo
+
+nand_device=omap2-nand
+nand_parts="128k(xload),256k(barebox)ro,128k(bareboxenv),128k(oftree),4M(kernel),120M(rootfs),-(data)"
+rootfs_mtdblock_nand=5
+
+autoboot_timeout=3
+
+bootargs="console=ttyO2,115200"
+
+# set a fancy prompt (if support is compiled in)
+PS1="\e[1;32mbarebox@\e[1;31m\h:\w\e[0m\n# "
diff --git a/arch/arm/configs/omap3530_beagle_defconfig b/arch/arm/configs/omap3530_beagle_defconfig
index 621bd49..1b0a163 100644
--- a/arch/arm/configs/omap3530_beagle_defconfig
+++ b/arch/arm/configs/omap3530_beagle_defconfig
@@ -2,32 +2,40 @@ CONFIG_ARCH_OMAP=y
 # CONFIG_OMAP3_COPY_CLOCK_SRAM is not set
 CONFIG_MACH_BEAGLE=y
 CONFIG_AEABI=y
+CONFIG_THUMB2_BAREBOX=y
 CONFIG_ARM_OPTIMZED_STRING_FUNCTIONS=y
 CONFIG_ARM_UNWIND=y
+CONFIG_MMU=y
 CONFIG_TEXT_BASE=0x81000000
+CONFIG_MALLOC_SIZE=0xa00000
 CONFIG_PROMPT="barebox> "
 CONFIG_LONGHELP=y
 CONFIG_GLOB=y
 CONFIG_HUSH_FANCY_PROMPT=y
-CONFIG_HUSH_GETOPT=y
 CONFIG_CMDLINE_EDITING=y
 CONFIG_AUTO_COMPLETE=y
 # CONFIG_TIMESTAMP is not set
-CONFIG_PARTITION=y
 CONFIG_DEFAULT_ENVIRONMENT_GENERIC=y
+CONFIG_DEFAULT_ENVIRONMENT_PATH="arch/arm/boards/beagle/env/"
 CONFIG_CMD_EDIT=y
 CONFIG_CMD_SLEEP=y
 CONFIG_CMD_SAVEENV=y
-CONFIG_CMD_LOADENV=y
 CONFIG_CMD_EXPORT=y
 CONFIG_CMD_PRINTENV=y
 CONFIG_CMD_READLINE=y
 CONFIG_CMD_ECHO_E=y
 CONFIG_CMD_LOADB=y
 CONFIG_CMD_FLASH=y
-# CONFIG_CMD_BOOTM is not set
+CONFIG_CMD_BOOTM_SHOW_TYPE=y
+CONFIG_CMD_BOOTM_VERBOSE=y
+CONFIG_CMD_BOOTM_INITRD=y
+CONFIG_CMD_BOOTM_OFTREE=y
+CONFIG_CMD_BOOTM_OFTREE_UIMAGE=y
+CONFIG_CMD_UIMAGE=y
+# CONFIG_CMD_BOOTU is not set
 CONFIG_CMD_RESET=y
 CONFIG_CMD_GO=y
+CONFIG_CMD_OFTREE=y
 CONFIG_CMD_TIMEOUT=y
 CONFIG_CMD_PARTITION=y
 CONFIG_CMD_GPIO=y
-- 
1.7.9.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH 2/3] beagle: add xloader boot menu support
  2012-04-14 16:15 [PATCH 0/3] Omap xloader boot menu support and beagle env Jean-Christophe PLAGNIOL-VILLARD
  2012-04-14 16:17 ` [PATCH 1/3] beagle: add default env support Jean-Christophe PLAGNIOL-VILLARD
@ 2012-04-14 16:17 ` Jean-Christophe PLAGNIOL-VILLARD
  2012-04-14 16:17 ` [PATCH 3/3] beagle/xload: update defconfig Jean-Christophe PLAGNIOL-VILLARD
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-04-14 16:17 UTC (permalink / raw)
  To: barebox

This will allow to choice where we boot from.
As example if the nand boot is broken we can choose to boot from mmc.
The autoboot is set to 1s as most of the time you expect to boot from the
default boot.

As the xloader need to be really small to fit in the sram the boot menu allow
to add user interaction.

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 arch/arm/mach-omap/xload.c |  115 +++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 109 insertions(+), 6 deletions(-)

diff --git a/arch/arm/mach-omap/xload.c b/arch/arm/mach-omap/xload.c
index 59f75e2..90bf05f 100644
--- a/arch/arm/mach-omap/xload.c
+++ b/arch/arm/mach-omap/xload.c
@@ -3,10 +3,12 @@
 #include <nand.h>
 #include <driver.h>
 #include <linux/mtd/mtd.h>
+#include <linux/err.h>
 #include <fs.h>
 #include <fcntl.h>
 #include <mach/xload.h>
 #include <sizes.h>
+#include <menu.h>
 
 void *omap_xload_boot_nand(int offset, int size)
 {
@@ -63,15 +65,11 @@ enum omap_boot_src omap_bootsrc(void)
 #endif
 }
 
-/*
- * Replaces the default shell in xload configuration
- */
-int run_shell(void)
+static void xload_boot(enum omap_boot_src mode)
 {
 	int (*func)(void) = NULL;
 
-	switch (omap_bootsrc())
-	{
+	switch (mode) {
 	case OMAP_BOOTSRC_MMC1:
 		printf("booting from MMC1\n");
 		func = omap_xload_boot_mmc();
@@ -94,3 +92,108 @@ int run_shell(void)
 
 	while (1);
 }
+
+#ifdef CONFIG_MENU
+struct action_entry {
+	enum omap_boot_src mode;
+	struct menu_entry entry;
+};
+
+static void menu_action_command(struct menu *m, struct menu_entry *me)
+{
+	struct action_entry *e = container_of(me, struct action_entry, entry);
+
+	xload_boot(e->mode);
+}
+
+static void menu_action_free(struct menu_entry *me)
+{
+	struct action_entry *e = container_of(me, struct action_entry, entry);
+
+	free(e->entry.display);
+
+	free(e);
+}
+
+static struct menu_entry *menu_add_boot_entry(struct menu *m, const char *display,
+					      enum omap_boot_src mode)
+{
+	struct action_entry *e = calloc(1, sizeof(*e));
+	int ret;
+
+	if (!e)
+		return NULL;
+
+	e->mode = mode;
+	e->entry.action = menu_action_command;
+	e->entry.free = menu_action_free;
+	e->entry.type = 0;
+	e->entry.display = strdup(display);
+
+	ret = menu_add_entry(m, &e->entry);
+	if (ret)
+		goto err_free;
+
+	return &e->entry;
+err_free:
+	menu_action_free(&e->entry);
+	return NULL;
+}
+
+int run_shell(void)
+{
+	struct menu *m;
+	struct menu_entry *mmc1, *nand;
+	int ret = -ENOMEM;
+	enum omap_boot_src mode = omap3_bootsrc();
+
+	m = menu_alloc();
+
+	if (!m)
+		goto boot;
+
+	m->name = strdup("boot");
+
+	if (!m->name)
+		goto boot;
+
+	ret = menu_add(m);
+	if (ret)
+		goto boot;
+
+	mmc1 = menu_add_boot_entry(m, "Boot from mmc1", OMAP_BOOTSRC_MMC1);
+	if (!mmc1)
+		goto boot;
+
+	nand = menu_add_boot_entry(m, "Boot from nand", OMAP_BOOTSRC_NAND);
+	if (!nand)
+		goto boot;
+
+	switch (mode)
+	{
+	case OMAP_BOOTSRC_MMC1:
+		menu_set_selected_entry(m, mmc1);
+		break;
+	case OMAP_BOOTSRC_UNKNOWN:
+	case OMAP_BOOTSRC_NAND:
+		menu_set_selected_entry(m, nand);
+		break;
+	}
+
+	menu_set_auto_select(m, 1);
+
+	menu_show(m);
+
+boot:
+	xload_boot(mode);
+
+	return 0;
+}
+#else
+int run_shell(void)
+{
+	xload_boot(omap_bootsrc());
+
+	return 0;
+}
+#endif
-- 
1.7.9.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH 3/3] beagle/xload: update defconfig
  2012-04-14 16:15 [PATCH 0/3] Omap xloader boot menu support and beagle env Jean-Christophe PLAGNIOL-VILLARD
  2012-04-14 16:17 ` [PATCH 1/3] beagle: add default env support Jean-Christophe PLAGNIOL-VILLARD
  2012-04-14 16:17 ` [PATCH 2/3] beagle: add xloader boot menu support Jean-Christophe PLAGNIOL-VILLARD
@ 2012-04-14 16:17 ` Jean-Christophe PLAGNIOL-VILLARD
  2012-04-14 20:16 ` [PATCH 0/3] Omap xloader boot menu support and beagle env Sascha Hauer
  2012-04-18 10:08 ` Sascha Hauer
  4 siblings, 0 replies; 9+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-04-14 16:17 UTC (permalink / raw)
  To: barebox

enable Thumb2 and menu support

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 arch/arm/configs/omap3530_beagle_xload_defconfig |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/arch/arm/configs/omap3530_beagle_xload_defconfig b/arch/arm/configs/omap3530_beagle_xload_defconfig
index d951b1c..8a1fe84 100644
--- a/arch/arm/configs/omap3530_beagle_xload_defconfig
+++ b/arch/arm/configs/omap3530_beagle_xload_defconfig
@@ -2,6 +2,7 @@ CONFIG_ARCH_OMAP=y
 CONFIG_OMAP_BUILD_IFT=y
 CONFIG_MACH_BEAGLE=y
 CONFIG_AEABI=y
+CONFIG_THUMB2_BAREBOX=y
 # CONFIG_CMD_ARM_CPUINFO is not set
 # CONFIG_ARM_EXCEPTIONS is not set
 CONFIG_TEXT_BASE=0x40200000
@@ -12,6 +13,7 @@ CONFIG_MALLOC_BASE=0x87BFFF10
 CONFIG_MALLOC_DUMMY=y
 CONFIG_PROMPT="X-load Beagle>"
 CONFIG_SHELL_NONE=y
+CONFIG_MENU=y
 # CONFIG_ERRNO_MESSAGES is not set
 # CONFIG_TIMESTAMP is not set
 # CONFIG_CONSOLE_FULL is not set
-- 
1.7.9.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/3] beagle: add default env support
  2012-04-14 16:17 ` [PATCH 1/3] beagle: add default env support Jean-Christophe PLAGNIOL-VILLARD
@ 2012-04-14 17:52   ` Eric Bénard
  2012-04-15  1:29     ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 1 reply; 9+ messages in thread
From: Eric Bénard @ 2012-04-14 17:52 UTC (permalink / raw)
  To: barebox

Le Sat, 14 Apr 2012 18:17:40 +0200,
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> a écrit :

> update defconfig too to support oftree
> 
.../...
> +# can be either 'nfs', 'tftp' or 'nand'
> +kernel_loc=nfs
> +# can be either 'net', 'nand' or 'initrd'
> +rootfs_loc=net
> +# can be either 'nfs', 'tftp', 'nand' or empty
> +oftree_loc=nfs
> +
I understand that NFS can be useful for development, but I think we
should have a default configuration for the "standard" way to use the
board. In the present case, this is booting from a SDCard and not from
NFS.

Eric

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 0/3] Omap xloader boot menu support and beagle env
  2012-04-14 16:15 [PATCH 0/3] Omap xloader boot menu support and beagle env Jean-Christophe PLAGNIOL-VILLARD
                   ` (2 preceding siblings ...)
  2012-04-14 16:17 ` [PATCH 3/3] beagle/xload: update defconfig Jean-Christophe PLAGNIOL-VILLARD
@ 2012-04-14 20:16 ` Sascha Hauer
  2012-04-15  1:39   ` Jean-Christophe PLAGNIOL-VILLARD
  2012-04-18 10:08 ` Sascha Hauer
  4 siblings, 1 reply; 9+ messages in thread
From: Sascha Hauer @ 2012-04-14 20:16 UTC (permalink / raw)
  To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox

On Sat, Apr 14, 2012 at 06:15:09PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Hi,
> 
> 	The following patch seri add the support of a boot menu in the xloader
> 
> 	This will allow to choice where we boot from.
> 	As example if the nand boot is broken we can choose to boot from mmc.
> 	The autoboot is set to 1s as most of the time you expect to boot from the
> 	default boot.

No, please no delays which can't be configured away.

Sascha


-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/3] beagle: add default env support
  2012-04-14 17:52   ` Eric Bénard
@ 2012-04-15  1:29     ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 9+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-04-15  1:29 UTC (permalink / raw)
  To: Eric Bénard; +Cc: barebox

On 19:52 Sat 14 Apr     , Eric Bénard wrote:
> Le Sat, 14 Apr 2012 18:17:40 +0200,
> Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> a écrit :
> 
> > update defconfig too to support oftree
> > 
> .../...
> > +# can be either 'nfs', 'tftp' or 'nand'
> > +kernel_loc=nfs
> > +# can be either 'net', 'nand' or 'initrd'
> > +rootfs_loc=net
> > +# can be either 'nfs', 'tftp', 'nand' or empty
> > +oftree_loc=nfs
> > +
> I understand that NFS can be useful for development, but I think we
> should have a default configuration for the "standard" way to use the
> board. In the present case, this is booting from a SDCard and not from
> NFS.
boot from SD card does not work barebox does not detect the SDCard on any
version

I try on via beagle c3
with 2GB and 8GB

where my loco deteect it both

Best Regards,
J.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 0/3] Omap xloader boot menu support and beagle env
  2012-04-14 20:16 ` [PATCH 0/3] Omap xloader boot menu support and beagle env Sascha Hauer
@ 2012-04-15  1:39   ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 9+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-04-15  1:39 UTC (permalink / raw)
  To: Sascha Hauer; +Cc: barebox

On 22:16 Sat 14 Apr     , Sascha Hauer wrote:
> On Sat, Apr 14, 2012 at 06:15:09PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > Hi,
> > 
> > 	The following patch seri add the support of a boot menu in the xloader
> > 
> > 	This will allow to choice where we boot from.
> > 	As example if the nand boot is broken we can choose to boot from mmc.
> > 	The autoboot is set to 1s as most of the time you expect to boot from the
> > 	default boot.
> 
> No, please no delays which can't be configured away.
with no delay the first entry is selected so minimal delay is 1s

The idea is that even you boot from nand you can load the code from MMC for
barebox

Best Rebards,
J.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 0/3] Omap xloader boot menu support and beagle env
  2012-04-14 16:15 [PATCH 0/3] Omap xloader boot menu support and beagle env Jean-Christophe PLAGNIOL-VILLARD
                   ` (3 preceding siblings ...)
  2012-04-14 20:16 ` [PATCH 0/3] Omap xloader boot menu support and beagle env Sascha Hauer
@ 2012-04-18 10:08 ` Sascha Hauer
  4 siblings, 0 replies; 9+ messages in thread
From: Sascha Hauer @ 2012-04-18 10:08 UTC (permalink / raw)
  To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox

On Sat, Apr 14, 2012 at 06:15:09PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Hi,
> 
> 	The following patch seri add the support of a boot menu in the xloader
> 
> 	This will allow to choice where we boot from.
> 	As example if the nand boot is broken we can choose to boot from mmc.
> 	The autoboot is set to 1s as most of the time you expect to boot from the
> 	default boot.
> 
> 	As the xloader need to be really small to fit in the sram the boot menu allow
> 	to add user interaction.
> 
> 	This pull request also include 
> 	menu: enable the fancy color support only if HUSH is enabled

Doesn't the Beagle board have a button which lets you decide whether you
want to boot from NAND or SD card? Then I don't see a reason to make
the first stage loader interactive. Adding a delay in the first stage
is not acceptable aswell, at least not without letting us the choice
whether we want to have it or not.

Sascha


-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2012-04-18 10:08 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-14 16:15 [PATCH 0/3] Omap xloader boot menu support and beagle env Jean-Christophe PLAGNIOL-VILLARD
2012-04-14 16:17 ` [PATCH 1/3] beagle: add default env support Jean-Christophe PLAGNIOL-VILLARD
2012-04-14 17:52   ` Eric Bénard
2012-04-15  1:29     ` Jean-Christophe PLAGNIOL-VILLARD
2012-04-14 16:17 ` [PATCH 2/3] beagle: add xloader boot menu support Jean-Christophe PLAGNIOL-VILLARD
2012-04-14 16:17 ` [PATCH 3/3] beagle/xload: update defconfig Jean-Christophe PLAGNIOL-VILLARD
2012-04-14 20:16 ` [PATCH 0/3] Omap xloader boot menu support and beagle env Sascha Hauer
2012-04-15  1:39   ` Jean-Christophe PLAGNIOL-VILLARD
2012-04-18 10:08 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox