2020-08-19 13:17:19 +02:00
|
|
|
specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: [files(
|
2020-08-06 13:40:26 +02:00
|
|
|
'arch_init.c',
|
|
|
|
'balloon.c',
|
|
|
|
'cpus.c',
|
|
|
|
'cpu-throttle.c',
|
2020-10-28 12:36:57 +01:00
|
|
|
'datadir.c',
|
2020-10-28 13:04:08 +01:00
|
|
|
'globals.c',
|
2020-10-06 09:05:29 +02:00
|
|
|
'physmem.c',
|
2020-08-06 13:40:26 +02:00
|
|
|
'ioport.c',
|
2020-10-28 12:36:57 +01:00
|
|
|
'rtc.c',
|
2020-11-13 09:25:19 +01:00
|
|
|
'runstate.c',
|
2020-08-06 13:40:26 +02:00
|
|
|
'memory.c',
|
|
|
|
'memory_mapping.c',
|
|
|
|
'qtest.c',
|
2020-08-19 13:17:19 +02:00
|
|
|
'vl.c',
|
|
|
|
'cpu-timers.c',
|
2020-12-11 17:52:43 +01:00
|
|
|
'runstate-action.c',
|
2020-08-19 13:17:19 +02:00
|
|
|
)])
|
|
|
|
|
|
|
|
specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: [files(
|
|
|
|
'icount.c'
|
|
|
|
)])
|
2020-10-06 09:01:22 +02:00
|
|
|
|
|
|
|
softmmu_ss.add(files(
|
|
|
|
'bootdevice.c',
|
|
|
|
'dma-helpers.c',
|
|
|
|
'qdev-monitor.c',
|
2020-10-06 09:05:29 +02:00
|
|
|
), sdl, libpmem, libdaxctl)
|
2020-10-06 09:01:22 +02:00
|
|
|
|
|
|
|
softmmu_ss.add(when: 'CONFIG_TPM', if_true: files('tpm.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_SECCOMP', if_true: [files('qemu-seccomp.c'), seccomp])
|
|
|
|
softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))
|