Changeset ff3b3197 in mainline for generic/src/main/main.c


Ignore:
Timestamp:
2005-11-25T22:58:38Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f4338d2
Parents:
78c32b4
Message:

Implement basic kernel console command recognition.
Commands without arguments are now recognized.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/main/main.c

    r78c32b4 rff3b3197  
    3737#include <proc/task.h>
    3838#include <main/kinit.h>
     39#include <main/kconsole.h>
    3940#include <cpu.h>
    4041#include <align.h>
     
    158159        the_initialize(THE);
    159160       
     161        /*
     162         * kconsole data structures must be initialized very early
     163         * because other subsystems will register their respective
     164         * commands.
     165         */
     166        kconsole_init();
     167       
    160168        arch_pre_mm_init();
    161169        early_heap_init(config.base + hardcoded_ktext_size + hardcoded_kdata_size, heap_size + heap_delta);
Note: See TracChangeset for help on using the changeset viewer.