Skip to content

Commit

Permalink
prep: Move PReP machine to hw/ppc/
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
  • Loading branch information
afaerber committed Jan 30, 2013
1 parent 8d5ce2e commit 7561015
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion MAINTAINERS
Expand Up @@ -395,7 +395,7 @@ PReP
M: Andreas Färber <andreas.faerber@web.de>
L: qemu-ppc@nongnu.org
S: Odd Fixes
F: hw/ppc_prep.c
F: hw/ppc/prep.c
F: hw/prep_pci.[hc]
F: hw/pc87312.[hc]

Expand Down
3 changes: 2 additions & 1 deletion hw/ppc/Makefile.objs
Expand Up @@ -2,7 +2,6 @@
obj-y = ppc.o ppc_booke.o
# PREP target
obj-y += mc146818rtc.o
obj-y += ppc_prep.o
# IBM pSeries (sPAPR)
obj-$(CONFIG_PSERIES) += spapr.o spapr_hcall.o spapr_rtas.o spapr_vio.o
obj-$(CONFIG_PSERIES) += xics.o spapr_vty.o spapr_llan.o spapr_vscsi.o
Expand All @@ -24,6 +23,8 @@ obj-y += xilinx_ethlite.o

obj-y := $(addprefix ../,$(obj-y))

# PReP
obj-y += prep.o
# OldWorld PowerMac
obj-y += mac_oldworld.o
# NewWorld PowerMac
Expand Down
28 changes: 14 additions & 14 deletions hw/ppc_prep.c → hw/ppc/prep.c
Expand Up @@ -21,23 +21,23 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "hw.h"
#include "nvram.h"
#include "pc.h"
#include "serial.h"
#include "fdc.h"
#include "hw/hw.h"
#include "hw/nvram.h"
#include "hw/pc.h"
#include "hw/serial.h"
#include "hw/fdc.h"
#include "net/net.h"
#include "sysemu/sysemu.h"
#include "isa.h"
#include "pci/pci.h"
#include "pci/pci_host.h"
#include "ppc.h"
#include "boards.h"
#include "hw/isa.h"
#include "hw/pci/pci.h"
#include "hw/pci/pci_host.h"
#include "hw/ppc.h"
#include "hw/boards.h"
#include "qemu/log.h"
#include "ide.h"
#include "loader.h"
#include "mc146818rtc.h"
#include "pc87312.h"
#include "hw/ide.h"
#include "hw/loader.h"
#include "hw/mc146818rtc.h"
#include "hw/pc87312.h"
#include "sysemu/blockdev.h"
#include "sysemu/arch_init.h"
#include "exec/address-spaces.h"
Expand Down

0 comments on commit 7561015

Please sign in to comment.