mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 00:50:50 +07:00
5fa3ea047a
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
19 lines
369 B
Ruby
19 lines
369 B
Ruby
|
|
require 'syno_kconfig'
|
|
|
|
describe 'CONFIG_SYNO_FUSE_*' do
|
|
include SynoKconfig
|
|
|
|
# all configs with this prefix should be examined
|
|
scope(/^CONFIG_SYNO_FUSE_/)
|
|
|
|
configs
|
|
.select { |cfg| cfg =~ /^CONFIG_SYNO_FUSE_/ }
|
|
.each do |cfg|
|
|
it "#{cfg}=y" do
|
|
platforms.verify(cfg, builtin?)
|
|
end
|
|
end
|
|
end
|
|
|