Created
March 15, 2025 21:07
-
-
Save tkisason/03d83cd531e7a4593932bd4b407da4b3 to your computer and use it in GitHub Desktop.
build tamarin / jlink / capstone compatible openocd on dockerized kali
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM kalilinux/kali-rolling | |
WORKDIR /opt | |
RUN apt update && apt install -y git make libtool pkg-config autoconf automake texinfo libusb-dev libftdi-dev libftdi1-dev libcapstone-dev | |
RUN git clone https://github.com/stacksmashing/openocd-tamarin | |
WORKDIR /opt/openocd-tamarin | |
RUN ./bootstrap | |
RUN ./configure --enable-ulink=no --enable-usb-blaster-2=no --enable-vsllink=no --enable-cmsis-dap-v2=no --enable-osbdm=no --enable-opendous=no --enable-armjtagew=no --enable-rlink=no --enable-usbprog=no --enable-cmsis-dap=no --enable-nulink=no --enable-kitprog=no --enable-usb-blaster=no --enable-presto=no --enable-buspirate=no --disable-werror | |
RUN make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment