summaryrefslogtreecommitdiffstats
path: root/src/usr
Commit message (Collapse)AuthorAgeFilesLines
...
* Add basic "fetch" and "imgstat" commands.Michael Brown2007-01-122-0/+130
|
* Warn when net device on an active route is not open.Michael Brown2007-01-101-0/+2
|
* Add route() function to display routing table.Michael Brown2007-01-102-0/+44
|
* Try booting from the "boot" network device first (i.e. the one which weMichael Brown2007-01-101-7/+80
| | | | | were loaded from). The code to identify this device isn't present yet, but the code to act upon the knowledge is.
* Add "name" field to struct device to allow human-readable hardware deviceMichael Brown2007-01-101-2/+3
| | | | | | | | | | | 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-1/+3
|
* Added network interface management commandsMichael Brown2007-01-102-13/+75
|
* Add "name" field to network device, to facilitate netdev commands.Michael Brown2007-01-101-1/+1
|
* Make open() and close() an official part of the netdevice API.Michael Brown2007-01-041-3/+15
| | | | Call netdevice's poll() and transmit() methods only when device is open.
* Split the (quick hack) boot logic out from main.c to autoboot.c, add aMichael Brown2006-12-201-0/+40
"boot" command to attempt booting from within the command shell, fall back to shell if boot fails for any reason.