From c8957ae60f5c3f14bc912701a71be97e29d3ea46 Mon Sep 17 00:00:00 2001 From: Jackie Huang Date: Wed, 24 Jun 2020 11:04:17 +0800 Subject: [PATCH] local-stx.conf: skip ext4 image creatation This is a workaround for mkfs.ext4 failure on ORAN jjb: - skip 'ext4' image creatation - skip 'live' and 'wic' as well since they depend on 'ext4' Issue-ID: INF-170 Signed-off-by: Jackie Huang Change-Id: I5ccc8154f729e9fb210cb3ec1ab37212defceb23 --- scripts/configs/local-stx.conf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/configs/local-stx.conf b/scripts/configs/local-stx.conf index c006ce9..4adac67 100644 --- a/scripts/configs/local-stx.conf +++ b/scripts/configs/local-stx.conf @@ -21,8 +21,12 @@ IMAGE_INSTALL_append = " \ DISTRO_FEATURES_append = " anaconda-support" # For images -IMAGE_FSTYPES += " tar.bz2 live" -LABELS_LIVE = "install" +IMAGE_FSTYPES += " tar.bz2" + +# Workaround for mkfs.ext4 failure on ORAN jjb: +# - skip 'ext4' image creatation +# - skip 'live' and 'wic' as well since they depend on 'ext4' +IMAGE_FSTYPES_remove = "live ext4 wic" # Workaround for ceph: avoid parallel make to limit mem usage PARALLEL_MAKE_pn-ceph = "" -- 2.16.6