platforms: Add ARMv7 (hard float) multiplatform

Based on the 'multi_v7_defconfig' that supports numerous boards.
wip/yesman
Tuomas Tynkkynen 9 years ago
parent 84ff78dd8b
commit 0d5e144210
  1. 18
      pkgs/top-level/platforms.nix

@ -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";
};
};
}

Loading…
Cancel
Save