diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-02 16:51:02 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-02 16:51:02 +0000 |
commit | 1bcee01487fc1bc3c43cd444c864c97a7a2d99f9 (patch) | |
tree | 95295be19de09ca7c59703b851db3cc906c84392 /hw/sun4u.c | |
parent | a722772711d3a5772dfb967a2310951fe88cb967 (diff) |
More realistic max_cpus
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5604 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/sun4u.c')
-rw-r--r-- | hw/sun4u.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/sun4u.c b/hw/sun4u.c index 057d598d7f..057e78fc49 100644 --- a/hw/sun4u.c +++ b/hw/sun4u.c @@ -588,7 +588,7 @@ QEMUMachine sun4u_machine = { .init = sun4u_init, .ram_require = PROM_SIZE_MAX + VGA_RAM_SIZE, .nodisk_ok = 1, - .max_cpus = 16, + .max_cpus = 1, // XXX for now }; QEMUMachine sun4v_machine = { @@ -597,7 +597,7 @@ QEMUMachine sun4v_machine = { .init = sun4v_init, .ram_require = PROM_SIZE_MAX + VGA_RAM_SIZE, .nodisk_ok = 1, - .max_cpus = 16, + .max_cpus = 1, // XXX for now }; QEMUMachine niagara_machine = { @@ -606,5 +606,5 @@ QEMUMachine niagara_machine = { .init = niagara_init, .ram_require = PROM_SIZE_MAX + VGA_RAM_SIZE, .nodisk_ok = 1, - .max_cpus = 16, + .max_cpus = 1, // XXX for now }; |