mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 08:40:53 +07:00
5fa3ea047a
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
17 lines
306 B
Ruby
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
|