* [U-Boot] [PATCH 1/2] arm:gplugd: Convert to generic board
@ 2015-02-16 13:07 Ajay Bhargav
2015-02-16 13:07 ` [U-Boot] [PATCH 2/2] arm:aspenite: " Ajay Bhargav
2015-02-16 13:29 ` [U-Boot] [PATCH 1/2] arm:gplugd: " Prafulla Wadaskar
0 siblings, 2 replies; 7+ messages in thread
From: Ajay Bhargav @ 2015-02-16 13:07 UTC (permalink / raw)
To: u-boot
Enable CONFIG_SYS_GENERIC_BOARD for Marvell Gplugd.
Signed-off-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
---
include/configs/gplugd.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/include/configs/gplugd.h b/include/configs/gplugd.h
index 404c56a..0ac198d 100644
--- a/include/configs/gplugd.h
+++ b/include/configs/gplugd.h
@@ -26,6 +26,11 @@
#endif
/*
+ * Generic board support
+ */
+#define CONFIG_SYS_GENERIC_BOARD
+
+/*
* Version number information
*/
#define CONFIG_IDENT_STRING "\nMarvell-gplugD"
--
2.3.0
************************************************************************************************************************************************************* eInfochips Business Disclaimer: This e-mail message and all attachments transmitted with it are intended solely for the use of the addressee and may contain legally privileged and confidential information. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution, copying, or other use of this message or its attachments is strictly prohibited. If you have received this message in error, please notify the sender immediately by replying to this message and please delete it from your computer. Any views expressed in this message are those of the individual sender unless otherwise stated. Company has taken enough precautions to prevent the spread of viruses. However the company accepts no liability for any damage caused by any virus transmitted by this email. *************************************************************************************************************************************************************
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH 2/2] arm:aspenite: Convert to generic board
2015-02-16 13:07 [U-Boot] [PATCH 1/2] arm:gplugd: Convert to generic board Ajay Bhargav
@ 2015-02-16 13:07 ` Ajay Bhargav
2015-02-16 13:30 ` Prafulla Wadaskar
2015-02-16 13:29 ` [U-Boot] [PATCH 1/2] arm:gplugd: " Prafulla Wadaskar
1 sibling, 1 reply; 7+ messages in thread
From: Ajay Bhargav @ 2015-02-16 13:07 UTC (permalink / raw)
To: u-boot
Enable CONFIG_SYS_GENERIC_BOARD for Marvell aspenite.
Signed-off-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
---
include/configs/aspenite.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/include/configs/aspenite.h b/include/configs/aspenite.h
index 727b14a..5258486 100644
--- a/include/configs/aspenite.h
+++ b/include/configs/aspenite.h
@@ -11,6 +11,11 @@
#define __CONFIG_ASPENITE_H
/*
+ * Generic Board support
+ */
+#define CONFIG_SYS_GENERIC_BOARD
+
+/*
* Version number information
*/
#define CONFIG_IDENT_STRING "\nMarvell-Aspenite DB"
--
2.3.0
************************************************************************************************************************************************************* eInfochips Business Disclaimer: This e-mail message and all attachments transmitted with it are intended solely for the use of the addressee and may contain legally privileged and confidential information. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution, copying, or other use of this message or its attachments is strictly prohibited. If you have received this message in error, please notify the sender immediately by replying to this message and please delete it from your computer. Any views expressed in this message are those of the individual sender unless otherwise stated. Company has taken enough precautions to prevent the spread of viruses. However the company accepts no liability for any damage caused by any virus transmitted by this email. *************************************************************************************************************************************************************
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH 1/2] arm:gplugd: Convert to generic board
2015-02-16 13:07 [U-Boot] [PATCH 1/2] arm:gplugd: Convert to generic board Ajay Bhargav
2015-02-16 13:07 ` [U-Boot] [PATCH 2/2] arm:aspenite: " Ajay Bhargav
@ 2015-02-16 13:29 ` Prafulla Wadaskar
2015-02-16 15:17 ` Luka Perkov
1 sibling, 1 reply; 7+ messages in thread
From: Prafulla Wadaskar @ 2015-02-16 13:29 UTC (permalink / raw)
To: u-boot
> -----Original Message-----
> From: Ajay Bhargav [mailto:ajay.bhargav at einfochips.com]
> Sent: 16 February 2015 18:37
> To: u-boot at lists.denx.de; marex at denx.de
> Cc: trini at ti.com; Prafulla Wadaskar; yamada.m at jp.panasonic.com; Ajay
> Bhargav
> Subject: [PATCH 1/2] arm:gplugd: Convert to generic board
>
> Enable CONFIG_SYS_GENERIC_BOARD for Marvell Gplugd.
>
> Signed-off-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
> ---
> include/configs/gplugd.h | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/include/configs/gplugd.h b/include/configs/gplugd.h index
> 404c56a..0ac198d 100644
> --- a/include/configs/gplugd.h
> +++ b/include/configs/gplugd.h
> @@ -26,6 +26,11 @@
> #endif
>
> /*
> + * Generic board support
> + */
> +#define CONFIG_SYS_GENERIC_BOARD
> +
> +/*
> * Version number information
> */
> #define CONFIG_IDENT_STRING "\nMarvell-gplugD"
> --
> 2.3.0
Acked-by: Prafulla Wadaskar <Prafulla@marvell.com>
Added Luka on this thread.
Regards...
Prafulla . . .
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH 2/2] arm:aspenite: Convert to generic board
2015-02-16 13:07 ` [U-Boot] [PATCH 2/2] arm:aspenite: " Ajay Bhargav
@ 2015-02-16 13:30 ` Prafulla Wadaskar
2015-02-16 15:17 ` Luka Perkov
0 siblings, 1 reply; 7+ messages in thread
From: Prafulla Wadaskar @ 2015-02-16 13:30 UTC (permalink / raw)
To: u-boot
> -----Original Message-----
> From: Ajay Bhargav [mailto:ajay.bhargav at einfochips.com]
> Sent: 16 February 2015 18:37
> To: u-boot at lists.denx.de; marex at denx.de
> Cc: trini at ti.com; Prafulla Wadaskar; yamada.m at jp.panasonic.com; Ajay
> Bhargav
> Subject: [PATCH 2/2] arm:aspenite: Convert to generic board
>
> Enable CONFIG_SYS_GENERIC_BOARD for Marvell aspenite.
>
> Signed-off-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
> ---
> include/configs/aspenite.h | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/include/configs/aspenite.h b/include/configs/aspenite.h index
> 727b14a..5258486 100644
> --- a/include/configs/aspenite.h
> +++ b/include/configs/aspenite.h
> @@ -11,6 +11,11 @@
> #define __CONFIG_ASPENITE_H
>
> /*
> + * Generic Board support
> + */
> +#define CONFIG_SYS_GENERIC_BOARD
> +
> +/*
> * Version number information
> */
> #define CONFIG_IDENT_STRING "\nMarvell-Aspenite DB"
> --
> 2.3.0
Acked-by: Prafulla Wadaskar <Prafulla@marvell.com>
Added Luka on this thread.
Regards...
Prafulla . . .
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH 2/2] arm:aspenite: Convert to generic board
2015-02-16 13:30 ` Prafulla Wadaskar
@ 2015-02-16 15:17 ` Luka Perkov
2015-02-16 15:30 ` Marek Vasut
0 siblings, 1 reply; 7+ messages in thread
From: Luka Perkov @ 2015-02-16 15:17 UTC (permalink / raw)
To: u-boot
On Mon, Feb 16, 2015 at 05:30:07AM -0800, Prafulla Wadaskar wrote:
> > Subject: [PATCH 2/2] arm:aspenite: Convert to generic board
> >
> > Enable CONFIG_SYS_GENERIC_BOARD for Marvell aspenite.
> >
> > Signed-off-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
> > ---
> > include/configs/aspenite.h | 5 +++++
> > 1 file changed, 5 insertions(+)
> >
> > diff --git a/include/configs/aspenite.h b/include/configs/aspenite.h index
> > 727b14a..5258486 100644
> > --- a/include/configs/aspenite.h
> > +++ b/include/configs/aspenite.h
> > @@ -11,6 +11,11 @@
> > #define __CONFIG_ASPENITE_H
> >
> > /*
> > + * Generic Board support
> > + */
> > +#define CONFIG_SYS_GENERIC_BOARD
> > +
> > +/*
> > * Version number information
> > */
> > #define CONFIG_IDENT_STRING "\nMarvell-Aspenite DB"
> > --
> > 2.3.0
>
> Acked-by: Prafulla Wadaskar <Prafulla@marvell.com>
>
> Added Luka on this thread.
Thank you. I've had issues applying this patch so I've merged it
manually and pushed to Marvell's for-next branch.
Luka
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH 1/2] arm:gplugd: Convert to generic board
2015-02-16 13:29 ` [U-Boot] [PATCH 1/2] arm:gplugd: " Prafulla Wadaskar
@ 2015-02-16 15:17 ` Luka Perkov
0 siblings, 0 replies; 7+ messages in thread
From: Luka Perkov @ 2015-02-16 15:17 UTC (permalink / raw)
To: u-boot
On Mon, Feb 16, 2015 at 05:29:24AM -0800, Prafulla Wadaskar wrote:
> > Subject: [PATCH 1/2] arm:gplugd: Convert to generic board
> >
> > Enable CONFIG_SYS_GENERIC_BOARD for Marvell Gplugd.
> >
> > Signed-off-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
> > ---
> > include/configs/gplugd.h | 5 +++++
> > 1 file changed, 5 insertions(+)
> >
> > diff --git a/include/configs/gplugd.h b/include/configs/gplugd.h index
> > 404c56a..0ac198d 100644
> > --- a/include/configs/gplugd.h
> > +++ b/include/configs/gplugd.h
> > @@ -26,6 +26,11 @@
> > #endif
> >
> > /*
> > + * Generic board support
> > + */
> > +#define CONFIG_SYS_GENERIC_BOARD
> > +
> > +/*
> > * Version number information
> > */
> > #define CONFIG_IDENT_STRING "\nMarvell-gplugD"
> > --
> > 2.3.0
>
> Acked-by: Prafulla Wadaskar <Prafulla@marvell.com>
>
> Added Luka on this thread.
Thank you. I've had issues applying this patch so I've merged it
manually and pushed to Marvell's for-next branch.
Luka
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH 2/2] arm:aspenite: Convert to generic board
2015-02-16 15:17 ` Luka Perkov
@ 2015-02-16 15:30 ` Marek Vasut
0 siblings, 0 replies; 7+ messages in thread
From: Marek Vasut @ 2015-02-16 15:30 UTC (permalink / raw)
To: u-boot
On Monday, February 16, 2015 at 04:17:20 PM, Luka Perkov wrote:
> On Mon, Feb 16, 2015 at 05:30:07AM -0800, Prafulla Wadaskar wrote:
> > > Subject: [PATCH 2/2] arm:aspenite: Convert to generic board
> > >
> > > Enable CONFIG_SYS_GENERIC_BOARD for Marvell aspenite.
> > >
> > > Signed-off-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
> > > ---
> > >
> > > include/configs/aspenite.h | 5 +++++
> > > 1 file changed, 5 insertions(+)
> > >
> > > diff --git a/include/configs/aspenite.h b/include/configs/aspenite.h
> > > index 727b14a..5258486 100644
> > > --- a/include/configs/aspenite.h
> > > +++ b/include/configs/aspenite.h
> > > @@ -11,6 +11,11 @@
> > >
> > > #define __CONFIG_ASPENITE_H
> > >
> > > /*
> > >
> > > + * Generic Board support
> > > + */
> > > +#define CONFIG_SYS_GENERIC_BOARD
> > > +
> > > +/*
> > >
> > > * Version number information
> > > */
> > >
> > > #define CONFIG_IDENT_STRING "\nMarvell-Aspenite DB"
> > >
> > > --
> > > 2.3.0
> >
> > Acked-by: Prafulla Wadaskar <Prafulla@marvell.com>
> >
> > Added Luka on this thread.
>
> Thank you. I've had issues applying this patch so I've merged it
> manually and pushed to Marvell's for-next branch.
Hi!
are you the marvell custodian now, Luka ? If so, please update
http://www.denx.de/wiki/U-Boot/Custodians this here, so it lists
your contact :)
Thanks!
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-02-16 15:30 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-16 13:07 [U-Boot] [PATCH 1/2] arm:gplugd: Convert to generic board Ajay Bhargav
2015-02-16 13:07 ` [U-Boot] [PATCH 2/2] arm:aspenite: " Ajay Bhargav
2015-02-16 13:30 ` Prafulla Wadaskar
2015-02-16 15:17 ` Luka Perkov
2015-02-16 15:30 ` Marek Vasut
2015-02-16 13:29 ` [U-Boot] [PATCH 1/2] arm:gplugd: " Prafulla Wadaskar
2015-02-16 15:17 ` Luka Perkov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox