2012-08-23 00:22:05 +04:00
|
|
|
/*
|
|
|
|
* Empty machine
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2012
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-01-26 21:17:29 +03:00
|
|
|
#include "qemu/osdep.h"
|
2012-08-23 00:22:05 +04:00
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "hw/hw.h"
|
|
|
|
#include "hw/boards.h"
|
|
|
|
|
2014-05-07 18:42:57 +04:00
|
|
|
static void machine_none_init(MachineState *machine)
|
2012-08-23 00:22:05 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-09-04 21:37:08 +03:00
|
|
|
static void machine_none_machine_init(MachineClass *mc)
|
2012-08-23 00:22:05 +04:00
|
|
|
{
|
2015-09-04 21:37:08 +03:00
|
|
|
mc->desc = "empty machine";
|
|
|
|
mc->init = machine_none_init;
|
|
|
|
mc->max_cpus = 0;
|
2012-08-23 00:22:05 +04:00
|
|
|
}
|
|
|
|
|
2015-09-04 21:37:08 +03:00
|
|
|
DEFINE_MACHINE("none", machine_none_machine_init)
|