
Hi all
I'm wondering how to use te Network Console Protocol. I've read the README.NetConsole file and discoverd it, but does this feature is available on every boards-configs, such as the at91 one?
I've tried to set the env variable like this: setenv nc 'setenv stdout nc;setenv stdin nc' setenv ncip 192.168.0.66 (wich is the board's IP) run nc
and run the following script on my Linux Computer: #! /bin/bash
[ $# = 1 ] || { echo "Usage: $0 target_ip" >&2 ; exit 1 ; } TARGET_IP=$1
stty icanon echo intr ^T ./ncb & nc -u ${TARGET_IP} 6666 stty icanon echo intr ^C kill 0
but when i try to use ./ncip.sh 192.168.0.66, nothings happen So i thoutgh the ncip have to be the one of my desktop computer, but nothing better
Does anyone have already use this feature?
With regards
Frederic