We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d767c59 commit 6d36a6bCopy full SHA for 6d36a6b
3 files changed
scripts/boot/qemu-e5500
@@ -0,0 +1,3 @@
1
+#!/bin/bash
2
+
3
+exec "$(dirname "$0")"/qemu-ppc64e $@
scripts/boot/qemu-e6500
@@ -0,0 +1,6 @@
+export CPU=e6500
4
+export QEMU_INITRD=ppc64-rootfs.cpio.gz
5
6
scripts/boot/qemu-ppc64e
@@ -36,13 +36,13 @@ def main():
36
setup_logging()
37
38
qconf = QemuConfig('ppce500')
39
+ qconf.cpu = 'e5500'
40
qconf.configure_from_env()
41
qconf.configure_from_args(sys.argv[1:])
42
qconf.qemu_path = 'qemu-system-ppc64'
43
qconf.net_tests = False
44
qconf.mem = '4G'
45
qconf.smp = 1
- qconf.cpu = 'e5500'
46
47
qconf.apply_defaults()
48
0 commit comments