Skip to content

Commit

Permalink
Remove chip prefix from executables
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Nov 3, 2023
1 parent fdd3851 commit 4c18d60
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/lit-icd-app/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import("//build_overrides/build.gni")
import("//build_overrides/chip.gni")

executable("chip-lit-icd-app") {
executable("lit-icd-app") {
sources = [ "main.cpp" ]

deps = [
Expand All @@ -34,7 +34,7 @@ executable("chip-lit-icd-app") {
}

group("linux") {
deps = [ ":chip-lit-icd-app" ]
deps = [ ":lit-icd-app" ]
}

group("default") {
Expand Down
2 changes: 1 addition & 1 deletion examples/lit-icd-app/linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

from generic_node_image
RUN apt-get install -y libglib2.0
COPY out/debug/chip-lit-icd-app /usr/bin/
COPY out/debug/lit-icd-app /usr/bin/
COPY entrypoint.sh /

ENTRYPOINT ["/entrypoint.sh", "server"]
2 changes: 1 addition & 1 deletion examples/lit-icd-app/linux/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ ot-ctl panid 0x1234
ot-ctl ifconfig up
ot-ctl thread start

chip-lit-icd-app
lit-icd-app

0 comments on commit 4c18d60

Please sign in to comment.