Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/kcon/kcon.c

    r79ae36dd ra000878c  
    3232#include <stdlib.h>
    3333#include <io/console.h>
     34#include <vfs/vfs.h>
    3435#include "config.h"
    3536#include "util.h"
     
    4142static const char *cmdname = "kcon";
    4243
    43 /* Display help for kcon in various levels */
     44/* Dispays help for kcon in various levels */
    4445void help_cmd_kcon(unsigned int level)
    4546{
    4647        printf("`kcon' switches to the kernel debug console.\n");
    47        
    48         if (level != HELP_SHORT)
    49                 printf("Usage: %s\n", cmdname);
    50        
     48
     49        if (level != HELP_SHORT) {
     50                printf("Usage:  %s\n", cmdname);
     51        }
     52
    5153        return;
    5254}
     
    5557int cmd_kcon(char **argv)
    5658{
    57         unsigned int argc = cli_count_args(argv);
    58        
     59        unsigned int argc;
     60
     61        argc = cli_count_args(argv);
     62
    5963        if (argc != 1) {
    6064                printf("%s - incorrect number of arguments. Try `%s --help'\n",
    61                     cmdname, cmdname);
     65                        cmdname, cmdname);
    6266                return CMD_FAILURE;
    6367        }
    64        
    65         if (console_kcon())
    66                 return CMD_SUCCESS;
    67         else
    68                 return CMD_FAILURE;
     68
     69        console_kcon_enable(fphone(stdout));
     70
     71        return CMD_SUCCESS;
    6972}
     73
Note: See TracChangeset for help on using the changeset viewer.