-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* IDT init * Restyled by whitespace * Restyled by prettier-markdown * Restyled by shellharden * Restyled by shfmt * Restyled by isort * Remove f-strings with no placeholders * Remove unknown Pygments lexer * Spelling * License headers * Restyled by prettier-markdown * First response to PR comments * Restyled by prettier-markdown * Respond Dockerfile and README comments * ble nit, venv script * Make TXT logging better * Respond comments * Clarify single host installation * Respond comments * Respond nits * Cleanup BashRunner * Cleanup BashRunner usage * Respond comments, renames, opts * Nits * Restyled by prettier-markdown * Restyled by shellharden * Restyled by shfmt * Restyled by isort * Spelling * Dynamic loading, comments * README nit * Make README generic, add async, any interface * Restyled by prettier-markdown * Restyled by shellharden * Restyled by shfmt * Restyled by isort * Nits, workaround potential issue with shell input * Restyled by isort * Docs CI --------- Co-authored-by: Restyled.io <[email protected]>
- Loading branch information
Showing
46 changed files
with
2,426 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*~ | ||
.DS_Store | ||
.idea/ | ||
IDT_ARTIFACTS/ | ||
OUT/ | ||
__pycache__/ | ||
pycache/ | ||
venv/ | ||
.zip |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# | ||
# Copyright (c) 2023 Project CHIP Authors | ||
# All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
FROM debian:bookworm | ||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
adb \ | ||
aircrack-ng \ | ||
apt-utils \ | ||
git \ | ||
glib-2.0 \ | ||
kmod \ | ||
libbluetooth-dev \ | ||
libboost-python-dev \ | ||
libboost-thread-dev \ | ||
libglib2.0-dev \ | ||
net-tools \ | ||
pciutils \ | ||
pkg-config \ | ||
python3-pip \ | ||
python3.11 \ | ||
python3.11-venv \ | ||
tcpdump \ | ||
usbutils \ | ||
wget && \ | ||
echo "wireshark-common wireshark-common/install-setuid boolean true" | debconf-set-selections && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get -y install wireshark && \ | ||
rm -rf /var/lib/apt/lists/* | ||
RUN usermod -aG plugdev $(whoami) | ||
RUN git clone https://github.com/openthread/ot-br-posix | ||
COPY requirements.txt / | ||
RUN /bin/bash -c "python3 -m venv /env && source /env/bin/activate && pip install -r requirements.txt" | ||
RUN echo "source /env/bin/activate; pip -V; source /idt/scripts/alias.sh;" >> /root/.bashrc | ||
ENTRYPOINT ["/bin/bash"] |
Oops, something went wrong.