mirror of
https://xff.cz/git/u-boot/
synced 2025-09-02 17:22:22 +02:00
cli: Allow history to be disabled
When inputting text outside the command line we don't want history to be accessible. Add an option to control this. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -31,6 +31,7 @@ struct cli_ch_state {
|
||||
* @num: Current cursor position, where 0 is the start
|
||||
* @eol_num: Number of characters in the buffer
|
||||
* @insert: true if in 'insert' mode
|
||||
* @history: true if history should be accessible
|
||||
* @buf: Buffer containing line
|
||||
* @prompt: Prompt for the line
|
||||
*/
|
||||
@@ -39,6 +40,7 @@ struct cli_line_state {
|
||||
uint eol_num;
|
||||
uint len;
|
||||
bool insert;
|
||||
bool history;
|
||||
char *buf;
|
||||
const char *prompt;
|
||||
};
|
||||
|
Reference in New Issue
Block a user