// Support for generating ACPI tables (on emulators) // DO NOT ADD NEW FEATURES HERE. (See paravirt.c / biostables.c instead.) // // Copyright (C) 2008-2010 Kevin O'Connor // Copyright (C) 2006 Fabrice Bellard // // This file may be distributed under the terms of the GNU LGPLv3 license. #include "config.h" // CONFIG_* #include "output.h" // dprintf void acpi_setup(void) { if (! CONFIG_ACPI) return; dprintf(1, "ACPI tables for qemu 1.6 and older are not supported any more.\n"); }