meson: convert hw/tpm
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
06677ce161
commit
70c2cfedd3
@ -29,7 +29,6 @@ devices-dirs-$(CONFIG_SCSI) += scsi/
|
||||
devices-dirs-y += sd/
|
||||
devices-dirs-y += ssi/
|
||||
devices-dirs-y += timer/
|
||||
devices-dirs-$(CONFIG_TPM) += tpm/
|
||||
endif
|
||||
|
||||
common-obj-y += $(devices-dirs-y)
|
||||
|
@ -3,6 +3,7 @@ subdir('mem')
|
||||
subdir('nubus')
|
||||
subdir('semihosting')
|
||||
subdir('smbios')
|
||||
subdir('tpm')
|
||||
subdir('usb')
|
||||
subdir('vfio')
|
||||
subdir('virtio')
|
||||
|
@ -1,6 +0,0 @@
|
||||
obj-$(call lor,$(CONFIG_TPM_TIS),$(CONFIG_TPM_CRB)) += tpm_ppi.o
|
||||
common-obj-$(CONFIG_TPM_TIS_ISA) += tpm_tis_isa.o
|
||||
common-obj-$(CONFIG_TPM_TIS_SYSBUS) += tpm_tis_sysbus.o
|
||||
common-obj-$(CONFIG_TPM_TIS) += tpm_tis_common.o
|
||||
common-obj-$(CONFIG_TPM_CRB) += tpm_crb.o
|
||||
obj-$(CONFIG_TPM_SPAPR) += tpm_spapr.o
|
8
hw/tpm/meson.build
Normal file
8
hw/tpm/meson.build
Normal file
@ -0,0 +1,8 @@
|
||||
softmmu_ss.add(when: 'CONFIG_TPM_TIS', if_true: files('tpm_tis_common.c'))
|
||||
softmmu_ss.add(when: 'CONFIG_TPM_TIS_ISA', if_true: files('tpm_tis_isa.c'))
|
||||
softmmu_ss.add(when: 'CONFIG_TPM_TIS_SYSBUS', if_true: files('tpm_tis_sysbus.c'))
|
||||
softmmu_ss.add(when: 'CONFIG_TPM_CRB', if_true: files('tpm_crb.c'))
|
||||
|
||||
specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TPM_TIS'], if_true: files('tpm_ppi.c'))
|
||||
specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TPM_CRB'], if_true: files('tpm_ppi.c'))
|
||||
specific_ss.add(when: 'CONFIG_TPM_SPAPR', if_true: files('tpm_spapr.c'))
|
Loading…
Reference in New Issue
Block a user