mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
fb3970ef7d
Test for the option `networking.wireless.athUserRegulatoryDomain` to make sure the underlying patch still applies for the latest kernel. Also see NixOS/nixpkgs#108725.
17 lines
433 B
Nix
17 lines
433 B
Nix
import ./make-test-python.nix ({ pkgs, ...} : {
|
|
name = "kernel-latest-ath-user-regd";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ veehaitch ];
|
|
};
|
|
|
|
machine = { pkgs, ... }:
|
|
{
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
networking.wireless.athUserRegulatoryDomain = true;
|
|
};
|
|
|
|
testScript =
|
|
''
|
|
assert "CONFIG_ATH_USER_REGD=y" in machine.succeed("zcat /proc/config.gz")
|
|
'';
|
|
})
|