From d05d5f591f07591296bad7b35c118143292678e7 Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Thu, 13 Jan 2022 17:18:57 -0800 Subject: [PATCH] Recommend soong_config_set instead of add_soong_config_var_value Bug: None Test: Presubmits Change-Id: Ib6726436f8eea1b46ce4c30febeae6180f21cceb --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b820fd169..127c52cbd 100644 --- a/README.md +++ b/README.md @@ -452,10 +452,9 @@ used. To specify that no properties should be amended for `soc_b`, you can set The values of the variables can be set from a product's `BoardConfig.mk` file: ``` -$(call add_soong_config_namespace, acme) -$(call add_soong_config_var_value, acme, board, soc_a) -$(call add_soong_config_var_value, acme, feature, true) -$(call add_soong_config_var_value, acme, width, 200) +$(call soong_config_set,acme,board,soc_a) +$(call soong_config_set,acme,feature,true) +$(call soong_config_set,acme,width,200) ``` The `acme_cc_defaults` module type can be used anywhere after the definition in