[U-Boot] [PATCH 3/3] Add the NBC + netconsole corresponding documentation

2010-11-17 Thread tristan . lelong
From: Tristan Lelong tristan.lel...@blunderer.org Signed-off-by: Tristan Lelong tristan.lel...@blunderer.org --- doc/README.netconsole | 66 + 1 files changed, 66 insertions(+), 0 deletions(-) create mode 100644 doc/README.netconsole diff

[U-Boot] [PATCH 1/3] Add support for Net Boot Controller (NBC) packet

2010-11-17 Thread tristan . lelong
From: Tristan Lelong tristan.lel...@blunderer.org This adds the core NBC feature: * Integration into u-boot * NBC packet processing * NetConsole reconfigure Signed-off-by: Tristan Lelong tristan.lel...@blunderer.org --- common/main.c |5 ++ include/net.h |6 ++- net/Makefile |2

[U-Boot] [PATCH 0/3] Net Boot Controller

2010-11-17 Thread tristan . lelong
From: Tristan Lelong tristan.lel...@blunderer.org 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

[U-Boot] [PATCH 2/3] Add sendnbc tool to broadcast NBC magic packet

2010-11-17 Thread tristan . lelong
From: Tristan Lelong tristan.lel...@blunderer.org This tool send NBC packet filled with data provided on command line It can be used in combination with netconsole by calling: BOARD_IP=192.168.0.2 ./sendnbc -i $BOARD_IP ./netconsole $BOARD_IP Signed-off-by: Tristan Lelong tristan.lel