From 4a84c3ef69749482104455db22c437331dfaf981 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Tue, 28 Jun 2022 17:03:34 +0200 Subject: [PATCH] Drop chip_use_clusters_for_ip_commissioning It has been removed from build_python.sh already a while ago in 3a466490073abb3732013b5f3ac1e135593d53e0. --- scripts/build_python_device.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/scripts/build_python_device.sh b/scripts/build_python_device.sh index 14fce377a6cdad..5f637fa41ad937 100755 --- a/scripts/build_python_device.sh +++ b/scripts/build_python_device.sh @@ -41,7 +41,6 @@ ENVIRONMENT_ROOT="$CHIP_ROOT/out/python_env" declare chip_detail_logging=false declare enable_pybindings=false declare chip_mdns -declare clusters=true help() { @@ -54,8 +53,6 @@ Input Options: By default it is false. -m, --chip_mdns ChipMDNSValue Specify ChipMDNSValue as platform or minimal. By default it is minimal. - -c, --clusters_for_ip_commissioning true/false Specify whether to use clusters for IP commissioning. - By default it is true. -p, --enable_pybindings EnableValue Specify whether to enable pybindings as python controller. " } @@ -76,10 +73,6 @@ while (($#)); do chip_mdns=$2 shift ;; - --clusters_for_ip_commissioning | -c) - clusters=$2 - shift - ;; --enable_pybindings | -p) enable_pybindings=$2 shift @@ -104,7 +97,7 @@ source "$CHIP_ROOT/scripts/activate.sh" chip_data_model_arg="chip_data_model=\"///examples/lighting-app/lighting-common\"" -gn --root="$CHIP_ROOT" gen "$OUTPUT_ROOT" --args="chip_detail_logging=$chip_detail_logging enable_pylib=$enable_pybindings enable_rtti=$enable_pybindings chip_use_clusters_for_ip_commissioning=$clusters $chip_mdns_arg chip_controller=false $chip_data_model_arg" +gn --root="$CHIP_ROOT" gen "$OUTPUT_ROOT" --args="chip_detail_logging=$chip_detail_logging enable_pylib=$enable_pybindings enable_rtti=$enable_pybindings $chip_mdns_arg chip_controller=false $chip_data_model_arg" # Compiles python files # Check pybindings was requested