mirror of
https://codeberg.org/mart-w/nixos-x13s.git
synced 2024-11-22 07:04:47 +01:00
feat(kernel): add jhovold_6_7 variant
This commit is contained in:
parent
adf1dd9e91
commit
4a423f366d
|
@ -17,6 +17,8 @@ let
|
||||||
pkgs.linuxPackagesFor (
|
pkgs.linuxPackagesFor (
|
||||||
if cfg.kernel == "jhovold" then
|
if cfg.kernel == "jhovold" then
|
||||||
x13sPackages.linux_jhovold
|
x13sPackages.linux_jhovold
|
||||||
|
else if cfg.kernel == "jhovold_6_7" then
|
||||||
|
x13sPackages.linux_jhovold_6_7
|
||||||
else if cfg.kernel == "steev" then
|
else if cfg.kernel == "steev" then
|
||||||
x13sPackages.linux_steev
|
x13sPackages.linux_steev
|
||||||
else
|
else
|
||||||
|
@ -38,6 +40,7 @@ in
|
||||||
kernel = lib.mkOption {
|
kernel = lib.mkOption {
|
||||||
type = lib.types.enum [
|
type = lib.types.enum [
|
||||||
"jhovold"
|
"jhovold"
|
||||||
|
"jhovold_6_7"
|
||||||
"mainline"
|
"mainline"
|
||||||
"steev"
|
"steev"
|
||||||
];
|
];
|
||||||
|
|
|
@ -14,6 +14,18 @@
|
||||||
"url": "https://api.github.com/repos/alsa-project/alsa-ucm-conf/tarball/v1.2.11",
|
"url": "https://api.github.com/repos/alsa-project/alsa-ucm-conf/tarball/v1.2.11",
|
||||||
"hash": "1jcn0x6bbg69p1ygxnh1zn33sd9lpbll4bnhvkzw1fjpmw7igjkz"
|
"hash": "1jcn0x6bbg69p1ygxnh1zn33sd9lpbll4bnhvkzw1fjpmw7igjkz"
|
||||||
},
|
},
|
||||||
|
"linux-jhovold-6_7": {
|
||||||
|
"type": "Git",
|
||||||
|
"repository": {
|
||||||
|
"type": "GitHub",
|
||||||
|
"owner": "jhovold",
|
||||||
|
"repo": "linux"
|
||||||
|
},
|
||||||
|
"branch": "wip/sc8280xp-v6.7",
|
||||||
|
"revision": "b929f8eed9ad1f156cae932dea741bc4383e6367",
|
||||||
|
"url": "https://github.com/jhovold/linux/archive/b929f8eed9ad1f156cae932dea741bc4383e6367.tar.gz",
|
||||||
|
"hash": "12j92hns95rviajyxpj57hgdr1k9lrd6rzxng87m4v4m7pi8v51l"
|
||||||
|
},
|
||||||
"linux-jhovold": {
|
"linux-jhovold": {
|
||||||
"type": "Git",
|
"type": "Git",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
@ -21,6 +21,12 @@ rec {
|
||||||
defconfig = "johan_defconfig";
|
defconfig = "johan_defconfig";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
linux_jhovold_6_7 = pkgs.callPackage linux_x13s_pkg {
|
||||||
|
src = sources.linux-jhovold-6_7;
|
||||||
|
version = "6.7.0";
|
||||||
|
defconfig = "johan_defconfig";
|
||||||
|
};
|
||||||
|
|
||||||
linux_steev = pkgs.callPackage linux_x13s_pkg {
|
linux_steev = pkgs.callPackage linux_x13s_pkg {
|
||||||
src = sources.linux-steev;
|
src = sources.linux-steev;
|
||||||
version = "6.7.5";
|
version = "6.7.5";
|
||||||
|
|
Loading…
Reference in a new issue