All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] doc/README.generic-board: Trivial spell check
@ 2015-05-12 14:20 Ricardo Ribalda Delgado
  2015-05-12 14:20 ` [U-Boot] [PATCH 2/2] ppc: xilinx-ppc: Move to generic board support Ricardo Ribalda Delgado
  2015-05-28 13:23 ` [U-Boot] [U-Boot, 1/2] doc/README.generic-board: Trivial spell check Tom Rini
  0 siblings, 2 replies; 5+ messages in thread
From: Ricardo Ribalda Delgado @ 2015-05-12 14:20 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
---
 doc/README.generic-board | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/README.generic-board b/doc/README.generic-board
index bd8eae1992c7..734f1aa9249a 100644
--- a/doc/README.generic-board
+++ b/doc/README.generic-board
@@ -36,7 +36,7 @@ fields which are common to all architectures. Architecture-specific fields
 have been moved to separate structures.
 
 
-Supported Arcthitectures
+Supported Architectures
 ------------------------
 
 If you are unlucky then your architecture may not support generic board.
@@ -105,12 +105,12 @@ places.
 initialisation is painful since it must be independently added in 10
 places.
 
-3. As time goes by the architectures naturely diverge since there is limited
-pressure to compare features or even CONFIG options against simiilar things
+3. As time goes by the architectures naturally diverge since there is limited
+pressure to compare features or even CONFIG options against similar things
 in other board.c files.
 
 4. New architectures must implement all the features all over again, and
-sometimes in subtley different ways. This places an unfair burden on getting
+sometimes in subtle different ways. This places an unfair burden on getting
 a new architecture fully functional and running with U-Boot.
 
 5. While it is a bit of a tricky change, I believe it is worthwhile and
-- 
2.1.4

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

* [U-Boot] [PATCH 2/2] ppc: xilinx-ppc: Move to generic board support
  2015-05-12 14:20 [U-Boot] [PATCH 1/2] doc/README.generic-board: Trivial spell check Ricardo Ribalda Delgado
@ 2015-05-12 14:20 ` Ricardo Ribalda Delgado
  2015-05-28 10:19   ` Ricardo Ribalda Delgado
  2015-05-28 13:23   ` [U-Boot] [U-Boot, " Tom Rini
  2015-05-28 13:23 ` [U-Boot] [U-Boot, 1/2] doc/README.generic-board: Trivial spell check Tom Rini
  1 sibling, 2 replies; 5+ messages in thread
From: Ricardo Ribalda Delgado @ 2015-05-12 14:20 UTC (permalink / raw)
  To: u-boot

Generic board support seems to work just fine. Tested on ml507 with
bitstream generated on the latest ISE software.

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
---
 include/configs/xilinx-ppc.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/configs/xilinx-ppc.h b/include/configs/xilinx-ppc.h
index 0ccd73a8681e..ccae703cbce2 100644
--- a/include/configs/xilinx-ppc.h
+++ b/include/configs/xilinx-ppc.h
@@ -11,6 +11,9 @@
 
 #ifndef __CONFIG_XLX_H
 #define __CONFIG_XLX_H
+
+#define CONFIG_SYS_GENERIC_BOARD
+
 /*
 #define DEBUG
 #define ET_DEBUG
-- 
2.1.4

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

* [U-Boot] [PATCH 2/2] ppc: xilinx-ppc: Move to generic board support
  2015-05-12 14:20 ` [U-Boot] [PATCH 2/2] ppc: xilinx-ppc: Move to generic board support Ricardo Ribalda Delgado
@ 2015-05-28 10:19   ` Ricardo Ribalda Delgado
  2015-05-28 13:23   ` [U-Boot] [U-Boot, " Tom Rini
  1 sibling, 0 replies; 5+ messages in thread
From: Ricardo Ribalda Delgado @ 2015-05-28 10:19 UTC (permalink / raw)
  To: u-boot

On behalf of Georg

Tested-by: Georg Schardt <schardt@team-ctech.de>

On Tue, May 12, 2015 at 4:20 PM, Ricardo Ribalda Delgado
<ricardo.ribalda@gmail.com> wrote:
> Generic board support seems to work just fine. Tested on ml507 with
> bitstream generated on the latest ISE software.
>
> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
> ---
>  include/configs/xilinx-ppc.h | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/include/configs/xilinx-ppc.h b/include/configs/xilinx-ppc.h
> index 0ccd73a8681e..ccae703cbce2 100644
> --- a/include/configs/xilinx-ppc.h
> +++ b/include/configs/xilinx-ppc.h
> @@ -11,6 +11,9 @@
>
>  #ifndef __CONFIG_XLX_H
>  #define __CONFIG_XLX_H
> +
> +#define CONFIG_SYS_GENERIC_BOARD
> +
>  /*
>  #define DEBUG
>  #define ET_DEBUG
> --
> 2.1.4
>



-- 
Ricardo Ribalda

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

* [U-Boot] [U-Boot, 1/2] doc/README.generic-board: Trivial spell check
  2015-05-12 14:20 [U-Boot] [PATCH 1/2] doc/README.generic-board: Trivial spell check Ricardo Ribalda Delgado
  2015-05-12 14:20 ` [U-Boot] [PATCH 2/2] ppc: xilinx-ppc: Move to generic board support Ricardo Ribalda Delgado
@ 2015-05-28 13:23 ` Tom Rini
  1 sibling, 0 replies; 5+ messages in thread
From: Tom Rini @ 2015-05-28 13:23 UTC (permalink / raw)
  To: u-boot

On Tue, May 12, 2015 at 04:20:28PM +0200, Ricardo Ribalda wrote:

> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>

Applied to u-boot/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/20150528/5f166c16/attachment.sig>

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

* [U-Boot] [U-Boot, 2/2] ppc: xilinx-ppc: Move to generic board support
  2015-05-12 14:20 ` [U-Boot] [PATCH 2/2] ppc: xilinx-ppc: Move to generic board support Ricardo Ribalda Delgado
  2015-05-28 10:19   ` Ricardo Ribalda Delgado
@ 2015-05-28 13:23   ` Tom Rini
  1 sibling, 0 replies; 5+ messages in thread
From: Tom Rini @ 2015-05-28 13:23 UTC (permalink / raw)
  To: u-boot

On Tue, May 12, 2015 at 04:20:29PM +0200, Ricardo Ribalda wrote:

> Generic board support seems to work just fine. Tested on ml507 with
> bitstream generated on the latest ISE software.
> 
> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>

Applied to u-boot/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/20150528/97f0d578/attachment.sig>

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

end of thread, other threads:[~2015-05-28 13:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-12 14:20 [U-Boot] [PATCH 1/2] doc/README.generic-board: Trivial spell check Ricardo Ribalda Delgado
2015-05-12 14:20 ` [U-Boot] [PATCH 2/2] ppc: xilinx-ppc: Move to generic board support Ricardo Ribalda Delgado
2015-05-28 10:19   ` Ricardo Ribalda Delgado
2015-05-28 13:23   ` [U-Boot] [U-Boot, " Tom Rini
2015-05-28 13:23 ` [U-Boot] [U-Boot, 1/2] doc/README.generic-board: Trivial spell check 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.