Skip to content

Commit 6d36a6b

Browse files
committed
Add qemu-e5500 and qemu-e6500 scripts
1 parent d767c59 commit 6d36a6b

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

scripts/boot/qemu-e5500

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
exec "$(dirname "$0")"/qemu-ppc64e $@

scripts/boot/qemu-e6500

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
export CPU=e6500
4+
export QEMU_INITRD=ppc64-rootfs.cpio.gz
5+
6+
exec "$(dirname "$0")"/qemu-ppc64e $@

scripts/boot/qemu-ppc64e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ def main():
3636
setup_logging()
3737

3838
qconf = QemuConfig('ppce500')
39+
qconf.cpu = 'e5500'
3940
qconf.configure_from_env()
4041
qconf.configure_from_args(sys.argv[1:])
4142
qconf.qemu_path = 'qemu-system-ppc64'
4243
qconf.net_tests = False
4344
qconf.mem = '4G'
4445
qconf.smp = 1
45-
qconf.cpu = 'e5500'
4646

4747
qconf.apply_defaults()
4848

0 commit comments

Comments
 (0)