diff options
author | Petr Rockai <prockai@redhat.com> | 2014-10-22 09:02:17 +0200 |
---|---|---|
committer | Petr Rockai <prockai@redhat.com> | 2014-10-22 09:03:26 +0200 |
commit | 2c8e7821c31245e3f7c1d56a67eb7f38d4b37001 (patch) | |
tree | 321d5f7502b07dd009a3383bfd41a51c7854518c /nix | |
parent | 4988d799a26032bfde4888d55080f5d42f5d55c1 (diff) | |
download | lvm2-2c8e7821c31245e3f7c1d56a67eb7f38d4b37001.tar.gz |
NIX: Fix 32b builds (2G of RAM is 1M too much for 32b QEMU).
Diffstat (limited to 'nix')
-rw-r--r-- | nix/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/default.nix b/nix/default.nix index 6ef339bf9..abd3d01f0 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -13,7 +13,7 @@ let fullName = "LVM2"; src = jobs.tarball; diskImage = diskFun { extraPackages = extras; }; - memSize = 2048; + memSize = 2047; # fc16 lcov is broken and el6 has none... be creative prepareImagePhase = '' |