Changeset 3116 in vbox
- Timestamp:
- Jun 14, 2007 7:51:02 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r3115 r3116 4213 4213 { 4214 4214 /// @todo (dmik) get the list of OS types from the XML schema 4215 /* NOTE: we assume that unknown is always the first entry! */ 4216 { "unknown", tr ("Other/Unknown"), OSTypeUnknown, 64, 4, 2000 }, 4217 { "dos", "DOS", OSTypeDOS, 32, 4, 500 }, 4218 { "win31", "Windows 3.1", OSTypeWin31, 32, 4, 1000 }, 4219 { "win95", "Windows 95", OSTypeWin95, 64, 4, 2000 }, 4220 { "win98", "Windows 98", OSTypeWin98, 64, 4, 2000 }, 4221 { "winme", "Windows Me", OSTypeWinMe, 64, 4, 4000 }, 4222 { "winnt4", "Windows NT 4", OSTypeWinNT4, 128, 4, 2000 }, 4223 { "win2k", "Windows 2000", OSTypeWin2k, 168, 4, 4000 }, 4224 { "winxp", "Windows XP", OSTypeWinXP, 192, 4, 10000 }, 4225 { "win2k3", "Windows Server 2003", OSTypeWin2k3, 256, 4, 20000 }, 4226 { "winvista", "Windows Vista", OSTypeWinVista, 512, 4, 20000 }, 4227 { "os2warp3", "OS/2 Warp 3", OSTypeOS2Warp3, 48, 4, 1000 }, 4228 { "os2warp4", "OS/2 Warp 4", OSTypeOS2Warp4, 64, 4, 2000 }, 4229 { "os2warp45", "OS/2 Warp 4.5", OSTypeOS2Warp45, 96, 4, 2000 }, 4230 { "linux22", "Linux 2.2", OSTypeLinux22, 64, 4, 2000 }, 4231 { "linux24", "Linux 2.4", OSTypeLinux24, 128, 4, 4000 }, 4232 { "linux26", "Linux 2.6", OSTypeLinux26, 128, 4, 8000 }, 4233 { "freebsd", "FreeBSD", OSTypeFreeBSD, 64, 4, 2000 }, 4234 { "openbsd", "OpenBSD", OSTypeOpenBSD, 64, 4, 2000 }, 4235 { "netbsd", "NetBSD", OSTypeNetBSD, 64, 4, 2000 }, 4236 { "netware", "Netware", OSTypeNetware, 128, 4, 4000 }, 4237 { "solaris", "Solaris", OSTypeSolaris, 128, 4, 8000 }, 4238 { "l4", "L4", OSTypeL4, 64, 4, 2000 } 4215 /* NOTE1: we assume that unknown is always the first entry! 4216 * NOTE2: please use powers of 2 when specifying the size of harddisks since 4217 * '2GB' looks better than '1.95GB' (= 2000MB) */ 4218 { "unknown", tr ("Other/Unknown"), OSTypeUnknown, 64, 4, 2 * _1K }, 4219 { "dos", "DOS", OSTypeDOS, 32, 4, 512 }, 4220 { "win31", "Windows 3.1", OSTypeWin31, 32, 4, 1 * _1K }, 4221 { "win95", "Windows 95", OSTypeWin95, 64, 4, 2 * _1K }, 4222 { "win98", "Windows 98", OSTypeWin98, 64, 4, 2 * _1K }, 4223 { "winme", "Windows Me", OSTypeWinMe, 64, 4, 4 * _1K }, 4224 { "winnt4", "Windows NT 4", OSTypeWinNT4, 128, 4, 2 * _1K }, 4225 { "win2k", "Windows 2000", OSTypeWin2k, 168, 4, 4 * _1K }, 4226 { "winxp", "Windows XP", OSTypeWinXP, 192, 4, 10 * _1K }, 4227 { "win2k3", "Windows Server 2003", OSTypeWin2k3, 256, 4, 20 * _1K }, 4228 { "winvista", "Windows Vista", OSTypeWinVista, 512, 4, 20 * _1K }, 4229 { "os2warp3", "OS/2 Warp 3", OSTypeOS2Warp3, 48, 4, 1 * _1K }, 4230 { "os2warp4", "OS/2 Warp 4", OSTypeOS2Warp4, 64, 4, 2 * _1K }, 4231 { "os2warp45", "OS/2 Warp 4.5", OSTypeOS2Warp45, 96, 4, 2 * _1K }, 4232 { "linux22", "Linux 2.2", OSTypeLinux22, 64, 4, 2 * _1K }, 4233 { "linux24", "Linux 2.4", OSTypeLinux24, 128, 4, 4 * _1K }, 4234 { "linux26", "Linux 2.6", OSTypeLinux26, 256, 4, 8 * _1K }, 4235 { "freebsd", "FreeBSD", OSTypeFreeBSD, 64, 4, 2 * _1K }, 4236 { "openbsd", "OpenBSD", OSTypeOpenBSD, 64, 4, 2 * _1K }, 4237 { "netbsd", "NetBSD", OSTypeNetBSD, 64, 4, 2 * _1K }, 4238 { "netware", "Netware", OSTypeNetware, 128, 4, 4 * _1K }, 4239 { "solaris", "Solaris", OSTypeSolaris, 128, 4, 8 * _1K }, 4240 { "l4", "L4", OSTypeL4, 64, 4, 2 * _1K } 4239 4241 }; 4240 4242
Note:
See TracChangeset
for help on using the changeset viewer.