about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2023-10-11 13:13:59 +0200
committerajs124 <git@ajs124.de>2023-10-15 01:19:36 +0200
commit17d99c500b93c773bbbe6c3706724f38063ee96c (patch)
treecf93dcea2cfeec10398ccfa445fd000baaeb460d /pkgs/os-specific
parent536f5cab520aa1f2c1f6c82aa6f6b3f4d6b759b1 (diff)
downloadnixlib-17d99c500b93c773bbbe6c3706724f38063ee96c.tar
nixlib-17d99c500b93c773bbbe6c3706724f38063ee96c.tar.gz
nixlib-17d99c500b93c773bbbe6c3706724f38063ee96c.tar.bz2
nixlib-17d99c500b93c773bbbe6c3706724f38063ee96c.tar.lz
nixlib-17d99c500b93c773bbbe6c3706724f38063ee96c.tar.xz
nixlib-17d99c500b93c773bbbe6c3706724f38063ee96c.tar.zst
nixlib-17d99c500b93c773bbbe6c3706724f38063ee96c.zip
linux_hardkernel_4_14: remove
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-hardkernel-4.14.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-hardkernel-4.14.nix b/pkgs/os-specific/linux/kernel/linux-hardkernel-4.14.nix
deleted file mode 100644
index 69bbdf648d22..000000000000
--- a/pkgs/os-specific/linux/kernel/linux-hardkernel-4.14.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ buildPackages, fetchFromGitHub, fetchurl, perl, buildLinux, libelf, util-linux, kernelPatches ? [], ... } @ args:
-
-buildLinux (args // rec {
-  version = "4.14.180-176";
-
-  # modDirVersion needs to be x.y.z.
-  modDirVersion = "4.14.180";
-
-  # branchVersion needs to be x.y.
-  extraMeta.branch = "4.14";
-
-  src = fetchFromGitHub {
-    owner = "hardkernel";
-    repo = "linux";
-    rev = version;
-    sha256 = "0n7i7a2bkrm9p1wfr20h54cqm32fbjvwyn703r6zm1f6ivqhk43v";
-  };
-
-  kernelPatches = args.kernelPatches ++ [{
-    name = "usbip-tools-fno-common";
-    patch = fetchurl {
-      url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/patch/?id=d5efc2e6b98fe661dbd8dd0d5d5bfb961728e57a";
-      hash = "sha256-1CXYCV5zMLA4YdbCr8cO2N4CHEDzQChS9qbKYHPm3U4=";
-    };
-  }];
-
-  defconfig = "odroidxu4_defconfig";
-
-  # This extraConfig is (only) required because the gator module fails to build as-is.
-  extraConfig = ''
-
-    GATOR n
-
-    # This attempted fix applies correctly but does not fix the build.
-    #GATOR_MALI_MIDGARD_PATH ${src}/drivers/gpu/arm/midgard
-
-  '' + (args.extraConfig or "");
-
-  extraMeta.platforms = [ "armv7l-linux" ];
-
-} // (args.argsOverride or {}))