Skip to content

Commit

Permalink
rename sed to icd in build targets
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Aug 3, 2023
1 parent 3bfcbc5 commit 0751bb3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/examples-efr32.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
"./scripts/build/build_examples.py \
--enable-flashbundle \
--target efr32-brd4187c-thermostat-openthread_mtd \
--target efr32-brd4187c-switch-sed-shell-use_ot_coap_lib \
--target efr32-brd4187c-switch-rpc-shell-enable_heap_monitoring \
--target efr32-brd4187c-unit-test \
build \
--copy-artifacts-to out/artifacts \
Expand All @@ -81,7 +81,7 @@ jobs:
--enable-flashbundle \
--target efr32-brd4187c-light-use_ot_lib \
--target efr32-brd4187c-pump \
--target efr32-brd4187c-lock-rpc-shell-enable_heap_monitoring \
--target efr32-brd4187c-lock--icd-shell-use_ot_coap_lib \
build \
--copy-artifacts-to out/artifacts \
"
Expand Down
4 changes: 2 additions & 2 deletions scripts/build/build/targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ def BuildEfr32Target():

target.AppendModifier('rpc', enable_rpcs=True)
target.AppendModifier('with-ota-requestor', enable_ota_requestor=True)
target.AppendModifier('sed', enable_sed=True)
target.AppendModifier('low-power', enable_low_power=True).OnlyIfRe('-sed')
target.AppendModifier('icd', enable_icd=True)
target.AppendModifier('low-power', enable_low_power=True).OnlyIfRe('-icd')
target.AppendModifier('shell', chip_build_libshell=True)
target.AppendModifier('no_logging', chip_logging=False)
target.AppendModifier('openthread_mtd', chip_openthread_ftd=False)
Expand Down
4 changes: 2 additions & 2 deletions scripts/build/builders/efr32.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def __init__(self,
show_qr_code: bool = False,
enable_rpcs: bool = False,
enable_ota_requestor: bool = False,
enable_sed: bool = False,
enable_icd: bool = False,
enable_low_power: bool = False,
enable_wifi: bool = False,
enable_rs911x: bool = False,
Expand All @@ -164,7 +164,7 @@ def __init__(self,
if enable_ota_requestor:
self.extra_gn_options.append('chip_enable_ota_requestor=true')

if enable_sed:
if enable_icd:
self.extra_gn_options.append('chip_enable_icd_server=true chip_openthread_ftd=false')

if enable_low_power:
Expand Down

0 comments on commit 0751bb3

Please sign in to comment.