platforms: Add ARMv7 (hard float) multiplatform

Based on the 'multi_v7_defconfig' that supports numerous boards.
This commit is contained in:
Tuomas Tynkkynen 2015-05-06 11:15:46 +03:00
parent 84ff78dd8b
commit 0d5e144210

View file

@ -483,4 +483,22 @@ rec {
float = "hard";
};
};
armv7l-hf-multiplatform = {
name = "armv7l-hf-multiplatform";
kernelMajor = "2.6";
kernelHeadersBaseConfig = "multi_v7_defconfig";
kernelBaseConfig = "multi_v7_defconfig";
kernelArch = "arm";
kernelAutoModules = false;
kernelExtraConfig = "";
kernelTarget = "zImage";
kernelDTB = true;
uboot = null;
gcc = {
arch = "armv7-a";
fpu = "vfpv3-d16";
float = "hard";
};
};
}