From a75703b2f0f585a2fc6a7bcdb7d16a61bcf5e6b0 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Mon, 9 Jul 2018 16:11:15 +0100 Subject: [PATCH] automation: build more stuff on x86 with docker Signed-off-by: Wei Liu Reviewed-by: Doug Goldstein --- automation/scripts/build | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/automation/scripts/build b/automation/scripts/build index b90fc43d26..b9e4c1e329 100755 --- a/automation/scripts/build +++ b/automation/scripts/build @@ -11,8 +11,6 @@ fi # build up our configure options cfgargs=() -cfgargs+=("--disable-stubdom") # more work needed into building this -cfgargs+=("--disable-rombios") cfgargs+=("--enable-docs") # SeaBIOS cannot be built with clang @@ -20,9 +18,7 @@ if [[ "${CC}" == "clang" ]]; then cfgargs+=("--with-system-seabios=/usr/share/seabios/bios.bin") fi -if [[ "${XEN_TARGET_ARCH}" == "x86_64" ]]; then - cfgargs+=("--enable-tools") -else +if [[ "${XEN_TARGET_ARCH}" == "arm64" || "${XEN_TARGET_ARCH}" == "arm32" ]]; then cfgargs+=("--disable-tools") # we don't have the cross depends installed fi -- 2.30.2