public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410
@ 2014-09-07 16:01 Gerald Kerma
  2014-09-07 16:01 ` [U-Boot] [PATCH 1/5] ARM: sheevaplug: change env location Gerald Kerma
                   ` (5 more replies)
  0 siblings, 6 replies; 14+ messages in thread
From: Gerald Kerma @ 2014-09-07 16:01 UTC (permalink / raw)
  To: u-boot

This serie of patches add some needed features to sheevaplug

Gerald Kerma (5):
  ARM: sheevaplug: change env location
  ARM: sheevaplug: add MVSATA driver
  ARM: sheevaplug: add MTD defaults
  ARM: sheevaplug: redefine MTDPARTS
  ARM: sheevaplug: add HUSH parser

 include/configs/sheevaplug.h | 46 +++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 41 insertions(+), 5 deletions(-)

-- 
1.9.1

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

* [U-Boot] [PATCH 1/5] ARM: sheevaplug: change env location
  2014-09-07 16:01 [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410 Gerald Kerma
@ 2014-09-07 16:01 ` Gerald Kerma
  2014-09-07 16:01 ` [U-Boot] [PATCH 2/5] ARM: sheevaplug: add MVSATA driver Gerald Kerma
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 14+ messages in thread
From: Gerald Kerma @ 2014-09-07 16:01 UTC (permalink / raw)
  To: u-boot

This patch move the environment offset in sheevaplug.
The size of the u-boot binary is become too big.
Fix saving environments was result of corrupting the u-boot.

Signed-off-by: Gerald Kerma <drEagle@doukki.net>

 Changes in v2:
 - patch description

 Changes in v1:
 - fix sheevaplug environment offset

---
 include/configs/sheevaplug.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h
index 4747adf..d89bc37 100644
--- a/include/configs/sheevaplug.h
+++ b/include/configs/sheevaplug.h
@@ -54,8 +54,8 @@
  * it has to be rounded to sector size
  */
 #define CONFIG_ENV_SIZE			0x20000	/* 128k */
-#define CONFIG_ENV_ADDR			0x60000
-#define CONFIG_ENV_OFFSET		0x60000	/* env starts here */
+#define CONFIG_ENV_ADDR			0x80000
+#define CONFIG_ENV_OFFSET		0x80000	/* env starts here */
 
 /*
  * Default environment variables
-- 
1.9.1

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

* [U-Boot] [PATCH 2/5] ARM: sheevaplug: add MVSATA driver
  2014-09-07 16:01 [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410 Gerald Kerma
  2014-09-07 16:01 ` [U-Boot] [PATCH 1/5] ARM: sheevaplug: change env location Gerald Kerma
@ 2014-09-07 16:01 ` Gerald Kerma
  2014-09-07 16:01 ` [U-Boot] [PATCH 3/5] ARM: sheevaplug: add MTD defaults Gerald Kerma
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 14+ messages in thread
From: Gerald Kerma @ 2014-09-07 16:01 UTC (permalink / raw)
  To: u-boot

This patch add MVSATA driver to sheevaplug

Signed-off-by: Gerald Kerma <drEagle@doukki.net>

 Changes in v1:
 - add MVSATA driver to sheevaplug
 - enable ext4 FS support

---
 include/configs/sheevaplug.h | 26 +++++++++++++++++++++++++-
 1 file changed, 25 insertions(+), 1 deletion(-)

diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h
index d89bc37..9661b8f 100644
--- a/include/configs/sheevaplug.h
+++ b/include/configs/sheevaplug.h
@@ -1,5 +1,6 @@
 /*
- * (C) Copyright 2009
+ * (C) Copyright 2009-2014
+ * Gerald Kerma <dreagle@doukki.net>
  * Marvell Semiconductor <www.marvell.com>
  * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  *
@@ -23,12 +24,21 @@
 #define CONFIG_SKIP_LOWLEVEL_INIT	/* disable board lowlevel_init */
 
 /*
+ * Compression configuration
+ */
+#define CONFIG_BZIP2
+#define CONFIG_LZMA
+#define CONFIG_LZO
+
+/*
  * Commands configuration
  */
 #define CONFIG_SYS_NO_FLASH		/* Declare no flash (NOR/SPI) */
 #include <config_cmd_default.h>
+#define CONFIG_CMD_BOOTZ
 #define CONFIG_CMD_DHCP
 #define CONFIG_CMD_ENV
+#define CONFIG_CMD_IDE
 #define CONFIG_CMD_MII
 #define CONFIG_CMD_MMC
 #define CONFIG_CMD_NAND
@@ -92,9 +102,23 @@
 #endif /* CONFIG_CMD_MMC */
 
 /*
+ * SATA driver configuration
+ */
+#ifdef CONFIG_CMD_IDE
+#define __io
+#define CONFIG_IDE_PREINIT
+#define CONFIG_DOS_PARTITION
+#define CONFIG_MVSATA_IDE_USE_PORT0
+#define CONFIG_MVSATA_IDE_USE_PORT1
+#define CONFIG_SYS_ATA_IDE0_OFFSET	MV_SATA_PORT0_OFFSET
+#define CONFIG_SYS_ATA_IDE1_OFFSET	MV_SATA_PORT1_OFFSET
+#endif /* CONFIG_CMD_IDE */
+
+/*
  * File system
  */
 #define CONFIG_CMD_EXT2
+#define CONFIG_CMD_EXT4
 #define CONFIG_CMD_FAT
 #define CONFIG_CMD_JFFS2
 #define CONFIG_CMD_UBI
-- 
1.9.1

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

* [U-Boot] [PATCH 3/5] ARM: sheevaplug: add MTD defaults
  2014-09-07 16:01 [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410 Gerald Kerma
  2014-09-07 16:01 ` [U-Boot] [PATCH 1/5] ARM: sheevaplug: change env location Gerald Kerma
  2014-09-07 16:01 ` [U-Boot] [PATCH 2/5] ARM: sheevaplug: add MVSATA driver Gerald Kerma
@ 2014-09-07 16:01 ` Gerald Kerma
  2014-09-07 16:01 ` [U-Boot] [PATCH 4/5] ARM: sheevaplug: redefine MTDPARTS Gerald Kerma
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 14+ messages in thread
From: Gerald Kerma @ 2014-09-07 16:01 UTC (permalink / raw)
  To: u-boot

This patch add MTDIDS and MTDPARTS defaults settings to sheevaplug

Signed-off-by: Gerald Kerma <drEagle@doukki.net>

 Changes in v1:
 - add MTDIDS and MTDPARTS default to sheevaplug

---
 include/configs/sheevaplug.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h
index 9661b8f..0a3118d 100644
--- a/include/configs/sheevaplug.h
+++ b/include/configs/sheevaplug.h
@@ -83,6 +83,11 @@
 	"x_bootcmd_usb=usb start\0" \
 	"x_bootargs_root=root=/dev/mtdblock3 rw rootfstype=jffs2\0"
 
+#define MTDIDS_DEFAULT	"nand0=orion_nand"
+
+#define MTDPARTS_DEFAULT	\
+	"mtdparts="CONFIG_MTDPARTS
+
 /*
  * Ethernet Driver configuration
  */
-- 
1.9.1

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

* [U-Boot] [PATCH 4/5] ARM: sheevaplug: redefine MTDPARTS
  2014-09-07 16:01 [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410 Gerald Kerma
                   ` (2 preceding siblings ...)
  2014-09-07 16:01 ` [U-Boot] [PATCH 3/5] ARM: sheevaplug: add MTD defaults Gerald Kerma
@ 2014-09-07 16:01 ` Gerald Kerma
  2014-09-07 16:01 ` [U-Boot] [PATCH 5/5] ARM: sheevaplug: add HUSH parser Gerald Kerma
  2014-09-09  6:38 ` [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410 Nobuhiro Iwamatsu
  5 siblings, 0 replies; 14+ messages in thread
From: Gerald Kerma @ 2014-09-07 16:01 UTC (permalink / raw)
  To: u-boot

This patch redefine MTDPARTS

Signed-off-by: Gerald Kerma <drEagle@doukki.net>

 Changes in v1:
 - redefine MTDPARTS

---
 include/configs/sheevaplug.h | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h
index 0a3118d..62f46b7 100644
--- a/include/configs/sheevaplug.h
+++ b/include/configs/sheevaplug.h
@@ -74,8 +74,10 @@
 	"setenv bootargs ${x_bootargs} ${x_bootargs_root}; "	\
 	"${x_bootcmd_usb}; bootm 0x6400000;"
 
-#define CONFIG_MTDPARTS		"orion_nand:512k(uboot),"	\
-	"3m at 1m(kernel),1m at 4m(psm),13m at 5m(rootfs) rw\0"
+#define CONFIG_MTDPARTS		\
+	"mtdparts=orion_nand:512K(uboot),"				\
+	"512K(env),1M(script),6M(kernel),"				\
+	"12M(ramdisk),4M(spare),-(rootfs)"

 #define CONFIG_EXTRA_ENV_SETTINGS	"x_bootargs=console"	\
 	"=ttyS0,115200 mtdparts="CONFIG_MTDPARTS	\
-- 
1.9.1

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

* [U-Boot] [PATCH 5/5] ARM: sheevaplug: add HUSH parser
  2014-09-07 16:01 [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410 Gerald Kerma
                   ` (3 preceding siblings ...)
  2014-09-07 16:01 ` [U-Boot] [PATCH 4/5] ARM: sheevaplug: redefine MTDPARTS Gerald Kerma
@ 2014-09-07 16:01 ` Gerald Kerma
  2014-09-09  6:38 ` [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410 Nobuhiro Iwamatsu
  5 siblings, 0 replies; 14+ messages in thread
From: Gerald Kerma @ 2014-09-07 16:01 UTC (permalink / raw)
  To: u-boot

This patch add HUSH command parser

Signed-off-by: Gerald Kerma <drEagle@doukki.net>

 Changes in v1:
 - add HUSH command parser

---
 include/configs/sheevaplug.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h
index 62f46b7..6428c83 100644
--- a/include/configs/sheevaplug.h
+++ b/include/configs/sheevaplug.h
@@ -30,6 +30,11 @@
 #define CONFIG_LZMA
 #define CONFIG_LZO
 
+/*
+ * Miscellaneous configurable options
+ */
+#define CONFIG_SYS_HUSH_PARSER		/* use "hush" command parser */
+
 /*
  * Commands configuration
  */
-- 
1.9.1

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

* [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410
  2014-09-07 16:01 [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410 Gerald Kerma
                   ` (4 preceding siblings ...)
  2014-09-07 16:01 ` [U-Boot] [PATCH 5/5] ARM: sheevaplug: add HUSH parser Gerald Kerma
@ 2014-09-09  6:38 ` Nobuhiro Iwamatsu
  2014-09-09  6:59   ` Prafulla Wadaskar
  5 siblings, 1 reply; 14+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-09-09  6:38 UTC (permalink / raw)
  To: u-boot

Hi, Albert.

These patches are not taken for a long time.
If possible and Prafulla is OK, can you apply to u-boot-arm directly?

Best regards,
  Nobuhiro

2014-09-08 1:01 GMT+09:00 Gerald Kerma <drEagle@doukki.net>:
> This serie of patches add some needed features to sheevaplug
>
> Gerald Kerma (5):
>   ARM: sheevaplug: change env location
>   ARM: sheevaplug: add MVSATA driver
>   ARM: sheevaplug: add MTD defaults
>   ARM: sheevaplug: redefine MTDPARTS
>   ARM: sheevaplug: add HUSH parser
>
>  include/configs/sheevaplug.h | 46 +++++++++++++++++++++++++++++++++++++++-----
>  1 file changed, 41 insertions(+), 5 deletions(-)
>
> --
> 1.9.1
>



-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6

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

* [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410
  2014-09-09  6:38 ` [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410 Nobuhiro Iwamatsu
@ 2014-09-09  6:59   ` Prafulla Wadaskar
  2014-09-15  4:36     ` drEagle
  0 siblings, 1 reply; 14+ messages in thread
From: Prafulla Wadaskar @ 2014-09-09  6:59 UTC (permalink / raw)
  To: u-boot

Hi Everybody,

Sorry for being inactive on the thread...
I will pull these patches and provide a pull request to albert soon...

Regards...
Prafulla . . .

> -----Original Message-----
> From: Nobuhiro Iwamatsu [mailto:iwamatsu at nigauri.org]
> Sent: 09 September 2014 12:08
> To: Albert ARIBAUD
> Cc: U-Boot; Prafulla Wadaskar; Pantelis Antoniou;
> Gerald Kerma; Tom Rini
> Subject: Re: [PATCH 0/5] ARM: sheevaplug: refresh for
> 201410
> 
> Hi, Albert.
> 
> These patches are not taken for a long time.
> If possible and Prafulla is OK, can you apply to u-
> boot-arm directly?
> 
> Best regards,
>   Nobuhiro
> 
> 2014-09-08 1:01 GMT+09:00 Gerald Kerma
> <drEagle@doukki.net>:
> > This serie of patches add some needed features to
> sheevaplug
> >
> > Gerald Kerma (5):
> >   ARM: sheevaplug: change env location
> >   ARM: sheevaplug: add MVSATA driver
> >   ARM: sheevaplug: add MTD defaults
> >   ARM: sheevaplug: redefine MTDPARTS
> >   ARM: sheevaplug: add HUSH parser
> >
> >  include/configs/sheevaplug.h | 46
> +++++++++++++++++++++++++++++++++++++++-----
> >  1 file changed, 41 insertions(+), 5 deletions(-)
> >
> > --
> > 1.9.1
> >
> 
> 
> 
> --
> Nobuhiro Iwamatsu
>    iwamatsu at {nigauri.org / debian.org}
>    GPG ID: 40AD1FA6

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

* [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410
  2014-09-09  6:59   ` Prafulla Wadaskar
@ 2014-09-15  4:36     ` drEagle
  2014-09-21  6:47       ` drEagle
  0 siblings, 1 reply; 14+ messages in thread
From: drEagle @ 2014-09-15  4:36 UTC (permalink / raw)
  To: u-boot

Hi Preafulla,

Any news about these patches ?

Regards,

On 09/09/2014 08:59, Prafulla Wadaskar wrote:
> Hi Everybody,
> 
> Sorry for being inactive on the thread...
> I will pull these patches and provide a pull request to albert soon...
> 
> Regards...
> Prafulla . . .
> 
>> -----Original Message-----
>> From: Nobuhiro Iwamatsu [mailto:iwamatsu at nigauri.org]
>> Sent: 09 September 2014 12:08
>> To: Albert ARIBAUD
>> Cc: U-Boot; Prafulla Wadaskar; Pantelis Antoniou;
>> Gerald Kerma; Tom Rini
>> Subject: Re: [PATCH 0/5] ARM: sheevaplug: refresh for
>> 201410
>>
>> Hi, Albert.
>>
>> These patches are not taken for a long time.
>> If possible and Prafulla is OK, can you apply to u-
>> boot-arm directly?
>>
>> Best regards,
>>   Nobuhiro
>>
>> 2014-09-08 1:01 GMT+09:00 Gerald Kerma
>> <drEagle@doukki.net>:
>>> This serie of patches add some needed features to
>> sheevaplug
>>>
>>> Gerald Kerma (5):
>>>   ARM: sheevaplug: change env location
>>>   ARM: sheevaplug: add MVSATA driver
>>>   ARM: sheevaplug: add MTD defaults
>>>   ARM: sheevaplug: redefine MTDPARTS
>>>   ARM: sheevaplug: add HUSH parser
>>>
>>>  include/configs/sheevaplug.h | 46
>> +++++++++++++++++++++++++++++++++++++++-----
>>>  1 file changed, 41 insertions(+), 5 deletions(-)
>>>
>>> --
>>> 1.9.1
>>>
>>
>>
>>
>> --
>> Nobuhiro Iwamatsu
>>    iwamatsu at {nigauri.org / debian.org}
>>    GPG ID: 40AD1FA6


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 473 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140915/b7bfdfc6/attachment.pgp>

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

* [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410
  2014-09-15  4:36     ` drEagle
@ 2014-09-21  6:47       ` drEagle
  2014-09-26  9:17         ` drEagle
  0 siblings, 1 reply; 14+ messages in thread
From: drEagle @ 2014-09-21  6:47 UTC (permalink / raw)
  To: u-boot

Hi Prafulla,

Is there any chance for theses patches to be reviewed in time for next release ?

Can you get it reviewed by anyone else ?

Enjoy,

On 15/09/2014 06:36, drEagle wrote:
> Hi Preafulla,
> 
> Any news about these patches ?
> 
> Regards,
> 
> On 09/09/2014 08:59, Prafulla Wadaskar wrote:
>> Hi Everybody,
>>
>> Sorry for being inactive on the thread...
>> I will pull these patches and provide a pull request to albert soon...
>>
>> Regards...
>> Prafulla . . .
>>
>>> -----Original Message-----
>>> From: Nobuhiro Iwamatsu [mailto:iwamatsu at nigauri.org]
>>> Sent: 09 September 2014 12:08
>>> To: Albert ARIBAUD
>>> Cc: U-Boot; Prafulla Wadaskar; Pantelis Antoniou;
>>> Gerald Kerma; Tom Rini
>>> Subject: Re: [PATCH 0/5] ARM: sheevaplug: refresh for
>>> 201410
>>>
>>> Hi, Albert.
>>>
>>> These patches are not taken for a long time.
>>> If possible and Prafulla is OK, can you apply to u-
>>> boot-arm directly?
>>>
>>> Best regards,
>>>   Nobuhiro
>>>
>>> 2014-09-08 1:01 GMT+09:00 Gerald Kerma
>>> <drEagle@doukki.net>:
>>>> This serie of patches add some needed features to
>>> sheevaplug
>>>>
>>>> Gerald Kerma (5):
>>>>   ARM: sheevaplug: change env location
>>>>   ARM: sheevaplug: add MVSATA driver
>>>>   ARM: sheevaplug: add MTD defaults
>>>>   ARM: sheevaplug: redefine MTDPARTS
>>>>   ARM: sheevaplug: add HUSH parser
>>>>
>>>>  include/configs/sheevaplug.h | 46
>>> +++++++++++++++++++++++++++++++++++++++-----
>>>>  1 file changed, 41 insertions(+), 5 deletions(-)
>>>>
>>>> --
>>>> 1.9.1
>>>>
>>>
>>>
>>>
>>> --
>>> Nobuhiro Iwamatsu
>>>    iwamatsu at {nigauri.org / debian.org}
>>>    GPG ID: 40AD1FA6
> 
> 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 473 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140921/482be151/attachment.pgp>

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

* [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410
  2014-09-21  6:47       ` drEagle
@ 2014-09-26  9:17         ` drEagle
  2014-10-01 11:21           ` Prafulla Wadaskar
  0 siblings, 1 reply; 14+ messages in thread
From: drEagle @ 2014-09-26  9:17 UTC (permalink / raw)
  To: u-boot

Hi,

Is there any actions to take theses patches mainlined ?

Regards,

On 21/09/2014 08:47, drEagle wrote:
> Hi Prafulla,
> 
> Is there any chance for theses patches to be reviewed in time for next release ?
> 
> Can you get it reviewed by anyone else ?
> 
> Enjoy,
> 
> On 15/09/2014 06:36, drEagle wrote:
>> Hi Preafulla,
>>
>> Any news about these patches ?
>>
>> Regards,
>>
>> On 09/09/2014 08:59, Prafulla Wadaskar wrote:
>>> Hi Everybody,
>>>
>>> Sorry for being inactive on the thread...
>>> I will pull these patches and provide a pull request to albert soon...
>>>
>>> Regards...
>>> Prafulla . . .
>>>
>>>> -----Original Message-----
>>>> From: Nobuhiro Iwamatsu [mailto:iwamatsu at nigauri.org]
>>>> Sent: 09 September 2014 12:08
>>>> To: Albert ARIBAUD
>>>> Cc: U-Boot; Prafulla Wadaskar; Pantelis Antoniou;
>>>> Gerald Kerma; Tom Rini
>>>> Subject: Re: [PATCH 0/5] ARM: sheevaplug: refresh for
>>>> 201410
>>>>
>>>> Hi, Albert.
>>>>
>>>> These patches are not taken for a long time.
>>>> If possible and Prafulla is OK, can you apply to u-
>>>> boot-arm directly?
>>>>
>>>> Best regards,
>>>>   Nobuhiro
>>>>
>>>> 2014-09-08 1:01 GMT+09:00 Gerald Kerma
>>>> <drEagle@doukki.net>:
>>>>> This serie of patches add some needed features to
>>>> sheevaplug
>>>>>
>>>>> Gerald Kerma (5):
>>>>>   ARM: sheevaplug: change env location
>>>>>   ARM: sheevaplug: add MVSATA driver
>>>>>   ARM: sheevaplug: add MTD defaults
>>>>>   ARM: sheevaplug: redefine MTDPARTS
>>>>>   ARM: sheevaplug: add HUSH parser
>>>>>
>>>>>  include/configs/sheevaplug.h | 46
>>>> +++++++++++++++++++++++++++++++++++++++-----
>>>>>  1 file changed, 41 insertions(+), 5 deletions(-)
>>>>>
>>>>> --
>>>>> 1.9.1
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Nobuhiro Iwamatsu
>>>>    iwamatsu at {nigauri.org / debian.org}
>>>>    GPG ID: 40AD1FA6
>>
>>
> 
> 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 473 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140926/93cd9d68/attachment.pgp>

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

* [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410
  2014-09-26  9:17         ` drEagle
@ 2014-10-01 11:21           ` Prafulla Wadaskar
  2014-10-07  7:29             ` DrEagle
  0 siblings, 1 reply; 14+ messages in thread
From: Prafulla Wadaskar @ 2014-10-01 11:21 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: drEagle [mailto:drEagle at doukki.net]
> Sent: 26 September 2014 14:47
> To: Prafulla Wadaskar; Albert ARIBAUD
> Cc: Nobuhiro Iwamatsu; U-Boot; Pantelis Antoniou; Tom
> Rini
> Subject: Re: [PATCH 0/5] ARM: sheevaplug: refresh for
> 201410
> 
> Hi,
> 
> Is there any actions to take theses patches mainlined ?
> 

This patch series is applies to u-boot-marvell.git master branch

Thanks and regards...
Prafulla . . .

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

* [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410
  2014-10-01 11:21           ` Prafulla Wadaskar
@ 2014-10-07  7:29             ` DrEagle
  2014-10-07  7:32               ` Prafulla Wadaskar
  0 siblings, 1 reply; 14+ messages in thread
From: DrEagle @ 2014-10-07  7:29 UTC (permalink / raw)
  To: u-boot

Thank you Prafulla,

Is there a pull request planned to master 2014-10 release from 
git-marvell ?

Regards

Le 2014-10-01 13:21, Prafulla Wadaskar a ?crit?:
>> -----Original Message-----
>> From: drEagle [mailto:drEagle at doukki.net]
>> Sent: 26 September 2014 14:47
>> To: Prafulla Wadaskar; Albert ARIBAUD
>> Cc: Nobuhiro Iwamatsu; U-Boot; Pantelis Antoniou; Tom
>> Rini
>> Subject: Re: [PATCH 0/5] ARM: sheevaplug: refresh for
>> 201410
>>
>> Hi,
>>
>> Is there any actions to take theses patches mainlined ?
>>
>
> This patch series is applies to u-boot-marvell.git master branch
>
> Thanks and regards...
> Prafulla . . .

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

* [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410
  2014-10-07  7:29             ` DrEagle
@ 2014-10-07  7:32               ` Prafulla Wadaskar
  0 siblings, 0 replies; 14+ messages in thread
From: Prafulla Wadaskar @ 2014-10-07  7:32 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: DrEagle [mailto:dreagle at doukki.net]
> Sent: 07 October 2014 12:59
> To: Prafulla Wadaskar
> Cc: drEagle; Albert ARIBAUD; Nobuhiro Iwamatsu; U-Boot;
> Pantelis Antoniou; Tom Rini
> Subject: RE: [PATCH 0/5] ARM: sheevaplug: refresh for
> 201410
> 
> Thank you Prafulla,
> 
> Is there a pull request planned to master 2014-10
> release from
> git-marvell ?

Yes, it has been already requested to Albert.

Regards...
Prafulla . . .

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

end of thread, other threads:[~2014-10-07  7:32 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-07 16:01 [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410 Gerald Kerma
2014-09-07 16:01 ` [U-Boot] [PATCH 1/5] ARM: sheevaplug: change env location Gerald Kerma
2014-09-07 16:01 ` [U-Boot] [PATCH 2/5] ARM: sheevaplug: add MVSATA driver Gerald Kerma
2014-09-07 16:01 ` [U-Boot] [PATCH 3/5] ARM: sheevaplug: add MTD defaults Gerald Kerma
2014-09-07 16:01 ` [U-Boot] [PATCH 4/5] ARM: sheevaplug: redefine MTDPARTS Gerald Kerma
2014-09-07 16:01 ` [U-Boot] [PATCH 5/5] ARM: sheevaplug: add HUSH parser Gerald Kerma
2014-09-09  6:38 ` [U-Boot] [PATCH 0/5] ARM: sheevaplug: refresh for 201410 Nobuhiro Iwamatsu
2014-09-09  6:59   ` Prafulla Wadaskar
2014-09-15  4:36     ` drEagle
2014-09-21  6:47       ` drEagle
2014-09-26  9:17         ` drEagle
2014-10-01 11:21           ` Prafulla Wadaskar
2014-10-07  7:29             ` DrEagle
2014-10-07  7:32               ` Prafulla Wadaskar

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