mirror of
https://github.com/samueldr/wip-pinebook-pro.git
synced 2024-11-27 05:19:44 +01:00
Normalize names
This commit is contained in:
parent
509a969d8b
commit
77d4fc6688
3 changed files with 5 additions and 5 deletions
|
@ -5,7 +5,7 @@ WIP stuff to get started on the pinebook pro.
|
|||
Assuming `/dev/mmcblk0` is an SD card.
|
||||
|
||||
```
|
||||
$ nix-build -A pkgs.u-boot-pinebookpro
|
||||
$ nix-build -A pkgs.uBootPinebookPro
|
||||
$ lsblk /dev/mmcblk0 && sudo dd if=result/idbloader.img of=/dev/mmcblk0 bs=512 seek=64 oflag=direct,sync && sudo dd if=result/u-boot.itb of=/dev/mmcblk0 bs=512 seek=16384 oflag=direct,sync
|
||||
```
|
||||
|
||||
|
|
|
@ -15,5 +15,5 @@
|
|||
(import ./overlay.nix)
|
||||
];
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages-pinebookpro;
|
||||
boot.kernelPackages = pkgs.linuxPackages_pinebookpro;
|
||||
}
|
||||
|
|
|
@ -6,8 +6,8 @@ in
|
|||
{
|
||||
# Alternative BSP u-boot, with nvme support if desired
|
||||
# * https://gitlab.manjaro.org/manjaro-arm/packages/core/uboot-pinebookpro
|
||||
u-boot-pinebookpro = callPackage ./u-boot {};
|
||||
linux-pinebookpro = callPackage ./kernel {
|
||||
uBootPinebookPro = callPackage ./u-boot {};
|
||||
linux_pinebookpro = callPackage ./kernel {
|
||||
kernelPatches = [
|
||||
kernelPatches.bridge_stp_helper
|
||||
#kernelPatches.export_kernel_fpu_functions
|
||||
|
@ -33,5 +33,5 @@ in
|
|||
}
|
||||
];
|
||||
};
|
||||
linuxPackages-pinebookpro = linuxPackagesFor final.linux-pinebookpro;
|
||||
linuxPackages_pinebookpro = linuxPackagesFor final.linux_pinebookpro;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue