]> xenbits.xensource.com Git - people/iwj/osstest.git/commitdiff
ts-kernel-build: disable host1x, which doesn't build
authorWei Liu <wei.liu2@citrix.com>
Tue, 8 May 2018 15:51:39 +0000 (16:51 +0100)
committerIan Jackson <ian.jackson@eu.citrix.com>
Wed, 10 Apr 2019 14:13:27 +0000 (15:13 +0100)
Empirically, on stretch armhf:

  drivers/gpu/host1x/cdma.c: In function `host1x_pushbuffer_init':
  drivers/gpu/host1x/cdma.c:94:48: error: passing argument 3 of `dma_alloc_wc' from incompatible pointer type [-Werror=incompatible-pointer-types]
     pb->mapped = dma_alloc_wc(host1x->dev, size, &pb->phys,
  ^
etc.

This is blocking the upgrade of the Xen Project CI to Debian stretch
so disable it for now.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
CC: Julien Grall <julien.grall@arm.com>
CC: Stefano Stabellini <sstabellini@kernel.org>
CC: Thierry Reding <thierry.reding@gmail.com>
CC: dri-devel@lists.freedesktop.org
ts-kernel-build

index 21b8f78afa9e1a869cceb2048c245af7e930bf3e..0bc443de58033402602dd2518aa8f81a34b566ec 100755 (executable)
@@ -594,6 +594,9 @@ case ${XEN_TARGET_ARCH} in
     *) ;;
 esac
 
+# Disable components that don't build
+setopt CONFIG_TEGRA_HOST1X n
+
 exit 0
 END
 }