fixed erroneous changelog
[bootmanager.git] / source / ModelOptions.py
index ee1cab3..7c3d08a 100644 (file)
@@ -1,3 +1,12 @@
+#!/usr/bin/python
+
+# Copyright (c) 2003 Intel Corporation
+# All rights reserved.
+#
+# Copyright (c) 2004-2006 The Trustees of Princeton University
+# All rights reserved.
+
+
 import string
 
 MINHW   = 0x001
@@ -9,6 +18,8 @@ NUMA    = 0x020
 GEODE   = 0x040
 BADHD   = 0x080
 LAST    = 0x100
+RAWDISK = 0x200
+NAT     = 0x400
 
 modeloptions = {'smp':SMP,
                 'x64':X86_64,
@@ -19,7 +30,9 @@ modeloptions = {'smp':SMP,
                 'numa':NUMA,
                 'geode':GEODE,
                 'badhd':BADHD,
-                'minhw':MINHW}
+                'minhw':MINHW,
+                'rawdisk':RAWDISK,
+                'nat':NAT}
 
 def Get(model):
     modelinfo = string.split(model,'/')
@@ -30,3 +43,4 @@ def Get(model):
         options = options | modeloptions.get(info,0)
 
     return options
+