Copying a File

The following file attribute instructs CopyTarget to copy the file from ${WORKSPACE}/home/nvidia/file.txt to ${TARGET_DIRECTORY}/file.txt with permission 0644 and ownership nvidia:nvidia, where ${TARGET_DIRECTORY} is the target directory provided to CopyTarget and where ${WORKSPACE} is the workspace directory provided to CopyTarget. Since filesystems field is not defined, this file is copied to ALL filesystem-types.

fileList:
    - destination: /file.txt
      source:
          pdk_sdk_installed_path: /home/nvidia/file.txt
      perm: 644
      owner: nvidia
      group: nvidia