:orphan: .. title:: CONFIG_BRIDLE_CMD_HELLO .. kconfig:: CONFIG_BRIDLE_CMD_HELLO CONFIG_BRIDLE_CMD_HELLO ####################### *Simple hello from shell* Type: ``bool`` Help ==== .. code-block:: none Enable to have the command 'hello' that prints the simple message: "Hello from shell." on the console. Direct dependencies =================== \ :kconfig:`BRIDLE_COMMANDS ` && \ :kconfig:`SHELL ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - y if \ :kconfig:`BRIDLE_COMMANDS ` - n Kconfig definition ================== At ``/subsys/shell/modules/Kconfig.commands:12`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:33`` → ``/Kconfig:6`` → ``/kconfig/Kconfig.modules:2`` → ``/Kconfig.bridle:9`` → ``/subsys/Kconfig:7`` → ``/subsys/shell/Kconfig:11`` → ``/subsys/shell/modules/Kconfig:11`` Menu path: (Top) → Modules → bridle (/home/runner/work/bridle/bridle/workspace/bridle) → Sub Systems and OS Services → Bridle Shell Commands .. code-block:: kconfig config BRIDLE_CMD_HELLO bool "Simple hello from shell" default y if BRIDLE_COMMANDS default n depends on BRIDLE_COMMANDS && SHELL help Enable to have the command 'hello' that prints the simple message: "Hello from shell." on the console. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*