[U-Boot] [PATCH] board/BuR/common: fix netconsole

netconsole had become defective over time and cleanups. Because the feature is used very rarely nobody did take notice about this defect.
With this patch the resulting syntax error on call will be fixed.
Signed-off-by: Hannes Schmelzer oe5hpm@oevsv.at
---
include/configs/bur_am335x_common.h | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-)
diff --git a/include/configs/bur_am335x_common.h b/include/configs/bur_am335x_common.h index b441fa0..8e38c2f 100644 --- a/include/configs/bur_am335x_common.h +++ b/include/configs/bur_am335x_common.h @@ -17,17 +17,13 @@ "defaultip=192.168.60.253\0" \ "defaultsip=192.168.60.254\0" \ "netconsole=echo switching to network console ...; " \ -"if dhcp; then " \ -"setenv ncip ${serverip}; else " \ -"setenv ncip 192.168.60.254; " \ -"setenv serverip 192.168.60.254; " \ -"setenv gatewayip 192.168.60.254; " \ -"setenv ipaddr 192.168.60.1; " \ -"fi;" \ -"setenv netdisplay0 '" \ -"setcurs 1 9; puts myip; setcurs 10 9; puts ${ipaddr};" \ -"setcurs 1 10;puts serverip; setcurs 10 10; puts ${serverip};" \ -"run netdisplay0; " \ +"if dhcp; then setenv ncip ${serverip}; " \ +"else " \ +"setenv ncip 192.168.60.254; setenv serverip 192.168.60.254; " \ +"setenv gatewayip 192.168.60.254; setenv ipaddr 192.168.60.1; " \ +"fi; " \ +"setcurs 1 9; lcdputs myip; setcurs 10 9; lcdputs ${ipaddr};" \ +"setcurs 1 10;lcdputs serverip; setcurs 10 10; lcdputs ${serverip};" \ "setenv stdout nc;setenv stdin nc;setenv stderr nc\0"
#define CONFIG_CMD_TIME

On Thu, May 28, 2015 at 04:41:54PM +0200, Hannes Schmelzer wrote:
netconsole had become defective over time and cleanups. Because the feature is used very rarely nobody did take notice about this defect.
With this patch the resulting syntax error on call will be fixed.
Signed-off-by: Hannes Schmelzer oe5hpm@oevsv.at
Applied to u-boot/master, thanks!
participants (2)
-
Hannes Schmelzer
-
Tom Rini