All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot]  [PATCH 0/2] Enable raw initrd support for TI boards
@ 2014-11-03 13:26 Guillaume GARDET
  2014-11-03 13:26 ` [U-Boot] [PATCH 1/2] ARM: TI: Enable raw initrd support Guillaume GARDET
  2014-11-03 13:26 ` [U-Boot] [PATCH 2/2] ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h Guillaume GARDET
  0 siblings, 2 replies; 7+ messages in thread
From: Guillaume GARDET @ 2014-11-03 13:26 UTC (permalink / raw
  To: u-boot

Enable raw initrd support for TI boards. 
Build tested with ./MAKEALL -v ti
Runtime tested on a Pandaboard (rev. A3) and on a Beagleboard xM (rev. B).

---
Guillaume GARDET (2):
  ARM: TI: Enable raw initrd support
  ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config
    file     since it is now in ti_armv7_common.h

 include/configs/omap3_igep00x0.h  | 2 --
 include/configs/ti_armv7_common.h | 1 +
 2 files changed, 1 insertion(+), 2 deletions(-)

-- 
1.8.4.5

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

* [U-Boot]  [PATCH 1/2] ARM: TI: Enable raw initrd support
  2014-11-03 13:26 [U-Boot] [PATCH 0/2] Enable raw initrd support for TI boards Guillaume GARDET
@ 2014-11-03 13:26 ` Guillaume GARDET
  2014-11-04 16:45   ` Tom Rini
  2014-11-05 21:32   ` [U-Boot] [U-Boot,1/2] " Tom Rini
  2014-11-03 13:26 ` [U-Boot] [PATCH 2/2] ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h Guillaume GARDET
  1 sibling, 2 replies; 7+ messages in thread
From: Guillaume GARDET @ 2014-11-03 13:26 UTC (permalink / raw
  To: u-boot

Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
Cc: Tom Rini <trini@ti.com>

---
 include/configs/ti_armv7_common.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h
index 85171db..7d07bcd 100644
--- a/include/configs/ti_armv7_common.h
+++ b/include/configs/ti_armv7_common.h
@@ -174,6 +174,7 @@
 #define CONFIG_CMD_ASKENV
 #define CONFIG_CMD_ECHO
 #define CONFIG_CMD_BOOTZ
+#define CONFIG_SUPPORT_RAW_INITRD
 
 /*
  * Common filesystems support.  When we have removable storage we
-- 
1.8.4.5

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

* [U-Boot] [PATCH 2/2] ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h
  2014-11-03 13:26 [U-Boot] [PATCH 0/2] Enable raw initrd support for TI boards Guillaume GARDET
  2014-11-03 13:26 ` [U-Boot] [PATCH 1/2] ARM: TI: Enable raw initrd support Guillaume GARDET
@ 2014-11-03 13:26 ` Guillaume GARDET
  2014-11-04 16:46   ` Tom Rini
  2014-11-05 21:32   ` [U-Boot] [U-Boot, " Tom Rini
  1 sibling, 2 replies; 7+ messages in thread
From: Guillaume GARDET @ 2014-11-03 13:26 UTC (permalink / raw
  To: u-boot

Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
Cc: Tom Rini <trini@ti.com>

---
 include/configs/omap3_igep00x0.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/omap3_igep00x0.h b/include/configs/omap3_igep00x0.h
index 006c9a9..b2b3750 100644
--- a/include/configs/omap3_igep00x0.h
+++ b/include/configs/omap3_igep00x0.h
@@ -29,8 +29,6 @@
 
 #define CONFIG_REVISION_TAG		1
 
-#define CONFIG_SUPPORT_RAW_INITRD
-
 /* define to enable boot progress via leds */
 #if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0020) || \
     (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0030)
-- 
1.8.4.5

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

* [U-Boot] [PATCH 1/2] ARM: TI: Enable raw initrd support
  2014-11-03 13:26 ` [U-Boot] [PATCH 1/2] ARM: TI: Enable raw initrd support Guillaume GARDET
@ 2014-11-04 16:45   ` Tom Rini
  2014-11-05 21:32   ` [U-Boot] [U-Boot,1/2] " Tom Rini
  1 sibling, 0 replies; 7+ messages in thread
From: Tom Rini @ 2014-11-04 16:45 UTC (permalink / raw
  To: u-boot

On Mon, Nov 03, 2014 at 02:26:17PM +0100, Guillaume GARDET wrote:

> Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
> Cc: Tom Rini <trini@ti.com>

Reviewed-by: Tom Rini <trini@ti.com>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141104/84eb1866/attachment.pgp>

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

* [U-Boot] [PATCH 2/2] ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h
  2014-11-03 13:26 ` [U-Boot] [PATCH 2/2] ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h Guillaume GARDET
@ 2014-11-04 16:46   ` Tom Rini
  2014-11-05 21:32   ` [U-Boot] [U-Boot, " Tom Rini
  1 sibling, 0 replies; 7+ messages in thread
From: Tom Rini @ 2014-11-04 16:46 UTC (permalink / raw
  To: u-boot

On Mon, Nov 03, 2014 at 02:26:18PM +0100, Guillaume GARDET wrote:

> Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
> Cc: Tom Rini <trini@ti.com>

Reviewed-by: Tom Rini <trini@ti.com>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141104/0198ceba/attachment.pgp>

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

* [U-Boot] [U-Boot,1/2] ARM: TI: Enable raw initrd support
  2014-11-03 13:26 ` [U-Boot] [PATCH 1/2] ARM: TI: Enable raw initrd support Guillaume GARDET
  2014-11-04 16:45   ` Tom Rini
@ 2014-11-05 21:32   ` Tom Rini
  1 sibling, 0 replies; 7+ messages in thread
From: Tom Rini @ 2014-11-05 21:32 UTC (permalink / raw
  To: u-boot

On Mon, Nov 03, 2014 at 02:26:17PM +0100, Guillaume GARDET wrote:

> Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
> Cc: Tom Rini <trini@ti.com>
> Reviewed-by: Tom Rini <trini@ti.com>

Applied to u-boot-ti/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141105/a78d9cc4/attachment.pgp>

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

* [U-Boot] [U-Boot, 2/2] ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h
  2014-11-03 13:26 ` [U-Boot] [PATCH 2/2] ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h Guillaume GARDET
  2014-11-04 16:46   ` Tom Rini
@ 2014-11-05 21:32   ` Tom Rini
  1 sibling, 0 replies; 7+ messages in thread
From: Tom Rini @ 2014-11-05 21:32 UTC (permalink / raw
  To: u-boot

On Mon, Nov 03, 2014 at 02:26:18PM +0100, Guillaume GARDET wrote:

> Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
> Cc: Tom Rini <trini@ti.com>
> Reviewed-by: Tom Rini <trini@ti.com>

Applied to u-boot-ti/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141105/e65a64eb/attachment.pgp>

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

end of thread, other threads:[~2014-11-05 21:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-03 13:26 [U-Boot] [PATCH 0/2] Enable raw initrd support for TI boards Guillaume GARDET
2014-11-03 13:26 ` [U-Boot] [PATCH 1/2] ARM: TI: Enable raw initrd support Guillaume GARDET
2014-11-04 16:45   ` Tom Rini
2014-11-05 21:32   ` [U-Boot] [U-Boot,1/2] " Tom Rini
2014-11-03 13:26 ` [U-Boot] [PATCH 2/2] ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h Guillaume GARDET
2014-11-04 16:46   ` Tom Rini
2014-11-05 21:32   ` [U-Boot] [U-Boot, " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.