mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 11:39:53 +00:00
9b30179460
This is the final stage in correcting the naming convention with respect to sabre, APB and PBM. It is effectively a file rename from apb.c to sabre.c along with touching up a few constants to remove the remaining references to APB. Note that as part of the rename process the configuration variable CONFIG_PCI_APB is changed to CONFIG_PCI_SABRE. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Acked-by: Artyom Tarasenko <atar4qemu@gmail.com>
20 lines
573 B
Makefile
20 lines
573 B
Makefile
common-obj-y += pam.o
|
|
|
|
# PPC devices
|
|
common-obj-$(CONFIG_PREP_PCI) += prep.o
|
|
common-obj-$(CONFIG_GRACKLE_PCI) += grackle.o
|
|
# NewWorld PowerMac
|
|
common-obj-$(CONFIG_UNIN_PCI) += uninorth.o
|
|
# PowerPC E500 boards
|
|
common-obj-$(CONFIG_PPCE500_PCI) += ppce500.o
|
|
|
|
# ARM devices
|
|
common-obj-$(CONFIG_VERSATILE_PCI) += versatile.o
|
|
|
|
common-obj-$(CONFIG_PCI_SABRE) += sabre.o
|
|
common-obj-$(CONFIG_FULONG) += bonito.o
|
|
common-obj-$(CONFIG_PCI_PIIX) += piix.o
|
|
common-obj-$(CONFIG_PCI_Q35) += q35.o
|
|
common-obj-$(CONFIG_PCI_GENERIC) += gpex.o
|
|
common-obj-$(CONFIG_PCI_XILINX) += xilinx-pcie.o
|