cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

s390.py (380B)


      1from ..qemu_config import QemuArchParams
      2
      3QEMU_ARCH = QemuArchParams(linux_arch='s390',
      4			   kconfig='''
      5CONFIG_EXPERT=y
      6CONFIG_TUNE_ZEC12=y
      7CONFIG_NUMA=y
      8CONFIG_MODULES=y''',
      9			   qemu_arch='s390x',
     10			   kernel_path='arch/s390/boot/bzImage',
     11			   kernel_command_line='console=ttyS0',
     12			   extra_qemu_params=[
     13					   '-machine', 's390-ccw-virtio',
     14					   '-cpu', 'qemu',])