From d4fe705be713548b7d823f4472d0fa61b1d69c3e Mon Sep 17 00:00:00 2001 From: Dimitri John Ledkov Date: Mon, 5 Feb 2018 15:37:52 +0000 Subject: [PATCH] Stop building vagrant.box, ova, vmdk images for i386. https://trello.com/c/zhisDVTq --- live-build/ubuntu-cpc/hooks/040-vmdk-image.binary | 2 +- live-build/ubuntu-cpc/hooks/041-vmdk-ova-image.binary | 4 ---- live-build/ubuntu-cpc/hooks/042-vagrant.binary | 4 ---- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/live-build/ubuntu-cpc/hooks/040-vmdk-image.binary b/live-build/ubuntu-cpc/hooks/040-vmdk-image.binary index 7c2e0e54..95b1d9a3 100755 --- a/live-build/ubuntu-cpc/hooks/040-vmdk-image.binary +++ b/live-build/ubuntu-cpc/hooks/040-vmdk-image.binary @@ -4,7 +4,7 @@ # Generate VMDK files case $ARCH in - i386|amd64) ;; + amd64) ;; *) echo "VMDK images are not supported for $ARCH yet."; exit 0;; esac diff --git a/live-build/ubuntu-cpc/hooks/041-vmdk-ova-image.binary b/live-build/ubuntu-cpc/hooks/041-vmdk-ova-image.binary index 801808c0..48d77789 100755 --- a/live-build/ubuntu-cpc/hooks/041-vmdk-ova-image.binary +++ b/live-build/ubuntu-cpc/hooks/041-vmdk-ova-image.binary @@ -18,10 +18,6 @@ case $ARCH in ovf_id=94 ovf_os_type="ubuntu64Guest" ovf_desc_bits=64 ;; - i386) - ovf_id=93 - ovf_os_type="ubuntu32Guest" - ovf_desc_bits=32 ;; *) echo "OVA images are not supported for $ARCH yet."; exit 0;; diff --git a/live-build/ubuntu-cpc/hooks/042-vagrant.binary b/live-build/ubuntu-cpc/hooks/042-vagrant.binary index d748560c..d92b7080 100755 --- a/live-build/ubuntu-cpc/hooks/042-vagrant.binary +++ b/live-build/ubuntu-cpc/hooks/042-vagrant.binary @@ -35,10 +35,6 @@ case $ARCH in ovf_id=94 ovf_os_type="ubuntu64Guest" ovf_desc_bits=64 ;; - i386) - ovf_id=93 - ovf_os_type="ubuntu32Guest" - ovf_desc_bits=32 ;; *) echo "Vagrant images are not supported for $ARCH yet." exit 0;;