summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Add insert/delete and document keys, and documentation.Michael Brown2006-12-201-15/+19
|
* Added code to interpret ANSI keypress sequences into KEY_XXX constants.Michael Brown2006-12-202-0/+78
|
* Key definitionsMichael Brown2006-12-201-0/+78
|
* Define KEY_MIN and use it in kb.c.Michael Brown2006-12-202-2/+3
|
* Prevent NULL from ever pointing to some real code or data. (This wasMichael Brown2006-12-202-0/+10
| | | | | | causing the serial console to ignore input, because it happened to end up linked with serial_ischar() at address 0, which core/console.c decided was invalid).
* Return -EIO when verification fails, instead of -EINVAL.Michael Brown2006-12-201-1/+1
|
* settings_ui() now returns a status code.Michael Brown2006-12-203-6/+15
|
* Add EIO.Michael Brown2006-12-201-5/+4Star
| | | | Kill errortab array; it can screw up alignment.
* Close UDP connection when DHCP completes.Michael Brown2006-12-201-0/+3
|
* No longer neededMichael Brown2006-12-201-2/+0Star
|
* Obsolete for some time now.Michael Brown2006-12-201-751/+0Star
|
* Split the (quick hack) boot logic out from main.c to autoboot.c, add aMichael Brown2006-12-207-14/+85
| | | | | "boot" command to attempt booting from within the command shell, fall back to shell if boot fails for any reason.
* Explicitly call erase(), to cope with platforms where the ANSI clearMichael Brown2006-12-201-0/+5
| | | | screen sequence doesn't work (like bios_console.c on some platforms).
* Add attr_{get,set,on,off} as static inlines.Michael Brown2006-12-201-4/+20
|
* Add "config" command to access config UIMichael Brown2006-12-204-0/+53
|
* Add instruction row, and save optionMichael Brown2006-12-201-17/+58
|
* Only need printf(), so use vsprintf.h instead of console.hMichael Brown2006-12-202-2/+2
|
* 8-bit integers are 1 byte long, not 8...Michael Brown2006-12-201-1/+1
|
* Clear message on alert row before printing new oneMichael Brown2006-12-201-0/+1
|
* Added descriptive text for settings and setting types, and display it inMichael Brown2006-12-203-9/+86
| | | | the option config UI.
* Move {show,set,clear}_setting() to {show,set,clear}_named_setting().Michael Brown2006-12-204-37/+74
| | | | | | | | Introduce new {show,set,clear}_setting() that take a struct setting * rather than a const char *. set_setting() handles calling clear_setting() when appropriate, so that individual setting types don't have to check for empty strings.
* Added messages for some of the most common errorsMichael Brown2006-12-201-0/+11
|
* Split strerror() out from errno.cMichael Brown2006-12-202-45/+51
|
* Alert when saving settings failsMichael Brown2006-12-201-5/+27
|
* Increase colour pair limitMichael Brown2006-12-201-1/+1
|
* Fix (hopefully) the scrolling logicMichael Brown2006-12-201-11/+11
|
* Split error-message table portions of errno.h out to gpxe/errortab.hMichael Brown2006-12-204-15/+24
|
* Move strerror() prototype to string.h, where it belongsMichael Brown2006-12-202-2/+2
|
* Differentiate between ENOSPC and ENOMEMMichael Brown2006-12-201-13/+13
|
* Use -ENOSPC rather than -ENOMEM, to distinguish the cases "generic out ofMichael Brown2006-12-201-5/+5
| | | | memory" and "no space left for DHCP options"
* Fix prototype of sleep() and move it to unistd.hMichael Brown2006-12-203-3/+5
|
* Add (partly-functional) user interface for editing configuration settingsMichael Brown2006-12-202-1/+287
|
* Don't automatically redraw the edit box; this allows better inheritance.Michael Brown2006-12-202-20/+15Star
|
* Editable text box widget based on mucurses and edit_string.Michael Brown2006-12-202-0/+150
|
* Reset screen on exit as well as entryMichael Brown2006-12-201-6/+3Star
|
* Add "exit --help" to preempt the pedants.Michael Brown2006-12-201-2/+9
|
* Remove obsolete mechanism for including nvo_cmd.oMichael Brown2006-12-201-2/+0Star
|
* Select required commands via config.hMichael Brown2006-12-202-0/+17
|
* Remove warning (at least on platforms with uint32_t == unsigned long).Michael Brown2006-12-201-1/+1
|
* Move nvo_cmd.c to hci/commands.Michael Brown2006-12-202-3/+1Star
|
* Functionality now replaced by a combination of readline() and system().Michael Brown2006-12-205-543/+0Star
|
* Use new minimal shellMichael Brown2006-12-201-1/+6
|
* Separated out (and tidied up) shell banner codeMichael Brown2006-12-202-0/+77
|
* Minimal shell implementation using readline() and system().Michael Brown2006-12-202-0/+98
|
* Use stdlib.h for malloc() instead of malloc.h.Michael Brown2006-12-205-5/+4Star
|
* Explicitly print out-of-memory message to avoid tricking the user intoMichael Brown2006-12-201-7/+7
| | | | thinking that a command executed successfully.
* Functioning readline()Michael Brown2006-12-201-2/+47
|
* Provide an edit history to allow caller to efficiently update display.Michael Brown2006-12-202-4/+27
|
* Explicitly move cursor to top-left of screen, in case the clear screenMichael Brown2006-12-191-1/+1
| | | | call doesn't do it.
* Skeletal (non-echoing) version of readline()Michael Brown2006-12-192-0/+80
|