You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ra...@apache.org on 2016/10/10 10:20:22 UTC

[1/4] git commit: updated refs/heads/master to 0af2600

Repository: cloudstack
Updated Branches:
  refs/heads/master de09b5afa -> 0af26000b


CLOUDSTACK-9525 add support for windows 10 guest os in xenserver 6.5.0


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/eba58db7
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/eba58db7
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/eba58db7

Branch: refs/heads/master
Commit: eba58db744d31ff277f2d69fc78770581c39f22d
Parents: de09b5a
Author: Rajani Karuturi <ra...@accelerite.com>
Authored: Mon Oct 3 15:59:00 2016 +0530
Committer: Rajani Karuturi <ra...@accelerite.com>
Committed: Mon Oct 10 11:25:14 2016 +0530

----------------------------------------------------------------------
 setup/db/db/schema-4910to41000.sql | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/eba58db7/setup/db/db/schema-4910to41000.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-4910to41000.sql b/setup/db/db/schema-4910to41000.sql
index 8ea67e1..a48b46b 100644
--- a/setup/db/db/schema-4910to41000.sql
+++ b/setup/db/db/schema-4910to41000.sql
@@ -19,4 +19,12 @@
 -- Schema upgrade from 4.9.1.0 to 4.10.0.0;
 --;
 
-ALTER TABLE `cloud`.`domain_router` ADD COLUMN  update_state varchar(64) DEFAULT NULL;
\ No newline at end of file
+ALTER TABLE `cloud`.`domain_router` ADD COLUMN  update_state varchar(64) DEFAULT NULL;
+
+INSERT IGNORE INTO `cloud`.`guest_os` (id, uuid, category_id, display_name, created) VALUES (257, UUID(), 6, 'Windows 10 (32-bit)', now());
+INSERT IGNORE INTO `cloud`.`guest_os` (id, uuid, category_id, display_name, created) VALUES (258, UUID(), 6, 'Windows 10 (64-bit)', now());
+INSERT IGNORE INTO `cloud`.`guest_os` (id, uuid, category_id, display_name, created) VALUES (259, UUID(), 6, 'Windows Server 2012 (64-bit)', now());
+
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, uuid, created) VALUES ('Xenserver', '6.5.0', 'Windows 10 (32-bit)', 257, UUID(), now());
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, uuid, created) VALUES ('Xenserver', '6.5.0', 'Windows 10 (64-bit)', 258, UUID(), now());
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, uuid, created) VALUES ('Xenserver', '6.5.0', 'Windows Server 2012 (64-bit)', 259, UUID(), now());
\ No newline at end of file


[4/4] git commit: updated refs/heads/master to 0af2600

Posted by ra...@apache.org.
Merge pull request #1698 from karuturi/CLOUDSTACK-9525

CLOUDSTACK-9525 add support for windows 10 guest os in xenserver 6.5added guest_os and guest_os_hypervisor mappings for windows10 and xenserver 6.5.0

* pr/1698:
  CLOUDSTACK-9525 add support for windows 10 guest os in KVM
  CLOUDSTACK-9525 add support for windows 10 guest os in vmware ESX 6.0
  CLOUDSTACK-9525 add support for windows 10 guest os in xenserver 6.5.0

Signed-off-by: Rajani Karuturi <ra...@accelerite.com>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/0af26000
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/0af26000
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/0af26000

Branch: refs/heads/master
Commit: 0af26000b41121737536b1f7fb50925c14869aea
Parents: de09b5a 2a827b5
Author: Rajani Karuturi <ra...@accelerite.com>
Authored: Mon Oct 10 15:50:02 2016 +0530
Committer: Rajani Karuturi <ra...@accelerite.com>
Committed: Mon Oct 10 15:50:02 2016 +0530

----------------------------------------------------------------------
 setup/db/db/schema-4910to41000.sql | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)
----------------------------------------------------------------------



[3/4] git commit: updated refs/heads/master to 0af2600

Posted by ra...@apache.org.
CLOUDSTACK-9525 add support for windows 10 guest os in KVM


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/2a827b5b
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/2a827b5b
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/2a827b5b

Branch: refs/heads/master
Commit: 2a827b5ba02e9f3d2145ab5d85e800ad1656ea4b
Parents: f06352c
Author: Rajani Karuturi <ra...@accelerite.com>
Authored: Mon Oct 10 11:22:34 2016 +0530
Committer: Rajani Karuturi <ra...@accelerite.com>
Committed: Mon Oct 10 11:26:40 2016 +0530

----------------------------------------------------------------------
 setup/db/db/schema-4910to41000.sql | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/2a827b5b/setup/db/db/schema-4910to41000.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-4910to41000.sql b/setup/db/db/schema-4910to41000.sql
index 4b651c3..19226b0 100644
--- a/setup/db/db/schema-4910to41000.sql
+++ b/setup/db/db/schema-4910to41000.sql
@@ -31,4 +31,8 @@ INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (hypervisor_type, hypervisor_ve
 
 INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created) VALUES (UUID(), 'VMware', '6.0', 'windows9Guest', 257, now());
 INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created) VALUES (UUID(), 'VMware', '6.0', 'windows9_64Guest', 258, now());
-INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created) VALUES (UUID(), 'VMware', '6.0', 'windows9Server64Guest', 259, now());
\ No newline at end of file
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created) VALUES (UUID(), 'VMware', '6.0', 'windows9Server64Guest', 259, now());
+
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created) VALUES (UUID(), 'KVM', 'default', 'Windows 10', 257, now());
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created) VALUES (UUID(), 'KVM', 'default', 'Windows 10', 258, now());
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created) VALUES (UUID(), 'KVM', 'default', 'Windows Server 2012', 259, now());
\ No newline at end of file


[2/4] git commit: updated refs/heads/master to 0af2600

Posted by ra...@apache.org.
CLOUDSTACK-9525 add support for windows 10 guest os in vmware ESX 6.0

queries author @serg38
(https://github.com/apache/cloudstack/pull/1698#issuecomment-251672496)

Signed-off-by: Rajani Karuturi <ra...@accelerite.com>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/f06352cc
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f06352cc
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f06352cc

Branch: refs/heads/master
Commit: f06352cc7ad5dd2b1c8daa19ef87d3a356b06af0
Parents: eba58db
Author: Rajani Karuturi <ra...@accelerite.com>
Authored: Thu Oct 6 14:49:33 2016 +0530
Committer: Rajani Karuturi <ra...@accelerite.com>
Committed: Mon Oct 10 11:26:05 2016 +0530

----------------------------------------------------------------------
 setup/db/db/schema-4910to41000.sql | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f06352cc/setup/db/db/schema-4910to41000.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-4910to41000.sql b/setup/db/db/schema-4910to41000.sql
index a48b46b..4b651c3 100644
--- a/setup/db/db/schema-4910to41000.sql
+++ b/setup/db/db/schema-4910to41000.sql
@@ -27,4 +27,8 @@ INSERT IGNORE INTO `cloud`.`guest_os` (id, uuid, category_id, display_name, crea
 
 INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, uuid, created) VALUES ('Xenserver', '6.5.0', 'Windows 10 (32-bit)', 257, UUID(), now());
 INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, uuid, created) VALUES ('Xenserver', '6.5.0', 'Windows 10 (64-bit)', 258, UUID(), now());
-INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, uuid, created) VALUES ('Xenserver', '6.5.0', 'Windows Server 2012 (64-bit)', 259, UUID(), now());
\ No newline at end of file
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, uuid, created) VALUES ('Xenserver', '6.5.0', 'Windows Server 2012 (64-bit)', 259, UUID(), now());
+
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created) VALUES (UUID(), 'VMware', '6.0', 'windows9Guest', 257, now());
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created) VALUES (UUID(), 'VMware', '6.0', 'windows9_64Guest', 258, now());
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created) VALUES (UUID(), 'VMware', '6.0', 'windows9Server64Guest', 259, now());
\ No newline at end of file