Change references to qemu in Coreboot-v2 calls to qemu-x86.
The patch was followed by these svn commands: svn mv targets/emulation/qemu-i386/ targets/emulation/qemu-x86 svn mv --force targets/emulation/qemu-i386/ targets/emulation/qemu-x86 svn mv --force src/mainboard/emulation/qemu-i386/ src/mainboard/emulation/qemu-x86 svn mv --force src/cpu/emulation/qemu-i386/ src/cpu/emulation/qemu-x86 Signed-off-by: Myles Watson <myles@pel.cs.byu.edu> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3093 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
f2b380ad85
commit
b8c2aa2ce8
|
@ -1,6 +0,0 @@
|
|||
struct cpu_emulation_qemu_i386_config
|
||||
{
|
||||
};
|
||||
|
||||
extern struct chip_operations cpu_emulation_qemu_i386_ops;
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
#ifndef NORTHBRIDGE_EMULATION_QEMU_I386_H
|
||||
#define NORTHBRIDGE_EMULATION_QEMU_I386_H
|
||||
|
||||
|
||||
#endif /* NORTHBRIDGE_EMULATION_QEMU_I386 */
|
|
@ -0,0 +1,6 @@
|
|||
struct cpu_emulation_qemu_x86_config
|
||||
{
|
||||
};
|
||||
|
||||
extern struct chip_operations cpu_emulation_qemu_x86_ops;
|
||||
|
|
@ -138,7 +138,7 @@ static void enable_dev(struct device *dev)
|
|||
}
|
||||
}
|
||||
|
||||
struct chip_operations cpu_emulation_qemu_i386_ops = {
|
||||
struct chip_operations cpu_emulation_qemu_x86_ops = {
|
||||
CHIP_NAME("QEMU Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
|
@ -0,0 +1,5 @@
|
|||
#ifndef NORTHBRIDGE_EMULATION_QEMU_X86_H
|
||||
#define NORTHBRIDGE_EMULATION_QEMU_X86_H
|
||||
|
||||
|
||||
#endif /* NORTHBRIDGE_EMULATION_QEMU_X86 */
|
|
@ -1,4 +0,0 @@
|
|||
extern struct chip_operations mainboard_emulation_qemu_i386_ops;
|
||||
|
||||
struct mainboard_emulation_qemu_i386_config {
|
||||
};
|
|
@ -104,7 +104,7 @@ mainboardinit ./auto.inc
|
|||
dir /pc80
|
||||
config chip.h
|
||||
|
||||
chip cpu/emulation/qemu-i386
|
||||
chip cpu/emulation/qemu-x86
|
||||
device pci_domain 0 on
|
||||
device pci 0.0 on end
|
||||
device pci 1.0 on end
|
|
@ -0,0 +1,4 @@
|
|||
extern struct chip_operations mainboard_emulation_qemu_x86_ops;
|
||||
|
||||
struct mainboard_emulation_qemu_x86_config {
|
||||
};
|
|
@ -33,7 +33,7 @@ static const struct pci_driver vga_driver __pci_driver = {
|
|||
.device = 0x00b8,
|
||||
};
|
||||
|
||||
struct chip_operations mainboard_emulation_qemu_i386_ops = {
|
||||
struct chip_operations mainboard_emulation_qemu_x86_ops = {
|
||||
CHIP_NAME("QEMU Mainboard")
|
||||
};
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# This will make a target directory of ./emulation_qemu-i386
|
||||
# This will make a target directory of ./emulation_qemu-x86
|
||||
|
||||
target emulation_qemu-i386
|
||||
mainboard emulation/qemu-i386
|
||||
target emulation_qemu-x86
|
||||
mainboard emulation/qemu-x86
|
||||
|
||||
__COMPRESSION__
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# This will make a target directory of ./emulation_qemu-i386
|
||||
# This will make a target directory of ./emulation_qemu-x86
|
||||
|
||||
target qemu-i386
|
||||
mainboard emulation/qemu-i386
|
||||
target qemu-x86
|
||||
mainboard emulation/qemu-x86
|
||||
|
||||
option ROM_SIZE=2048*1024
|
||||
option CONFIG_COMPRESSED_PAYLOAD_LZMA=0
|
|
@ -1,7 +1,7 @@
|
|||
# This will make a target directory of ./emulation_qemu-i386
|
||||
# This will make a target directory of ./emulation_qemu-x86
|
||||
|
||||
target qemu-i386-OLPC
|
||||
mainboard emulation/qemu-i386
|
||||
target qemu-x86-OLPC
|
||||
mainboard emulation/qemu-x86
|
||||
|
||||
option ROM_SIZE=1024*1024 - (128 * 1024)
|
||||
option CONFIG_COMPRESSED_PAYLOAD_LZMA=1
|
|
@ -1,7 +1,7 @@
|
|||
# This will make a target directory of ./emulation_qemu-i386
|
||||
# This will make a target directory of ./emulation_qemu-x86
|
||||
|
||||
target qemu-i386
|
||||
mainboard emulation/qemu-i386
|
||||
target qemu-x86
|
||||
mainboard emulation/qemu-x86
|
||||
|
||||
option ROM_SIZE=256*1024
|
||||
|
Loading…
Reference in New Issue