On Fri, Feb 12, 2021 at 05:38:13PM -0800, Stefano Stabellini wrote: > diff --git a/automation/scripts/build b/automation/scripts/build > index d8990c3bf4..e7d68f7a9d 100755 > --- a/automation/scripts/build > +++ b/automation/scripts/build > @@ -15,6 +15,15 @@ else > make -j$(nproc) -C xen defconfig > fi > > +# arm32 only cross-compiles the hypervisor > +if [[ "${XEN_TARGET_ARCH}" = "arm32" ]]; then > + make -j$(nproc) xen > + cp xen/.config xen-config > + mkdir binaries > + cp xen/xen binaries/xen > + exit 0 > +fi
You will have to rebase on top of 893103e286ac1c50 at which point you have an option to do hypervisor only builds already (hypervisor_only). Thanks, Roger.