Skip to content

Create Azure Device Update (ADU) import manifest

Bash script for creating ADU update import manifest.

Official Documentation

For more information on this component, please refer to Device Update for IoT Hub - Scripts.

Fetching

In your application's CMakeLists.txt, include create-adu-import-manifest in the IOTSDK_FETCH_LIST variable, alongside any other components you need to fetch:

set(IOTSDK_FETCH_LIST
    ...
    create-adu-import-manifest
)

💡 This must be done before your application's CMakeLists.txt adds the Open IoT SDK.

Executing

The script is available as ${create-adu-import-manifest_SOURCE_DIR}/create-adu-import-manifest.sh.

In your application's CMakeLists.txt, add a custom command to your executable target. For reference, see the Azure Device Update example based on NetX Duo and PSA Firmware Update.