From 80ba8c45cda5308010ded08b3d070343a92d58b5 Mon Sep 17 00:00:00 2001 From: Florin Dumitrascu Date: Tue, 8 Mar 2016 14:17:01 +0100 Subject: Add fixes and improvements for arm64 deployment [ Florin Dumitrascu ] * arm64 support for OpenDaylight Fuel Plugin [ Stanislaw Kardach ] * Limit ESP to first drive * Remove default+timeout+tr from cobbler profile * Fix puppet syntax errors * Disable usb tablet on aarch64 * Support direct kernel boot for CirrOS TestVM on aarch64 * Remove git version signature not to confuse patches-export * Fix VGA support for CirrOS TestVM * Makefile: Add clean-{docker,build}. [ Alexandru Avadanii ] * Performance: Use gzip instead of xz compression. * Switch mirror proto from https to http. * Update TODO with remaining tasks. * Disable amd64 Liberty fixture (no multi-arch support yet). * m1.micro: Increase RAM size to 128MB for aarch64 images. Signed-off-by: Alexandru Avadanii Signed-off-by: Florin Dumitrascu Signed-off-by: Stanislaw Kardach --- .../0005-Disable-usb-tablet-for-aarch64.patch | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 patches/fuel-library/0005-Disable-usb-tablet-for-aarch64.patch (limited to 'patches/fuel-library/0005-Disable-usb-tablet-for-aarch64.patch') diff --git a/patches/fuel-library/0005-Disable-usb-tablet-for-aarch64.patch b/patches/fuel-library/0005-Disable-usb-tablet-for-aarch64.patch new file mode 100644 index 00000000..37b42341 --- /dev/null +++ b/patches/fuel-library/0005-Disable-usb-tablet-for-aarch64.patch @@ -0,0 +1,38 @@ +From: Stanislaw Kardach +Date: Tue, 15 Mar 2016 11:33:52 +0100 +Subject: [PATCH] Disable usb tablet for aarch64 + +--- + deployment/puppet/openstack/manifests/compute.pp | 12 ++++++++++++ + 1 file changed, 12 insertions(+) + +diff --git a/deployment/puppet/openstack/manifests/compute.pp b/deployment/puppet/openstack/manifests/compute.pp +index ca1b2c4..c0349dc 100644 +--- a/deployment/puppet/openstack/manifests/compute.pp ++++ b/deployment/puppet/openstack/manifests/compute.pp +@@ -316,6 +316,10 @@ class openstack::compute ( + nova_config { + 'libvirt/live_migration_flag': value => 'VIR_MIGRATE_UNDEFINE_SOURCE,VIR_MIGRATE_PEER2PEER,VIR_MIGRATE_LIVE,VIR_MIGRATE_PERSIST_DEST'; + 'libvirt/block_migration_flag': value => 'VIR_MIGRATE_UNDEFINE_SOURCE,VIR_MIGRATE_PEER2PEER,VIR_MIGRATE_LIVE,VIR_MIGRATE_NON_SHARED_INC'; ++ 'libvirt/use_usb_tablet': value => $::architecture ? { ++ /(arm64|aarch64)/ => false, ++ default => true, ++ } + } + + nova_config { +@@ -364,6 +368,14 @@ class openstack::compute ( + # Workaround for bug LP #1469308 + # also service name for Ubuntu and Centos is the same. + libvirt_service_name => "libvirtd", ++ } -> ++ package { 'vgabios': ++ ensure => present; ++ } -> ++ file { '/usr/share/qemu/vgabios-stdvga.bin': ++ ensure => link, ++ target => '/usr/share/vgabios/vgabios.bin', ++ replace => false, + } + + # From legacy libvirt.pp -- cgit 1.2.3-korg