mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-22 19:09:42 +01:00
nxp imx8mp-evk/imx8mq-evk documentation
Signed-off-by: Ganga Ram <Ganga.Ram@tii.ae>
This commit is contained in:
parent
53e2a96a9e
commit
f12e5fd7ec
2 changed files with 21 additions and 0 deletions
|
@ -244,6 +244,8 @@ See code for all available configurations.
|
|||
| [Microsoft Surface Range (Common Modules)](microsoft/surface/common) | `<nixos-hardware/microsoft/surface/common>` |
|
||||
| [Microsoft Surface Pro 3](microsoft/surface-pro/3) | `<nixos-hardware/microsoft/surface-pro/3>` |
|
||||
| [Morefine M600](morefine/m600) | `<nixos-hardware/morefine/m600>` |
|
||||
| [NXP iMX8 MPlus Evaluation Kit](nxp/imx8mp-evk) | `<nixos-hardware/nxp/imx8mp-evk>` |
|
||||
| [NXP iMX8 MQuad Evaluation Kit](nxp/imx8mq-evk) | `<nixos-hardware/nxp/imx8mq-evk>` |
|
||||
| [Hardkernel Odroid HC4](hardkernel/odroid-hc4/default.nix) | `<nixos-hardware/hardkernel/odroid-hc4>` |
|
||||
| [Hardkernel Odroid H3](hardkernel/odroid-h3/default.nix) | `<nixos-hardware/hardkernel/odroid-h3>` |
|
||||
| [Omen 15-en0010ca](omen/15-en0010ca) | `<nixos-hardware/omen/15-en0010ca>` |
|
||||
|
|
|
@ -5,6 +5,8 @@
|
|||
- [i.MX8QuadXPlus Multisensory Enablement Kit](https://www.nxp.com/design/development-boards/i-mx-evaluation-and-development-boards/i-mx-8quadxplus-multisensory-enablement-kit-mek:MCIMX8QXP-CPU) (**imx8qxp-mek**) - device-specific U-Boot and Linux kernel.
|
||||
|
||||
## 2. How to use
|
||||
|
||||
### 2.1 For imx8qm-mek
|
||||
Currently this NXP overlay is used for generating EFI-bootable NixOS images.
|
||||
I recommend to use [Tow-Boot](https://tow-boot.org/) as a bootloader, but U-Boot from this overlay can also be used.
|
||||
U-Boot was tested separately from NixOS.
|
||||
|
@ -18,3 +20,20 @@ Code snippet example that enables imx8qm configuration:
|
|||
];
|
||||
}
|
||||
```
|
||||
|
||||
### 2.2 For imx8mq-evk/imx8mp-evk
|
||||
This NXP overlay is used for generating sdimage.
|
||||
Current configuration uses uboot as a bootloader. It provides an options to use optee-os which is currently disabled. It can be enabled using `enable-tee` boolean argument avalable in `imx8m<q/p>-boot.nix`, which is `false` by default.
|
||||
|
||||
Code snippet example that enables 'imx8mp-evk/emx8mq-evk' configuration:
|
||||
|
||||
```
|
||||
{ nixos-hardware, }: {
|
||||
system = "aarch64-linux";
|
||||
modules = [
|
||||
nixos-hardware.nixosModules.imx8mp-evk #For imx8mp-evk
|
||||
#nixos-hardware.nixosModules.imx8mq-evk #For imx8mq-evk
|
||||
];
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue