Files
OpenCellular/core/host/main.c
Vic Yang b448746bac Add boot key test
This checks boot key combination like Power-F3-ESC and Power-F3-Down can
be properly detected.

BUG=chrome-os-partner:19236
TEST=Pass kb_scan test
BRANCH=None

Change-Id: I180918977299219a8421798dac2ab9fed84ef9a2
Signed-off-by: Vic Yang <victoryang@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/167802
2013-09-05 07:20:56 +00:00

61 lines
1.1 KiB
C

/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* Entry point of unit test executable */
#include "console.h"
#include "flash.h"
#include "hooks.h"
#include "keyboard_scan.h"
#include "system.h"
#include "task.h"
#include "test_util.h"
#include "timer.h"
#include "uart.h"
/* Console output macros */
#define CPUTS(outstr) cputs(CC_SYSTEM, outstr)
#define CPRINTF(format, args...) cprintf(CC_SYSTEM, format, ## args)
const char *__prog_name;
const char *__get_prog_name(void)
{
return __prog_name;
}
int main(int argc, char **argv)
{
__prog_name = argv[0];
register_test_end_hook();
flash_pre_init();
system_pre_init();
system_common_pre_init();
test_init();
timer_init();
#ifdef HAS_TASK_KEYSCAN
keyboard_scan_init();
#endif
hook_init();
uart_init();
if (system_jumped_to_this_image()) {
CPRINTF("[%T Emulator initialized after sysjump]\n");
} else {
CPUTS("\n\n--- Emulator initialized after reboot ---\n");
CPUTS("[Reset cause: ");
system_print_reset_flags();
CPUTS("]\n");
}
task_start();
return 0;
}