Roy Golan has uploaded a new change for review. Change subject: core: WIP libosinfo add mapping for libosinfo shortids. ......................................................................
core: WIP libosinfo add mapping for libosinfo shortids. Change-Id: I4b1e51a99d107d79bf89149b66f46a73362e9ca7 Signed-off-by: Roy Golan <[email protected]> --- M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmOsType.java 1 file changed, 106 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/57/9057/1 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmOsType.java b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmOsType.java index 99fcc44..ecae5c4 100644 --- a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmOsType.java +++ b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmOsType.java @@ -21,7 +21,112 @@ Windows2008x64(16, "win2k-8"), Windows2008R2x64(17, "win2k-8"), RHEL6(18, "rhel-6.0"), - RHEL6x64(19, "rhel-6.0"); + RHEL6x64(19, "rhel-6.0"), + + // bsd + freebsd6(1, "freebsd6"), + freebsd7(2, "freebsd7"), + freebsd8(3, "freebsd8"), + openbsd4(4, "openbsd4"), + // centos + centos__6_0(101, "centos-6.0"), + centos__6_1(102, "centos-6.1"), + // debian + debianbuzz(201, "debianbuzz"), + debianrex(202, "debianrex"), + debianbo(203, "debianbo"), + debianhamm(204, "debianhamm"), + debiansilnk(205, "debiansilnk"), + debianpotato(206, "debianpotato"), + debianwoody(207, "debianwoody"), + debiansarge(208, "debiansarge"), + debianetch(209, "debianetch"), + debianlenny(210, "debianlenny"), + debiansqueeze(211, "debiansqueeze"), + debianwheezy(212, "debianwheezy"), + // fedora + fedora5(301, "fedora5"), + fedora6(302, "fedora6"), + fedora7(303, "fedora7"), + fedora8(304, "fedora8"), + fedora9(305, "fedora9"), + fedora10(306, "fedora10"), + fedora11(307, "fedora11"), + fedora12(308, "fedora12"), + fedora13(309, "fedora13"), + fedora14(310, "fedora14"), + fedora15(311, "fedora15"), + fedora16(312, "fedora16"), + // generic-linux + linux24(401, "linux24"), + linux26(402, "linux26"), + linuxvirtio26(403, "linuxvirtio26"), + generic24(404, "generic24"), + generic26(405, "generic26"), + virtio26(406, "virtio26"), + // mandriva + mandriva2009(501, "mandriva2009"), + mandriva2010(502, "mandriva2010"), + mes5(503, "mes5"), + mes5_1(504, "mes5.1"), + // opensuse + opensuse102(601, "opensuse102"), + opensuse103(602, "opensuse103"), + opensuse110(603, "opensuse110"), + opensuse111(604, "opensuse111"), + opensuse112(605, "opensuse112"), + opensuse113(606, "opensuse113"), + opensuse114(607, "opensuse114"), + opensuse121(608, "opensuse121"), + // others + msdos(701, "msdos"), + netware4(702, "netware4"), + netware5(703, "netware5"), + netware6(704, "netware6"), + // rhel + rhel__2_1(801, "rhel-2.1"), + rhel__3(802, "rhel-3"), + rhel__4_8(803, "rhel-4.8"), + rhel__4_9(804, "rhel-4.9"), + rhel__5_4(805, "rhel-5.4"), + rhel__5_6(806, "rhel-5.6"), + rhel__5_7(807, "rhel-5.7"), + rhel__6_0(808, "rhel-6.0"), + rhel__6_1(809, "rhel-6.1"), + // solaris + solaris9(901, "solaris9"), + solaris10(902, "solaris10"), + opensolaris(903, "opensolaris"), + // suse + sles9(1001, "sles9"), + sles10(1002, "sles10"), + sles11(1003, "sles11"), + sled9(1004, "sled9"), + sled10(1005, "sled10"), + sled11(1006, "sled11"), + // ubuntu + ubuntuhardy(1101, "ubuntuhardy"), + ubuntuintrepid(1102, "ubuntuintrepid"), + ubuntujaunty(1103, "ubuntujaunty"), + ubuntukarmic(1104, "ubuntukarmic"), + ubuntulucid(1105, "ubuntulucid"), + ubuntumaverick(1106, "ubuntumaverick"), + ubuntunatty(1107, "ubuntunatty"), + ubuntuoneiric(1108, "ubuntuoneiric"), + // windows + windows(1201, "windows"), + win95(1202, "win95"), + win98(1203, "win98"), + winme(1204, "winme"), + win2k(1205, "win2k"), + winxp(1206, "winxp"), + winxp64(1207, "winxp64"), + win2k3(1208, "win2k3"), + win2k8(1209, "win2k8"), + vista(1210, "vista"), + win7(1211, "win7"), + + ; private final int intValue; -- To view, visit http://gerrit.ovirt.org/9057 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I4b1e51a99d107d79bf89149b66f46a73362e9ca7 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Roy Golan <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
