Rev 4168 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4168 | Rev 4486 | ||
|---|---|---|---|
| Line 28... | Line 28... | ||
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
28 | * POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
29 | */ |
| 30 | 30 | ||
| 31 | #include <stdio.h> |
31 | #include <stdio.h> |
| 32 | #include <stdlib.h> |
32 | #include <stdlib.h> |
| 33 | #include <console.h> |
33 | #include <io/console.h> |
| 34 | #include "config.h" |
34 | #include "config.h" |
| 35 | #include "util.h" |
35 | #include "util.h" |
| 36 | #include "errors.h" |
36 | #include "errors.h" |
| 37 | #include "entry.h" |
37 | #include "entry.h" |
| 38 | #include "kcon.h" |
38 | #include "kcon.h" |
| Line 63... | Line 63... | ||
| 63 | printf("%s - incorrect number of arguments. Try `%s --help'\n", |
63 | printf("%s - incorrect number of arguments. Try `%s --help'\n", |
| 64 | cmdname, cmdname); |
64 | cmdname, cmdname); |
| 65 | return CMD_FAILURE; |
65 | return CMD_FAILURE; |
| 66 | } |
66 | } |
| 67 | 67 | ||
| 68 | console_kcon_enable(); |
68 | console_kcon_enable(fphone(stdout)); |
| 69 | 69 | ||
| 70 | return CMD_SUCCESS; |
70 | return CMD_SUCCESS; |
| 71 | } |
71 | } |
| 72 | 72 | ||