From: Wei Liu Date: Mon, 9 Jul 2018 15:11:15 +0000 (+0100) Subject: automation: build more stuff on x86 with docker X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3654 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a75703b2f0f585a2fc6a7bcdb7d16a61bcf5e6b0;p=xen.git automation: build more stuff on x86 with docker Signed-off-by: Wei Liu Reviewed-by: Doug Goldstein --- 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