-Added force ABI=32 in gmp package, stage2. It seems Intel Atom has a problem and...
authorgobo72 <gobo72@364a67c3-989e-7be9-548d-dae8560ea662>
Tue, 8 Mar 2011 02:29:42 +0000 (02:29 +0000)
committergobo72 <gobo72@364a67c3-989e-7be9-548d-dae8560ea662>
Tue, 8 Mar 2011 02:29:42 +0000 (02:29 +0000)
-Removed obsolete branch make

stage2/pkg/dhcp [changed mode: 0755->0644]
stage2/pkg/gmp [new file with mode: 0644]

old mode 100755 (executable)
new mode 100644 (file)
diff --git a/stage2/pkg/gmp b/stage2/pkg/gmp
new file mode 100644 (file)
index 0000000..bf79741
--- /dev/null
@@ -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
+}