mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 06:20:53 +07:00
5fa3ea047a
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
26 lines
514 B
Ruby
26 lines
514 B
Ruby
|
|
require 'syno_kconfig'
|
|
|
|
describe 'CONFIG_SYNO Basic' do
|
|
include SynoKconfig
|
|
|
|
#
|
|
# built-in configs for all platforms
|
|
#
|
|
%w[
|
|
CONFIG_SYNO_SYSTEM_CALL
|
|
CONFIG_SYNO_LIBS
|
|
CONFIG_SYNO_KWORK_STAT
|
|
CONFIG_SYNO_EXPORT_SYMBOL
|
|
CONFIG_SYNO_SWAP_FLAG
|
|
CONFIG_SYNO_DATA_CORRECTION
|
|
CONFIG_SYNO_DISPLAY_CPUINFO
|
|
CONFIG_SYNO_LOAD_AVERAGE
|
|
].each do |cfg|
|
|
it "#{cfg}=y" do
|
|
platforms.verify(cfg, builtin?)
|
|
end
|
|
end
|
|
end
|
|
|