From 9b093757131c9037b0fee86b34f18c66c08112e8 Mon Sep 17 00:00:00 2001 From: Karel Bilek Date: Mon, 19 Feb 2018 02:31:41 +0100 Subject: [PATCH] emulator: Removing useless build and install --- Dockerfile.emulator | 2 +- build-emulator.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile.emulator b/Dockerfile.emulator index 7f0a249..90fe681 100644 --- a/Dockerfile.emulator +++ b/Dockerfile.emulator @@ -7,7 +7,7 @@ FROM debian:9 RUN dpkg --add-architecture i386 && \ apt-get update && \ apt-get install -y \ - build-essential curl unzip git python3 python3-pip gcc-arm-none-eabi libnewlib-arm-none-eabi \ + build-essential curl unzip git python3 python3-pip \ libsdl2-dev:i386 libsdl2-image-dev:i386 gcc-multilib ENV PROTOBUF_VERSION=3.4.0 diff --git a/build-emulator.sh b/build-emulator.sh index 8946969..37b1695 100755 --- a/build-emulator.sh +++ b/build-emulator.sh @@ -11,7 +11,6 @@ docker run -t -v $(pwd)/build:/build:z $IMAGE /bin/sh -c "\ cd trezor-mcu && \ git checkout $TAG && \ git submodule update --init && \ - make -C vendor/libopencm3 && \ make -C vendor/nanopb/generator/proto && \ make -C firmware/protob && \ EMULATOR=1 make && \