* Patch by Carl Riechers, 17 Mar 2004:
authorwdenk <wdenk>
Tue, 23 Mar 2004 22:37:33 +0000 (22:37 +0000)
committerwdenk <wdenk>
Tue, 23 Mar 2004 22:37:33 +0000 (22:37 +0000)
  Ignore '\0' characters in console input for use with telnet and
  telco pads.

* Patch by Leon Kukovec, 17 Mar 2004:
  typo fix for strswab prototype #ifdef

CHANGELOG
CREDITS
common/main.c
include/linux/string.h

index 1e7ea2a29a0f13b0a96882f13047a7e39d8af2e0..328f78c858c7d8ec8399fb69ae28757ba5d94b6a 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,13 @@
 Changes for U-Boot 1.0.2:
 ======================================================================
 
+* Patch by Carl Riechers, 17 Mar 2004:
+  Ignore '\0' characters in console input for use with telnet and
+  telco pads.
+
+* Patch by Leon Kukovec, 17 Mar 2004:
+  typo fix for strswab prototype #ifdef
+
 * Patches by Thomas Viehweger, 16 Mar 2004:
   - show PCI clock frequency on MPC8260 systems
   - add FCC_PSMR_RMII flag for HiP7 processors
diff --git a/CREDITS b/CREDITS
index b0bd8bca8d4ffd27152d0578392812c321e5e1e4..5a06bb2c1455f7e41b273b39507d97d3d1c5aee6 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -252,6 +252,10 @@ E: rof@sysgo.de
 D: Initial support for SSV-DNP1110, SMC91111 driver
 W: www.elinos.com
 
+N: Tolunay Orkun
+E: torkun@nextio.com
+D: Support for Cogent CSB272 board
+
 N: Keith Outwater
 E: keith_outwater@mvis.com
 D: Support for generic/custom MPC860T boards (GEN860T, GEN860T_SC)
index 817c1b461d2967b83b614de76b22e8a23346b88f..156e4bc3d8a3505cb8602a075f9295944f5c6d8f 100644 (file)
@@ -574,6 +574,9 @@ int readline (const char *const prompt)
                        puts ("\r\n");
                        return (p - console_buffer);
 
+               case '\0':                              /* nul                  */
+                       continue;
+
                case 0x03:                              /* ^C - break           */
                        console_buffer[0] = '\0';       /* discard input */
                        return (-1);
index 403ae982beb248e53356c8f16b5e4f5d3c5358cb..1a45fd3215c89a25a9085301b0166a7e1e9705ac 100644 (file)
@@ -59,7 +59,7 @@ extern __kernel_size_t strnlen(const char *,__kernel_size_t);
 #ifndef __HAVE_ARCH_STRDUP
 extern char * strdup(const char *);
 #endif
-#ifdef __HAVE_ARCH_STRSWAB
+#ifndef __HAVE_ARCH_STRSWAB
 extern char * strswab(const char *);
 #endif