mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-20 13:08:08 +07:00
17 lines
280 B
Ruby
17 lines
280 B
Ruby
|
|
require 'syno_kconfig'
|
|
|
|
describe 'CONFIG_KERNEL_LZMA' do
|
|
include SynoKconfig
|
|
|
|
it "CONFIG_KERNEL_LZMA=y if not arm platforms" do
|
|
platforms
|
|
.reject { |p| p.aarch64? }
|
|
.verify(desc, builtin?)
|
|
|
|
platforms
|
|
.select { |p| p.aarch64? }
|
|
.verify(desc, disabled?)
|
|
end
|
|
end
|