mbehensky/vhci_hcd

Error while install: "Configuration file ".config" not found!"

Opened this issue · 0 comments

I'm trying to install vhci_hcd by docker with next commands:

FROM ubuntu:bionic

RUN dpkg --add-architecture i386; \
    apt-get update; \
    # ---- Install packages ------------------------------------------------------------
    apt-cache search linux-headers; \
    apt-get install -y --no-install-recommends linux-headers-$(uname -r)*:i386 flex bison build-essential automake autoconf libtool libusb-0.1-4:i386 libjansson-dev kmod git; \
    cd /tmp; \
    git clone git://git.code.sf.net/p/usb-vhci/vhci_hcd; \
    cd /tmp/vhci_hcd; \
    make -B
....

On step make -B a getting an error:
image

Configuration file ".config" not found!
...
Makefile:685: recipe for target '.config' failed

This is full log make -d:

err.log

Do you have some ideas how can I install this applicaton?