mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 19:46:10 +01:00
Add Microchip Icicle-kit board support.
* Uses Linux kernel released by Microchip - https://github.com/linux4microchip/linux.git - Ver: v5.15 Tag: linux4microchip+fpga-2023.02 * Uses UBoot released by Microchip - Ver: uboot-2022-01 Tag: linux4microchip+fpga-2023.02 To generate NixOS sd image for MICROCHIP icicle-kit refer: https://github.com/tiiuae/ghaf.git Signed-off-by: Ganga Ram <Ganga.Ram@tii.ae>
This commit is contained in:
parent
3006d2860a
commit
ba8b9209ce
12 changed files with 264 additions and 0 deletions
15
microchip/icicle-kit/default.nix
Normal file
15
microchip/icicle-kit/default.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(import ./overlay.nix)
|
||||
];
|
||||
|
||||
imports = [
|
||||
../common/modules.nix
|
||||
];
|
||||
|
||||
hardware.deviceTree = {
|
||||
name = "microchip/mpfs-icicle-kit.dtb";
|
||||
};
|
||||
}
|
||||
3
microchip/icicle-kit/overlay.nix
Normal file
3
microchip/icicle-kit/overlay.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
final: _prev: {
|
||||
uboot-icicle-kit = final.callPackage ./../common/bsp/uboot.nix { pkgs = final; targetBoard = "microchip_mpfs_icicle";};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue