linux_chromiumos: require 64bit build host
I noticed that almost all the Hydra build failures were on i686. Sure enough, upstream says that you need an x86_64 machine to build the kernel.
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
{ stdenv, fetchgit, perl, buildLinux, ncurses, openssh, ... } @ args:
|
{ stdenv, fetchgit, perl, buildLinux, ncurses, openssh, ... } @ args:
|
||||||
|
|
||||||
|
# ChromiumOS requires a 64bit build host
|
||||||
|
assert stdenv.is64bit;
|
||||||
|
|
||||||
import ./generic.nix (args // rec {
|
import ./generic.nix (args // rec {
|
||||||
version = "3.14.0";
|
version = "3.14.0";
|
||||||
extraMeta.branch = "3.14";
|
extraMeta.branch = "3.14";
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
{ stdenv, fetchgit, perl, buildLinux, ncurses, ... } @ args:
|
{ stdenv, fetchgit, perl, buildLinux, ncurses, ... } @ args:
|
||||||
|
|
||||||
|
# ChromiumOS requires a 64bit build host
|
||||||
|
assert stdenv.is64bit;
|
||||||
|
|
||||||
import ./generic.nix (args // rec {
|
import ./generic.nix (args // rec {
|
||||||
version = "3.18.0";
|
version = "3.18.0";
|
||||||
extraMeta.branch = "3.18";
|
extraMeta.branch = "3.18";
|
||||||
|
|||||||
Reference in New Issue
Block a user