Add mnt-reform2-nitrogen8m

https://mntre.com/
This commit is contained in:
Emery Hemingway
2021-04-05 10:29:34 +02:00
parent 1facb18f43
commit f39a23dab7
8 changed files with 289 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ buildUBoot, fetchgit }:
buildUBoot rec {
pname = "uboot-reform2-imx8mq";
version = "2020-06-01";
src = fetchgit {
url = "https://source.mntmn.com/MNT/reform-boundary-uboot.git";
rev = version;
sha256 = "0ychnwhisjqm0gzyz0nv9xynl9g114xmxpwz4vm0l5w6sc60jshw";
};
defconfig = "nitrogen8m_som_4g_defconfig";
extraMeta.platforms = [ "aarch64-linux" ];
filesToInstall = [ "flash.bin" ];
patches = [ ./shell-syntax.patch ./env_vars.patch ];
makeFlags = filesToInstall;
}