nixos-hardware/nxp
Ivan Nikolaenko 75b6ec4775
Add NXP i.MX8 SOC family support.
Currently there are two devices supported:
* imx8qm-mek
* imx8qxp-mek

Signed-off-by: Ivan Nikolaenko <ivan.nikolaenko@unikie.com>
2023-02-20 12:19:39 +02:00
..
common Add NXP i.MX8 SOC family support. 2023-02-20 12:19:39 +02:00
imx8qm-mek Add NXP i.MX8 SOC family support. 2023-02-20 12:19:39 +02:00
imx8qxp-mek Add NXP i.MX8 SOC family support. 2023-02-20 12:19:39 +02:00
README.md Add NXP i.MX8 SOC family support. 2023-02-20 12:19:39 +02:00

README.md

NXP i.MX8 SOC family support

1. Supported devices

2. How to use

Currently this NXP overlay is used for generating EFI-bootable NixOS images. Tow-Boot is used as a bootloader in our case, but U-Boot can also be used.

Code snippet example that enables imx8qm configuration:

{ nixos-hardware, }: {
  system = "aarch64-linux";
  modules = [
    nixos-hardware.nixosModules.imx8qm-mek
  ];
}