1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

* fix kernel name

This commit is contained in:
Kaspar Schleiser 2010-10-11 17:32:58 +02:00
parent 2bc373984a
commit 57c9d3423f

View File

@ -1,6 +1,6 @@
#include <stdio.h>
#include "board.h"
#include "kernel_intern.h"
#include <board.h>
#include <kernel_intern.h>
extern void board_init();
@ -10,7 +10,7 @@ __attribute__ ((constructor)) static void startup() {
board_init();
puts("FireKernel MSP430 hardware initialization complete.\n");
puts("ukleos MSP430 hardware initialization complete.\n");
kernel_init();
}