Rev 4201 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4201 | Rev 4537 | ||
---|---|---|---|
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 <vfs/vfs.h> |
|
34 | #include "config.h" |
35 | #include "config.h" |
35 | #include "util.h" |
36 | #include "util.h" |
36 | #include "errors.h" |
37 | #include "errors.h" |
37 | #include "entry.h" |
38 | #include "entry.h" |
38 | #include "kcon.h" |
39 | #include "kcon.h" |
Line 63... | Line 64... | ||
63 | printf("%s - incorrect number of arguments. Try `%s --help'\n", |
64 | printf("%s - incorrect number of arguments. Try `%s --help'\n", |
64 | cmdname, cmdname); |
65 | cmdname, cmdname); |
65 | return CMD_FAILURE; |
66 | return CMD_FAILURE; |
66 | } |
67 | } |
67 | 68 | ||
68 | console_kcon_enable(); |
69 | console_kcon_enable(fphone(stdout)); |
69 | 70 | ||
70 | return CMD_SUCCESS; |
71 | return CMD_SUCCESS; |
71 | } |
72 | } |
72 | 73 |