On 8/18/21 11:08 AM, John Garry wrote: > Or maybe you or Bart have a better idea? This is how I test compilation of SCSI drivers on a SUSE system (only the cross-compilation prefix is distro specific): # Acorn RiscPC make ARCH=arm xconfig # Select the RiscPC architecture (ARCH_RPC) make -j9 ARCH=arm CROSS_COMPILE=arm-suse-linux-gnueabi- </dev/null # Atari, Amiga make ARCH=m68k xconfig<br> # Select Amiga + Atari + 68060 + Q40 + SCSI + Zorro + # SCSI_FDOMAIN_ISA make -j9 ARCH=m68k CROSS_COMPILE=m68k-suse-linux- </dev/null # MIPS make ARCH=powerpc xconfig<br> # Select the SGI IP28 machine type and also the WD93C93 SCSI # driver make -j9 ARCH=mips CROSS_COMPILE=mips-suse-linux- </dev/null # PowerPC make ARCH=powerpc xconfig<br> # Select the ibmvfc and ibmvscsi drivers<br> make -j9 ARCH=powerpc CROSS_COMPILE=powerpc64-suse-linux- \ </dev/null # S/390 make ARCH=s390 xconfig # Select the zfcp driver make -j9 ARCH=s390 CROSS_COMPILE=s390x-suse-linux- </dev/null Bart.