Skip to content

Commit

Permalink
ubuntu-distro: Add dfu-util package
Browse files Browse the repository at this point in the history
- TI SDK provides a flash writer script which will use USB DFU to boot the board and then flash the binaries to on-board memory [1]. 

- This tool also supports flashing multiple boards via dfu-util simultaneously. Hence, add dfu-util package in ubuntu-distro docker image.

[1]: https://software-dl.ti.com/processor-sdk-linux/esd/AM62X/09_01_00_08/exports/docs/linux/Foundational_Components/Tools/Flash_via_DFU.html

Signed-off-by: Chirag Shilwant <c-shilwant@ti.com>
  • Loading branch information
cshilwant committed Mar 7, 2024
1 parent e758845 commit 073f2c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ubuntu-distro/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM amd64/ubuntu:22.04

# Installing packages needed for Yocto & SDK Makefile builds
RUN export DEBIAN_FRONTEND=noninteractive; apt-get update && \
apt-get install -y --no-install-recommends file autoconf automake iproute2 usbutils dialog \
apt-get install -y --no-install-recommends file autoconf automake iproute2 usbutils dialog dfu-util \
bison flex libssl-dev bc u-boot-tools swig wget device-tree-compiler python3 python3-pip python3-dev dosfstools fdisk sudo && \
pip3 install jsonschema pyelftools PyYAML Mako && \

Expand Down

0 comments on commit 073f2c2

Please sign in to comment.