b10d49d761
Rewrite the implementation of the ssh block driver to use libssh instead of libssh2. The libssh library has various advantages over libssh2: - easier API for authentication (for example for using ssh-agent) - easier API for known_hosts handling - supports newer types of keys in known_hosts Use APIs/features available in libssh 0.8 conditionally, to support older versions (which are not recommended though). Adjust the iotest 207 according to the different error message, and to find the default key type for localhost (to properly compare the fingerprint with). Contributed-by: Max Reitz <mreitz@redhat.com> Adjust the various Docker/Travis scripts to use libssh when available instead of libssh2. The mingw/mxe testing is dropped for now, as there are no packages for it. Signed-off-by: Pino Toscano <ptoscano@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Acked-by: Alex Bennée <alex.bennee@linaro.org> Message-id: 20190620200840.17655-1-ptoscano@redhat.com Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 5873173.t2JhDm7DL7@lindworm.usersys.redhat.com Signed-off-by: Max Reitz <mreitz@redhat.com>
32 lines
1.1 KiB
Docker
32 lines
1.1 KiB
Docker
#
|
|
# Docker mingw32 cross-compiler target
|
|
#
|
|
# This docker target builds on the debian Jessie MXE base image.
|
|
#
|
|
FROM qemu:debian8-mxe
|
|
|
|
MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
ENV TARGET i686
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt-get install -y --no-install-recommends \
|
|
mxe-$TARGET-w64-mingw32.shared-bzip2 \
|
|
mxe-$TARGET-w64-mingw32.shared-curl \
|
|
mxe-$TARGET-w64-mingw32.shared-glib \
|
|
mxe-$TARGET-w64-mingw32.shared-libgcrypt \
|
|
mxe-$TARGET-w64-mingw32.shared-libusb1 \
|
|
mxe-$TARGET-w64-mingw32.shared-lzo \
|
|
mxe-$TARGET-w64-mingw32.shared-nettle \
|
|
mxe-$TARGET-w64-mingw32.shared-ncurses \
|
|
mxe-$TARGET-w64-mingw32.shared-pixman \
|
|
mxe-$TARGET-w64-mingw32.shared-pkgconf \
|
|
mxe-$TARGET-w64-mingw32.shared-pthreads \
|
|
mxe-$TARGET-w64-mingw32.shared-sdl2 \
|
|
mxe-$TARGET-w64-mingw32.shared-sdl2-mixer \
|
|
mxe-$TARGET-w64-mingw32.shared-sdl2-gfx \
|
|
mxe-$TARGET-w64-mingw32.shared-zlib
|
|
|
|
# Specify the cross prefix for this image (see tests/docker/common.rc)
|
|
ENV QEMU_CONFIGURE_OPTS --cross-prefix=$TARGET-w64-mingw32.shared-
|