Skip to content

Commit

Permalink
linux-hardkernel: 4.14.47-139 -> 4.14.55-146. Additionally, use vendo…
Browse files Browse the repository at this point in the history
…r defconfig.
  • Loading branch information
qolii committed Jul 16, 2018
1 parent c4adce7 commit 5ac7334
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions pkgs/os-specific/linux/kernel/linux-hardkernel-4.14.nix
@@ -1,10 +1,10 @@
{ stdenv, buildPackages, hostPlatform, fetchFromGitHub, perl, buildLinux, libelf, utillinux, ... } @ args:

buildLinux (args // rec {
version = "4.14.47-139";
version = "4.14.55-146";

# modDirVersion needs to be x.y.z.
modDirVersion = "4.14.47";
modDirVersion = "4.14.55";

# branchVersion needs to be x.y.
extraMeta.branch = "4.14";
Expand All @@ -13,7 +13,19 @@ buildLinux (args // rec {
owner = "hardkernel";
repo = "linux";
rev = version;
sha256 = "0jjgrmvi1h8zs8snnvghnjd422yfmn7jv9y1n7xikmfv4nvwqrkv";
sha256 = "1bm1njng4rwfylgnqv06vabkvybm9rikqj1lsb7p9qcs3y1kw6mh";
};

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 "");

} // (args.argsOverride or {}))

0 comments on commit 5ac7334

Please sign in to comment.