-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into staging
- Loading branch information
Showing
76 changed files
with
2,759 additions
and
1,029 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -212,6 +212,7 @@ | |
fuuzetsu = "Mateusz Kowalczyk <[email protected]>"; | ||
fuzzy-id = "Thomas Bach <[email protected]>"; | ||
fxfactorial = "Edgar Aroutiounian <[email protected]>"; | ||
gabesoft = "Gabriel Adomnicai <[email protected]>"; | ||
gal_bolle = "Florent Becker <[email protected]>"; | ||
garbas = "Rok Garbas <[email protected]>"; | ||
garrison = "Jim Garrison <[email protected]>"; | ||
|
@@ -574,6 +575,7 @@ | |
taku0 = "Takuo Yonezawa <[email protected]>"; | ||
tari = "Peter Marheine <[email protected]>"; | ||
tavyc = "Octavian Cerna <[email protected]>"; | ||
ltavard = "Laure Tavard <[email protected]>"; | ||
teh = "Tom Hunger <[email protected]>"; | ||
telotortium = "Robert Irelan <[email protected]>"; | ||
thall = "Niclas Thall <[email protected]>"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import ./make-test.nix ({ pkgs, ...} : { | ||
name = "kernel-copperhead"; | ||
meta = with pkgs.stdenv.lib.maintainers; { | ||
maintainers = [ nequissimus ]; | ||
}; | ||
|
||
machine = { config, lib, pkgs, ... }: | ||
{ | ||
boot.kernelPackages = pkgs.linuxPackages_hardened_copperhead; | ||
}; | ||
|
||
testScript = | ||
'' | ||
$machine->succeed("uname -a"); | ||
$machine->succeed("uname -s | grep 'Linux'"); | ||
$machine->succeed("uname -a | grep '${pkgs.linuxPackages_hardened_copperhead.kernel.modDirVersion}'"); | ||
$machine->succeed("uname -a | grep 'hardened'"); | ||
''; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import ./make-test.nix ({ pkgs, ...} : { | ||
name = "kernel-latest"; | ||
meta = with pkgs.stdenv.lib.maintainers; { | ||
maintainers = [ nequissimus ]; | ||
}; | ||
|
||
machine = { config, lib, pkgs, ... }: | ||
{ | ||
boot.kernelPackages = pkgs.linuxPackages_latest; | ||
}; | ||
|
||
testScript = | ||
'' | ||
$machine->succeed("uname -s | grep 'Linux'"); | ||
$machine->succeed("uname -a | grep '${pkgs.linuxPackages_latest.kernel.version}'"); | ||
''; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import ./make-test.nix ({ pkgs, ...} : { | ||
name = "kernel-lts"; | ||
meta = with pkgs.stdenv.lib.maintainers; { | ||
maintainers = [ nequissimus ]; | ||
}; | ||
|
||
machine = { config, lib, pkgs, ... }: | ||
{ | ||
boot.kernelPackages = pkgs.linuxPackages; | ||
}; | ||
|
||
testScript = | ||
'' | ||
$machine->succeed("uname -s | grep 'Linux'"); | ||
$machine->succeed("uname -a | grep '${pkgs.linuxPackages.kernel.version}'"); | ||
''; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.