mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Merge pull request #43637 from qolii/hardkernel_update_and_defconfig
linux-hardkernel: 4.14.47-139 -> 4.14.55-146. Additionally, use vendo…
This commit is contained in:
commit
299db53476
@ -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";
|
||||
@ -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 {}))
|
||||
|
Loading…
Reference in New Issue
Block a user