Commit c004dc86f55bc979b16df875b530341db33ff1ab

Authored by 김민수
1 parent 56c6694a35
Exists in master and in 2 other branches fhd, fhd-demo

libusb 추가 및 path 순서변경

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
docker/Dockerfile
... ... @@ -13,7 +13,7 @@ RUN \
13 13 curl sudo \
14 14 git-core build-essential gcc-arm-none-eabi libssl-dev \
15 15 sed binutils patch gzip bzip2 perl tar cpio python unzip rsync wget \
16   - libz3-dev libncurses5-dev libusb-1.0-0-dev \
  16 + libz3-dev libncurses5-dev pkg-config libusb-1.0-0-dev \
17 17 bc lzop u-boot-tools vim flex bison \
18 18 && \
19 19 rm -rf /var/lib/apt/lists/*
... ... @@ -34,7 +34,7 @@ env BR_TOOLCHAIN_PATH /opt/toolchain/${FA_CHIPSET}/${FA_PRODUCT}
34 34 env CROSS_COMPILE ${BR_TOOLCHAIN_PREFIX}-
35 35 env ARCH arm
36 36  
37   -env PATH ${BR_TOOLCHAIN_PATH}/usr/bin:$PATH
  37 +env PATH $PATH:${BR_TOOLCHAIN_PATH}/usr/bin
38 38 env WORK_LD_LIBRARY_PATH ${BR_TOOLCHAIN_PATH}/usr/lib
39 39  
40 40 WORKDIR /work
... ...