summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorPeter Tyser <ptyser@xes-inc.com>2009-10-25 15:12:54 -0500
committerWolfgang Denk <wd@denx.de>2009-10-27 20:58:25 +0100
commitecc5500ee487170d8af6ff893fd1e0082380a01a (patch)
treeec205cb583ada1338205f8b250e975932e42910a /common
parentf923943843cd617d681387e7fe81a48060cc6401 (diff)
downloadtalos-obmc-uboot-ecc5500ee487170d8af6ff893fd1e0082380a01a.tar.gz
talos-obmc-uboot-ecc5500ee487170d8af6ff893fd1e0082380a01a.zip
readline(): Add ability to modify a string buffer
If the 'buf' parameter is a non-0-length string, its contents will be edited. Previously, the initial contents of 'buf' were ignored and the user entered its contents from scratch. This change is necessary to support the upcoming "editenv" command but could also be used for future commands which require a user to modify an existing string. Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'common')
-rw-r--r--common/main.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/common/main.c b/common/main.c
index b47e443f7b..10d8904170 100644
--- a/common/main.c
+++ b/common/main.c
@@ -720,6 +720,10 @@ static int cread_line(const char *const prompt, char *buf, unsigned int *len)
int insert = 1;
int esc_len = 0;
char esc_save[8];
+ int init_len = strlen(buf);
+
+ if (init_len)
+ cread_add_str(buf, init_len, 1, &num, &eol_num, buf, *len);
while (1) {
#ifdef CONFIG_BOOT_RETRY_TIME
@@ -937,6 +941,12 @@ static int cread_line(const char *const prompt, char *buf, unsigned int *len)
*/
int readline (const char *const prompt)
{
+ /*
+ * If console_buffer isn't 0-length the user will be prompted to modify
+ * it instead of entering it from scratch as desired.
+ */
+ console_buffer[0] = '\0';
+
return readline_into_buffer(prompt, console_buffer);
}
OpenPOWER on IntegriCloud