platforms: add CompuLab Utilite (armv7)

This commit is contained in:
Eric Litak
2017-04-19 14:09:56 -07:00
parent c3eca1f8dc
commit 127347f1fd
3 changed files with 44 additions and 0 deletions
+14
View File
@@ -123,6 +123,20 @@ in rec {
filesToInstall = ["u-boot.bin"];
};
ubootUtilite = buildUBoot rec {
defconfig = "cm_fx6_defconfig";
targetPlatforms = ["armv7l-linux"];
filesToInstall = ["u-boot-with-nand-spl.imx"];
buildFlags = "u-boot-with-nand-spl.imx";
postConfigure = ''
cat >> .config << EOF
CONFIG_CMD_SETEXPR=y
EOF
'';
# sata init; load sata 0 $loadaddr u-boot-with-nand-spl.imx
# sf probe; sf update $loadaddr 0 80000
};
ubootWandboard = buildUBoot rec {
defconfig = "wandboard_defconfig";
targetPlatforms = ["armv7l-linux"];