From 7c8d45899479cd35f78814f6c46c2b8bff45d222 Mon Sep 17 00:00:00 2001 From: gobo72 Date: Tue, 8 Mar 2011 02:29:42 +0000 Subject: [PATCH] -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 --- stage2/pkg/dhcp | 0 stage2/pkg/gmp | 14 ++++++++++++++ 2 files changed, 14 insertions(+) mode change 100755 => 100644 stage2/pkg/dhcp create mode 100644 stage2/pkg/gmp 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 +} -- 2.20.1