mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
hw: move target-independent files to subdirectories
This patch tackles all files that are compiled once, moving them to subdirectories of hw/. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
ce3b494cb5
commit
49ab747f66
227 changed files with 205 additions and 208 deletions
|
@ -1,36 +0,0 @@
|
|||
/*
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/hw.h"
|
||||
#include "hw/boards.h"
|
||||
|
||||
static void machine_none_init(QEMUMachineInitArgs *args)
|
||||
{
|
||||
}
|
||||
|
||||
static QEMUMachine machine_none = {
|
||||
.name = "none",
|
||||
.desc = "empty machine",
|
||||
.init = machine_none_init,
|
||||
.max_cpus = 0,
|
||||
DEFAULT_MACHINE_OPTIONS,
|
||||
};
|
||||
|
||||
static void register_machines(void)
|
||||
{
|
||||
qemu_register_machine(&machine_none);
|
||||
}
|
||||
|
||||
machine_init(register_machines);
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue