use build/build.common to use common build operations
[bootmanager.git] / source / ModelOptions.py
index ccd64eb..697b701 100644 (file)
@@ -1,3 +1,12 @@
+#!/usr/bin/python2
+
+# Copyright (c) 2003 Intel Corporation
+# All rights reserved.
+#
+# Copyright (c) 2004-2006 The Trustees of Princeton University
+# All rights reserved.
+
+
 import string
 
 MINHW   = 0x001
@@ -7,6 +16,7 @@ INTEL   = 0x008
 AMD     = 0x010
 NUMA    = 0x020
 GEODE   = 0x040
+BADHD   = 0x080
 LAST    = 0x100
 
 modeloptions = {'smp':SMP,
@@ -17,6 +27,7 @@ modeloptions = {'smp':SMP,
                 'a32':AMD,
                 'numa':NUMA,
                 'geode':GEODE,
+                'badhd':BADHD,
                 'minhw':MINHW}
 
 def Get(model):
@@ -28,3 +39,4 @@ def Get(model):
         options = options | modeloptions.get(info,0)
 
     return options
+