Rework NAT support.
[bootmanager.git] / source / ModelOptions.py
index 7c3d08a..8c8e979 100644 (file)
@@ -19,7 +19,6 @@ GEODE   = 0x040
 BADHD   = 0x080
 LAST    = 0x100
 RAWDISK = 0x200
-NAT     = 0x400
 
 modeloptions = {'smp':SMP,
                 'x64':X86_64,
@@ -31,8 +30,7 @@ modeloptions = {'smp':SMP,
                 'geode':GEODE,
                 'badhd':BADHD,
                 'minhw':MINHW,
-                'rawdisk':RAWDISK,
-                'nat':NAT}
+                'rawdisk':RAWDISK}
 
 def Get(model):
     modelinfo = string.split(model,'/')