public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] Pull request: u-boot-freebsd
@ 2007-12-17 12:06 Rafal Jaworowski
  2007-12-17 12:39 ` Haavard Skinnemoen
  2007-12-27  0:05 ` Wolfgang Denk
  0 siblings, 2 replies; 29+ messages in thread
From: Rafal Jaworowski @ 2007-12-17 12:06 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

This is a re-spin on the already requested pull for the initial implementation
of the extended API for standalone apps, that is used for FreeBSD bootstrapping.

kind regards,
Rafal


The following changes since commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2:
  Wolfgang Denk (1):
        Release v1.3.1

are available in the git repository at:

  git://denx.de/git/u-boot-freebsd.git master

Rafal Jaworowski (5):
      [Net] Introduce standalone eth_receive() routine
      [POWERPC] Simplify bd_info struct
      Globalize envmatch() so it can be accessed from other U-Boot subsystems
      API for external applications
      Style cleanups

 Makefile                     |    7 +-
 api/Makefile                 |   40 +++
 api/README                   |   55 ++++
 api/api.c                    |  670 ++++++++++++++++++++++++++++++++++++++++++
 api/api_net.c                |  114 +++++++
 api/api_platform.c           |   74 +++++
 api/api_storage.c            |  370 +++++++++++++++++++++++
 api_examples/Makefile        |  103 +++++++
 api_examples/crt0.S          |   49 +++
 api_examples/demo.c          |  294 ++++++++++++++++++
 api_examples/glue.c          |  460 +++++++++++++++++++++++++++++
 api_examples/libgenwrap.c    |   96 ++++++
 common/cmd_nvedit.c          |    5 +-
 include/api_public.h         |  102 +++++++
 include/asm-ppc/u-boot.h     |   17 +-
 include/common.h             |    3 +
 include/configs/MPC8555CDS.h |    4 +
 include/net.h                |    1 +
 lib_ppc/board.c              |    5 +
 net/eth.c                    |   52 ++++
 net/net.c                    |    6 +
 21 files changed, 2512 insertions(+), 15 deletions(-)
 create mode 100644 api/Makefile
 create mode 100644 api/README
 create mode 100644 api/api.c
 create mode 100644 api/api_net.c
 create mode 100644 api/api_platform.c
 create mode 100644 api/api_storage.c
 create mode 100644 api_examples/Makefile
 create mode 100644 api_examples/crt0.S
 create mode 100644 api_examples/demo.c
 create mode 100644 api_examples/glue.c
 create mode 100644 api_examples/libgenwrap.c
 create mode 100644 include/api_public.h

^ permalink raw reply	[flat|nested] 29+ messages in thread
* [U-Boot-Users] Pull request: u-boot-freebsd
@ 2008-02-21 11:06 Rafal Jaworowski
  2008-02-22 12:01 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Rafal Jaworowski @ 2008-02-21 11:06 UTC (permalink / raw)
  To: u-boot

The following changes since commit b6f29c84c208a091f95a10cbc9852d729659ba20:
  Jean-Christophe PLAGNIOL-VILLARD (1):
        s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'

are available in the git repository at:

  git://denx.de/git/u-boot-freebsd.git master

Rafal Jaworowski (1):
      API: Add (c) and licensing notice to the public API header.

 include/api_public.h |   51 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 51 insertions(+), 0 deletions(-)

^ permalink raw reply	[flat|nested] 29+ messages in thread
* [U-Boot-Users] Pull request: u-boot-freebsd
@ 2008-01-29 16:28 Rafal Jaworowski
  2008-02-11 23:51 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Rafal Jaworowski @ 2008-01-29 16:28 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

The following are two fixes which are needed in this release. Without these
the build breaks when CONFIG_API is enabled.

kind regards,
Rafal


The following changes since commit 98b742489c09780be6a832eeaa4e5eff824792bb:
  Wolfgang Denk (1):
        inka4x0: remove dead code

are available in the git repository at:

  git://denx.de/git/u-boot-freebsd.git master

Rafal Jaworowski (2):
      API: Convert conditional building to the new scheme.
      API: Provide dummy halt() in the glue layer.

 Makefile                  |    9 ++-------
 api/Makefile              |    5 ++---
 api_examples/Makefile     |   20 +++++++++++++-------
 api_examples/libgenwrap.c |    7 ++++++-
 4 files changed, 23 insertions(+), 18 deletions(-)

^ permalink raw reply	[flat|nested] 29+ messages in thread
* [U-Boot-Users] Pull request: u-boot-freebsd
@ 2008-01-09 19:04 Rafal Jaworowski
  2008-01-09 22:08 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Rafal Jaworowski @ 2008-01-09 19:04 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,
This is another re-spin, rebased to current mainline, updated to reflect some
of the notes from discussion on the ML.

kind regards,
Rafal

The following changes since commit 6007f3251c0967adc13f2ed8be1b924ddc30124d:

  Wolfgang Denk (1):

        Coding Style cleanup, update CHANGELOG



are available in the git repository at:



  git://denx.de/git/u-boot-freebsd.git master



Rafal Jaworowski (2):

      Globalize envmatch()

      API for external applications.



 Makefile                  |   10 +

 api/Makefile              |   40 +++

 api/README                |   55 ++++

 api/api.c                 |  670
+++++++++++++++++++++++++++++++++++++++++++++
 api/api_net.c             |  113 ++++++++

 api/api_platform-arm.c    |   60 ++++
           api/api_platform-ppc.c    |   79 ++++++

 api/api_private.h         |   48 ++++

 api/api_storage.c         |  370 +++++++++++++++++++++++++

 api_examples/Makefile     |  103 +++++++

 api_examples/crt0.S       |   50 ++++

 api_examples/demo.c       |  258 +++++++++++++++++

 api_examples/glue.c       |  405 +++++++++++++++++++++++++++

 api_examples/glue.h       |   76 +++++

 api_examples/libgenwrap.c |   90 ++++++

 common/cmd_nvedit.c       |    5 +-

 include/api_public.h      |  102 +++++++

 include/common.h          |    4 +

 lib_ppc/board.c           |    5 +

 19 files changed, 2539 insertions(+), 4 deletions(-)

 create mode 100644 api/Makefile

 create mode 100644 api/README

 create mode 100644 api/api.c

 create mode 100644 api/api_net.c

 create mode 100644 api/api_platform-arm.c

 create mode 100644 api/api_platform-ppc.c

 create mode 100644 api/api_private.h

 create mode 100644 api/api_storage.c

 create mode 100644 api_examples/Makefile

 create mode 100644 api_examples/crt0.S

 create mode 100644 api_examples/demo.c

 create mode 100644 api_examples/glue.c

 create mode 100644 api_examples/glue.h

 create mode 100644 api_examples/libgenwrap.c

 create mode 100644 include/api_public.h

^ permalink raw reply	[flat|nested] 29+ messages in thread
* [U-Boot-Users] Pull request: u-boot-freebsd
@ 2007-10-14 10:51 Rafal Jaworowski
  2007-10-14 12:50 ` Wolfgang Denk
  0 siblings, 1 reply; 29+ messages in thread
From: Rafal Jaworowski @ 2007-10-14 10:51 UTC (permalink / raw)
  To: u-boot

The following changes since commit 636400198228d96983c06657b17f760f5989958e:
  Wolfgang Denk (1):
        Prepare for 1.3.0-rc3 release

are available in the git repository at:

  git://www.denx.de/git/u-boot-freebsd.git master

Rafal Jaworowski (5):
      [Net] Introduce standalone eth_receive() routine
      [POWERPC] Simplify bd_info struct
      Globalize envmatch() so it can be accessed from other U-Boot subsystems
      API for external applications
      Style cleanups

 Makefile                     |    7 +-
 api/Makefile                 |   40 +++
 api/README                   |   55 ++++
 api/api.c                    |  670 ++++++++++++++++++++++++++++++++++++++++++
 api/api_net.c                |  114 +++++++
 api/api_platform.c           |   74 +++++
 api/api_storage.c            |  370 +++++++++++++++++++++++
 api_examples/Makefile        |  103 +++++++
 api_examples/crt0.S          |   49 +++
 api_examples/demo.c          |  294 ++++++++++++++++++
 api_examples/glue.c          |  460 +++++++++++++++++++++++++++++
 api_examples/libgenwrap.c    |   96 ++++++
 common/cmd_nvedit.c          |    5 +-
 include/api_public.h         |  102 +++++++
 include/asm-ppc/u-boot.h     |   17 +-
 include/common.h             |    3 +
 include/configs/MPC8555CDS.h |    4 +
 include/net.h                |    1 +
 lib_ppc/board.c              |    5 +
 net/eth.c                    |   52 ++++
 net/net.c                    |    6 +
 21 files changed, 2512 insertions(+), 15 deletions(-)
 create mode 100644 api/Makefile
 create mode 100644 api/README
 create mode 100644 api/api.c
 create mode 100644 api/api_net.c
 create mode 100644 api/api_platform.c
 create mode 100644 api/api_storage.c
 create mode 100644 api_examples/Makefile
 create mode 100644 api_examples/crt0.S
 create mode 100644 api_examples/demo.c
 create mode 100644 api_examples/glue.c
 create mode 100644 api_examples/libgenwrap.c
 create mode 100644 include/api_public.h

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

end of thread, other threads:[~2008-02-22 12:01 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-17 12:06 [U-Boot-Users] Pull request: u-boot-freebsd Rafal Jaworowski
2007-12-17 12:39 ` Haavard Skinnemoen
2007-12-17 17:17   ` Rafal Jaworowski
2007-12-17 18:03     ` Haavard Skinnemoen
2007-12-18 22:40       ` Rafal Jaworowski
2007-12-18 23:08         ` Wolfgang Denk
2007-12-19  9:32         ` Haavard Skinnemoen
2007-12-17 18:06     ` Marcel Moolenaar
2007-12-17 18:19       ` Haavard Skinnemoen
2007-12-17 19:10         ` Marcel Moolenaar
2007-12-19  9:08           ` Haavard Skinnemoen
2007-12-18 23:00         ` Rafal Jaworowski
2007-12-19  9:15           ` Haavard Skinnemoen
2007-12-27  0:05 ` Wolfgang Denk
2007-12-27 11:56   ` Rafal Jaworowski
2007-12-27 16:27     ` Ben Warren
2007-12-27 17:19       ` Rafal Jaworowski
2007-12-27 17:06     ` Wolfgang Denk
2007-12-27 17:29       ` Rafal Jaworowski
2007-12-27 19:59         ` Ben Warren
2007-12-27 20:06         ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2008-02-21 11:06 Rafal Jaworowski
2008-02-22 12:01 ` Wolfgang Denk
2008-01-29 16:28 Rafal Jaworowski
2008-02-11 23:51 ` Wolfgang Denk
2008-01-09 19:04 Rafal Jaworowski
2008-01-09 22:08 ` Wolfgang Denk
2007-10-14 10:51 Rafal Jaworowski
2007-10-14 12:50 ` Wolfgang Denk

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