Rev 4011 | Rev 4132 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4011 | Rev 4090 | ||
|---|---|---|---|
| Line 77... | Line 77... | ||
| 77 | .description = "List of supported commands.", |
77 | .description = "List of supported commands.", |
| 78 | .func = cmd_help, |
78 | .func = cmd_help, |
| 79 | .argc = 0 |
79 | .argc = 0 |
| 80 | }; |
80 | }; |
| 81 | 81 | ||
| 82 | static cmd_info_t exit_info = { |
- | |
| 83 | .name = "exit", |
- | |
| 84 | .description = "Exit kconsole.", |
- | |
| 85 | .argc = 0 |
- | |
| 86 | }; |
- | |
| 87 | - | ||
| 88 | static int cmd_reboot(cmd_arg_t *argv); |
82 | static int cmd_reboot(cmd_arg_t *argv); |
| 89 | static cmd_info_t reboot_info = { |
83 | static cmd_info_t reboot_info = { |
| 90 | .name = "reboot", |
84 | .name = "reboot", |
| 91 | .description = "Reboot.", |
85 | .description = "Reboot.", |
| 92 | .func = cmd_reboot, |
86 | .func = cmd_reboot, |
| Line 455... | Line 449... | ||
| 455 | &call2_info, |
449 | &call2_info, |
| 456 | &call3_info, |
450 | &call3_info, |
| 457 | &continue_info, |
451 | &continue_info, |
| 458 | &cpus_info, |
452 | &cpus_info, |
| 459 | &desc_info, |
453 | &desc_info, |
| 460 | &exit_info, |
- | |
| 461 | &reboot_info, |
454 | &reboot_info, |
| 462 | &uptime_info, |
455 | &uptime_info, |
| 463 | &halt_info, |
456 | &halt_info, |
| 464 | &help_info, |
457 | &help_info, |
| 465 | &ipc_info, |
458 | &ipc_info, |