From mboxrd@z Thu Jan 1 00:00:00 1970 From: tristan.lelong at blunderer.org Date: Tue, 16 Nov 2010 19:04:30 +0100 Subject: [U-Boot] [PATCH 0/3] Net Boot Controller Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Tristan Lelong This patch allow to interrupt u-boot autoboot from remote PC and auto-reconfigure a netconsole redirected to this remote PC Tristan Lelong (3): Add support for Net Boot Controller (NBC) packet Add sendnbc tool to broadcast NBC magic packet Add the NBC + netconsole corresponding documentation common/main.c | 5 + doc/README.netconsole | 66 +++++++++++++++ include/net.h | 6 +- net/Makefile | 2 + net/nbc.c | 143 ++++++++++++++++++++++++++++++++ net/nbc.h | 39 +++++++++ net/net.c | 17 ++++ tools/Makefile | 6 ++ tools/sendnbc.c | 219 +++++++++++++++++++++++++++++++++++++++++++++++++ 9 files changed, 502 insertions(+), 1 deletions(-) create mode 100644 doc/README.netconsole create mode 100644 net/nbc.c create mode 100644 net/nbc.h create mode 100644 tools/sendnbc.c -- 1.7.2.3