From: gobo72 Date: Tue, 8 Mar 2011 02:29:42 +0000 (+0000) Subject: -Added force ABI=32 in gmp package, stage2. It seems Intel Atom has a problem and... X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;ds=sidebyside;h=7c8d45899479cd35f78814f6c46c2b8bff45d222;p=hvlinux.git -Added force ABI=32 in gmp package, stage2. It seems Intel Atom has a problem and ABI was misdetected as ABI=64. -Removed obsolete branch make --- diff --git a/stage2/pkg/dhcp b/stage2/pkg/dhcp old mode 100755 new mode 100644 diff --git a/stage2/pkg/gmp b/stage2/pkg/gmp new file mode 100644 index 0000000..bf79741 --- /dev/null +++ b/stage2/pkg/gmp @@ -0,0 +1,14 @@ +#!/bin/bash + +hvconfig_pre() +{ + if [ "${HVL_TARGET}" -ne "x86_64" ]; then + # It seems ABI is improperly detected for Intel atom... + export ABI=32 + fi +} + +hvbuild_post() +{ + unset ABI +}