linux_dsm_epyc7002/synology/synoconfigs-spec/CONFIG_SYNO_IOMMU_PASSTHROUGH.rb
AuxXxilium 5fa3ea047a init: add dsm gpl source
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
2024-07-05 18:00:04 +02:00

17 lines
306 B
Ruby

require 'syno_kconfig'
describe 'CONFIG_SYNO_IOMMU_PASSTHROUGH' do
include SynoKconfig
it "CONFIG_SYNO_IOMMU_PASSTHROUGH=y if not virtual platforms" do
platforms
.reject { |p| p.virtual? }
.verify(desc, builtin?)
platforms
.select { |p| p.virtual? }
.verify(desc, disabled?)
end
end