Message ID | 20210504095927.29393-1-sathish.narasimman@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | btmgmt: Fix enable adding irk when turining privacy on. | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=476771 ---Test result--- Test Summary: CheckPatch PASS 0.67 seconds GitLint FAIL 0.16 seconds Prep - Setup ELL PASS 47.44 seconds Build - Prep PASS 0.14 seconds Build - Configure PASS 8.93 seconds Build - Make PASS 207.56 seconds Make Check PASS 8.65 seconds Make Dist PASS 11.54 seconds Make Dist - Configure PASS 4.93 seconds Make Dist - Make PASS 83.59 seconds Build w/ext ELL - Configure PASS 8.49 seconds Build w/ext ELL - Make PASS 195.27 seconds Details ############################## Test: CheckPatch - PASS Desc: Run checkpatch.pl script with rule in .checkpatch.conf ############################## Test: GitLint - FAIL Desc: Run gitlint with rule in .gitlint Output: btmgmt: Fix enable adding irk when turining privacy on. 1: T3 Title has trailing punctuation (.): "btmgmt: Fix enable adding irk when turining privacy on." ############################## Test: Prep - Setup ELL - PASS Desc: Clone, build, and install ELL ############################## Test: Build - Prep - PASS Desc: Prepare environment for build ############################## Test: Build - Configure - PASS Desc: Configure the BlueZ source tree ############################## Test: Build - Make - PASS Desc: Build the BlueZ source tree ############################## Test: Make Check - PASS Desc: Run 'make check' ############################## Test: Make Dist - PASS Desc: Run 'make dist' and build the distribution tarball ############################## Test: Make Dist - Configure - PASS Desc: Configure the source from distribution tarball ############################## Test: Make Dist - Make - PASS Desc: Build the source from distribution tarball ############################## Test: Build w/ext ELL - Configure - PASS Desc: Configure BlueZ source with '--enable-external-ell' configuration ############################## Test: Build w/ext ELL - Make - PASS Desc: Build BlueZ source with '--enable-external-ell' configuration --- Regards, Linux Bluetooth
diff --git a/tools/btmgmt.c b/tools/btmgmt.c index 02fec1dca184..bf3b460d0f04 100644 --- a/tools/btmgmt.c +++ b/tools/btmgmt.c @@ -5277,7 +5277,7 @@ static const struct bt_shell_menu main_menu = { cmd_advertising, "Toggle LE advertising", }, { "bredr", "<on/off>", cmd_bredr, "Toggle BR/EDR support", }, - { "privacy", "<on/off>", + { "privacy", "<on/off> [irk]", cmd_privacy, "Toggle privacy support" }, { "class", "<major> <minor>", cmd_class, "Set device major/minor class" },
Unable to add the IRK in btmgmt when need to be updated. The option is enabled now. Signed-off-by: Sathish Narasimman <sathish.narasimman@intel.com> --- tools/btmgmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)