summaryrefslogtreecommitdiffstats
path: root/src/hci
Commit message (Collapse)AuthorAgeFilesLines
...
* Make "boot" a synonym for "imgexec", to match grubMichael Brown2007-01-141-0/+4
|
* Rename "boot" to "autoboot"Michael Brown2007-01-141-4/+4
|
* Added ENOENT, since HTTP 404 translates to itMichael Brown2007-01-121-0/+1
|
* Add "dhcp" commandMichael Brown2007-01-121-0/+103
|
* Don't print "<NULL>" when we use imgautoselect().Michael Brown2007-01-121-1/+2
|
* Allow "imgexec" with no arguments to boot the file that was loaded withMichael Brown2007-01-121-9/+18
| | | | "kernel".
* Cleaner separation between imgXXX() functions and image_cmd.cMichael Brown2007-01-121-51/+309
|
* Add basic "fetch" and "imgstat" commands.Michael Brown2007-01-121-0/+228
|
* Be silent if there are no network interfacesMichael Brown2007-01-121-6/+0Star
|
* Added strerror(0)=="No error", so that TCP protocols can useMichael Brown2007-01-111-0/+1
| | | | | strerror(rc) in their closed() methods without producing "Error 0x0000" when the connection is closed normally.
* Add "route" command (which currently only displays the routing table; itMichael Brown2007-01-101-0/+85
| | | | can't modify it).
* Force ordering of commands within help list.Michael Brown2007-01-101-13/+13
|
* Force ordering of commands in help list.Michael Brown2007-01-101-13/+14
|
* Add "name" field to struct device to allow human-readable hardware deviceMichael Brown2007-01-103-8/+12
| | | | | | | | | | | names. Add "dev" pointer in struct net_device to tie network interfaces back to a hardware device. Force natural alignment of data types in __table() macros. This seems to prevent gcc from taking the unilateral decision to occasionally increase their alignment (which screws up the table packing).
* Move header file for usr/autoboot.c to include/usrMichael Brown2007-01-101-4/+8
|
* Added network interface management commandsMichael Brown2007-01-101-0/+182
|
* Reset character attributes before start of welcome banner, in caseMichael Brown2007-01-091-1/+1
| | | | | it's a serial console and remembers state from the previous program run.
* Avoid creating implicit memcpy()sMichael Brown2007-01-052-9/+8Star
|
* Print explicit error message on iSCSI boot failure, and addMichael Brown2006-12-211-0/+1
| | | | "Permission denied" as an error text to strerror().
* Use getkey() and symbolic key names.Michael Brown2006-12-201-6/+8
|
* Use symbolic key names, and avoid moving beyond end of stringMichael Brown2006-12-201-9/+17
|
* Use getkey() and symbolic key names.Michael Brown2006-12-201-4/+5
|
* Define KEY_MIN and use it in kb.c.Michael Brown2006-12-201-2/+2
|
* settings_ui() now returns a status code.Michael Brown2006-12-202-5/+14
|
* Add EIO.Michael Brown2006-12-201-5/+4Star
| | | | Kill errortab array; it can screw up alignment.
* Split the (quick hack) boot logic out from main.c to autoboot.c, add aMichael Brown2006-12-201-0/+21
| | | | | "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 "config" command to access config UIMichael Brown2006-12-201-0/+35
|
* 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
|
* 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-201-7/+70
| | | | the option config UI.
* Move {show,set,clear}_setting() to {show,set,clear}_named_setting().Michael Brown2006-12-202-10/+9Star
| | | | | | | | 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-201-0/+49
|
* Alert when saving settings failsMichael Brown2006-12-201-5/+27
|
* Fix (hopefully) the scrolling logicMichael Brown2006-12-201-11/+11
|
* Add (partly-functional) user interface for editing configuration settingsMichael Brown2006-12-201-0/+285
|
* Don't automatically redraw the edit box; this allows better inheritance.Michael Brown2006-12-201-19/+0Star
|
* Editable text box widget based on mucurses and edit_string.Michael Brown2006-12-201-0/+115
|
* 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
|
* Move nvo_cmd.c to hci/commands.Michael Brown2006-12-201-0/+111
|
* Separated out (and tidied up) shell banner codeMichael Brown2006-12-201-0/+65
|
* Minimal shell implementation using readline() and system().Michael Brown2006-12-201-0/+86
|
* Use stdlib.h for malloc() instead of malloc.h.Michael Brown2006-12-201-1/+1
|
* 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-201-1/+15
|