mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
11 lines
318 B
Python
11 lines
318 B
Python
|
from ..qemu_config import QemuArchParams
|
||
|
|
||
|
QEMU_ARCH = QemuArchParams(linux_arch='sparc',
|
||
|
kconfig='''
|
||
|
CONFIG_SERIAL_8250=y
|
||
|
CONFIG_SERIAL_8250_CONSOLE=y''',
|
||
|
qemu_arch='sparc',
|
||
|
kernel_path='arch/sparc/boot/zImage',
|
||
|
kernel_command_line='console=ttyS0 mem=256M',
|
||
|
extra_qemu_params=['-m 256'])
|