From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rafal Jaworowski Date: Mon, 17 Dec 2007 13:06:42 +0100 Subject: [U-Boot-Users] Pull request: u-boot-freebsd Message-ID: <47666652.30600@semihalf.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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