2012-08-22 22:22:05 +02: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 19:17:29 +01:00
|
|
|
#include "qemu/osdep.h"
|
2012-08-22 22:22:05 +02:00
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "hw/hw.h"
|
|
|
|
#include "hw/boards.h"
|
|
|
|
|
2014-05-07 16:42:57 +02:00
|
|
|
static void machine_none_init(MachineState *machine)
|
2012-08-22 22:22:05 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-09-04 20:37:08 +02:00
|
|
|
static void machine_none_machine_init(MachineClass *mc)
|
2012-08-22 22:22:05 +02:00
|
|
|
{
|
2015-09-04 20:37:08 +02:00
|
|
|
mc->desc = "empty machine";
|
|
|
|
mc->init = machine_none_init;
|
|
|
|
mc->max_cpus = 0;
|
2012-08-22 22:22:05 +02:00
|
|
|
}
|
|
|
|
|
2015-09-04 20:37:08 +02:00
|
|
|
DEFINE_MACHINE("none", machine_none_machine_init)
|