2023-04-26 09:46:11 +02:00
|
|
|
# Microchip Icicle-kit board support
|
|
|
|
|
|
|
|
## 1. Supported devices
|
|
|
|
- [Microchip Icicle Kit](https://www.microchip.com/en-us/development-tool/MPFS-ICICLE-KIT-ES) (**mpfs-icicle-kit**) - device-specific U-boot and Linux kernel, nixos configuration example.
|
|
|
|
|
|
|
|
## 2. How to use?
|
|
|
|
Currently this overlay is used for generating bootable NixOS SD images.
|
|
|
|
|
|
|
|
Code snippet example that enables icicle-kit configuration:
|
|
|
|
```
|
|
|
|
{ nixos-hardware, }: {
|
2024-02-27 13:17:03 +01:00
|
|
|
system = "riscv64-linux";
|
2023-04-26 09:46:11 +02:00
|
|
|
modules = [
|
|
|
|
nixos-hardware.nixosModules.icicle-kit
|
|
|
|
];
|
|
|
|
}
|
|
|
|
```
|