Move files around...

- "kernel" and "repos.nix" --> "common/"
- "firmware/surface-go/ath10k" --> "surface-go/firmware/ath10k"
- Update where "kernel", "firmware/surface-go" and "repos.nix" can be found
This commit is contained in:
mexisme 2023-01-10 15:22:06 +13:00
parent ca29e25c39
commit 03df3d2d53
11 changed files with 18 additions and 7 deletions

View File

@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./kernel
];
}

View File

@ -111,8 +111,12 @@
name = "ms-surface/0009-cameras";
patch = patchDir + "/0009-cameras.patch";
}
# {
# name = "ms-surface/0010-amd-gpio";
# patch = patchDir + "/0010-amd-gpio.patch";
# }
{
name = "ms-surface/0010-amd-gpio";
patch = patchDir + "/0010-amd-gpio.patch";
}
{
name = "ms-surface/0011-rtc";
patch = patchDir + "/0011-rtc.patch";
}
]

View File

@ -5,8 +5,8 @@ let
in {
imports = [
./kernel
./firmware/surface-go/ath10k
./common
./surface-go/firmware/ath10k
];
microsoft-surface.kernelVersion = mkDefault "6.0.11";

View File

@ -1,7 +1,7 @@
{ stdenv, lib, pkgs, firmwareLinuxNonfree, ... }:
let
repos = pkgs.callPackage ../../../repos.nix {};
repos = pkgs.callPackage ../../../common/repos.nix {};
killernetworking_firmware = repos.surface-go-ath10k-firmware_backup + "/K1535_Debian";
in stdenv.mkDerivation {