blob: fb3dcd2248da3f27169adde22a9868e77b908783 [file] [log] [blame]
Daisuke Nojiri599c32d2014-12-03 12:09:58 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Daisuke Nojiri599c32d2014-12-03 12:09:58 -080014 */
15
16#include <console/console.h>
Aaron Durbin0946a1b2015-05-01 16:48:54 -050017#include <program_loading.h>
Patrick Georgi3957ddc2015-07-07 19:25:14 +020018#include <timestamp.h>
Daisuke Nojiri599c32d2014-12-03 12:09:58 -080019#include <vendorcode/google/chromeos/chromeos.h>
20
21void main(void)
22{
23 console_init();
Patrick Georgi3957ddc2015-07-07 19:25:14 +020024 timestamp_init(timestamp_get());
Aaron Durbin0946a1b2015-05-01 16:48:54 -050025 run_romstage();
Daisuke Nojiri599c32d2014-12-03 12:09:58 -080026}