2011-10-03 19:26:45 +00:00
|
|
|
/*
|
2012-02-15 23:51:15 +00:00
|
|
|
* Copyright (c) 2011-2012 The Chromium OS Authors.
|
2011-10-03 19:26:45 +00:00
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2012-02-15 23:51:15 +00:00
|
|
|
#include <asm/state.h>
|
2011-10-03 19:26:45 +00:00
|
|
|
|
2012-02-26 22:38:50 +00:00
|
|
|
int sandbox_main_loop_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-10-03 19:26:45 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2012-02-15 23:51:15 +00:00
|
|
|
int err;
|
|
|
|
|
|
|
|
err = state_init();
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2011-10-03 19:26:45 +00:00
|
|
|
/*
|
|
|
|
* Do pre- and post-relocation init, then start up U-Boot. This will
|
|
|
|
* never return.
|
|
|
|
*/
|
|
|
|
board_init_f(0);
|
|
|
|
}
|