Checking configuration settings

nRF Util

tags
nRF Util

The following command prints the information about where the SDK and toolchain bundles are installed and where the information about them is taken from:

nrfutil sdk-manager config show

For example, on macOS this command prints YAML-based output similar to the following one:

default:
  install-dir: unset
  toolchain-index: unset
  sdk-index: unset
toolchain-indexes:
  bob:
    url: http://www.example.com/
sdk-indexes:
  bill:
    url: http://www.example.com/

In this output:

  • install-dir - directory where the SDK bundle is downloaded to and installed. Corresponds to the one you define as the SDK installation location and you can override it on Windows and Linux with the --install-dir flag.
  • toolchain-index - source toolchain index used to populate the list of SDK bundles available for install.
  • sdk-index - source SDK index used to populate the list of SDK bundles available for install.
  • toolchain-indexes - available toolchain indexes that you can add; each can be selected as the source toolchain index using the --toolchain-index flag.
  • sdk-indexes - available SDK indexes that you can add; each can be selected as the source SDK index using the --sdk-index flag.