1
0
Fork 0
mirror of https://github.com/samueldr/wip-pinebook-pro.git synced 2024-09-28 17:17:23 +02:00
wip-pinebook-pro/overlay.nix

29 lines
1 KiB
Nix
Raw Normal View History

2020-01-06 21:21:02 +01:00
final: super:
let
2020-01-06 21:21:57 +01:00
inherit (final) callPackage kernelPatches linuxPackagesFor;
2020-01-06 21:21:02 +01:00
in
{
# Alternative BSP u-boot, with nvme support if desired
# * https://gitlab.manjaro.org/manjaro-arm/packages/core/uboot-pinebookpro
2020-01-06 22:03:48 +01:00
uBootPinebookPro = callPackage ./u-boot {};
uBootPinebookProExternalFirst = callPackage ./u-boot {
externalFirst = true;
};
# The unqualified kernel attr is deprecated.
linux_pinebookpro = throw "The linux_pinebookpro attribute has been replaced by linux_pinebookpro_latest.";
linuxPackages_pinebookpro = throw "The linuxPackages_pinebookpro attribute has been replaced by linuxPackages_pinebookpro_latest.";
linux_pinebookpro_latest = callPackage ./kernel/latest {
2020-01-06 21:21:57 +01:00
kernelPatches = [
kernelPatches.bridge_stp_helper
kernelPatches.export_kernel_fpu_functions."5.3"
2020-01-06 21:21:57 +01:00
];
};
linuxPackages_pinebookpro_latest = linuxPackagesFor final.linux_pinebookpro_latest;
2020-01-07 21:09:54 +01:00
pinebookpro-firmware = callPackage ./firmware {};
2020-01-07 21:58:19 +01:00
pinebookpro-keyboard-updater = callPackage ./keyboard-updater {};
2020-01-06 21:21:02 +01:00
}