Skip to content

Commit d870118

Browse files
ariloubonzini
authored andcommittedApr 6, 2022
hw: hyperv: Initial commit for Synthetic Debugging device
Signed-off-by: Jon Doron <[email protected]> Reviewed-by: Emanuele Giuseppe Esposito <[email protected]> Message-Id: <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
1 parent 73d2407 commit d870118

File tree

4 files changed

+414
-0
lines changed

4 files changed

+414
-0
lines changed
 

‎hw/hyperv/Kconfig

+5
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,8 @@ config VMBUS
1111
bool
1212
default y
1313
depends on HYPERV
14+
15+
config SYNDBG
16+
bool
17+
default y
18+
depends on VMBUS

‎hw/hyperv/meson.build

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
specific_ss.add(when: 'CONFIG_HYPERV', if_true: files('hyperv.c'))
22
specific_ss.add(when: 'CONFIG_HYPERV_TESTDEV', if_true: files('hyperv_testdev.c'))
33
specific_ss.add(when: 'CONFIG_VMBUS', if_true: files('vmbus.c'))
4+
specific_ss.add(when: 'CONFIG_SYNDBG', if_true: files('syndbg.c'))

0 commit comments

Comments
 (0)
Please sign in to comment.