How to run the mini_pipeline sample on DRIVE AGX Orin?

Please provide the following info (tick the boxes after creating this topic):
Software Version
DRIVE OS 6.0.10.0
DRIVE OS 6.0.8.1
DRIVE OS 6.0.6
DRIVE OS 6.0.5
DRIVE OS 6.0.4 (rev. 1)
DRIVE OS 6.0.4 SDK
other

Target Operating System
Linux
QNX
other

Hardware Platform
DRIVE AGX Orin Developer Kit (940-63710-0010-300)
DRIVE AGX Orin Developer Kit (940-63710-0010-200)
DRIVE AGX Orin Developer Kit (940-63710-0010-100)
DRIVE AGX Orin Developer Kit (940-63710-0010-D00)
DRIVE AGX Orin Developer Kit (940-63710-0010-C00)
DRIVE AGX Orin Developer Kit (not sure its number)
other

SDK Manager Version
2.1.0
other

Host Machine Version
native Ubuntu Linux 20.04 Host installed with SDK Manager
native Ubuntu Linux 20.04 Host installed with DRIVE OS Docker Containers
native Ubuntu Linux 18.04 Host installed with DRIVE OS Docker Containers
other

Issue Description
I would like to make the following mini pipeline sample to run on the Drive AGX Orin device:

I followed the official source to cross compile source: DriveWorks SDK Reference: Cross-Compiling for NVIDIA DRIVE OS Linux
Running the exact commands inside the docker

# Open docker:
sudo docker run -it --privileged --net=host \
  -v /dev/bus/usb:/dev/bus/usb \
  -v ${WORKSPACE}:/home/nvidia/nvworkspace \
  nvcr.io/drive/driveos-sdk/drive-agx-orin-linux-aarch64-sdk-build-x86:latest

# Create folder
mkdir -p /home/nvidia/nvworkspace/build-aarch64-linux-gnu
cd /home/nvidia/nvworkspace/build-aarch64-linux-gnu
# Prepare build
cmake -B /home/nvidia/nvworkspace/build-aarch64-linux-gnu \
  -DCMAKE_BUILD_TYPE=Release \
  -DCMAKE_TOOLCHAIN_FILE=/usr/local/driveworks/samples/cmake/Toolchain-V5L.cmake \
  -DVIBRANTE_PDK=/drive/drive-linux \
  -S /usr/local/driveworks/samples

# Build minipiepline_nodes
make minipipeline_nodes
# Create directory via docker that is mapped on /home/reds/cross-compiled/minipipeline
mkdir -p /home/nvidia/nvworkspace/cross-compiled/minipipeline 
# Copy compiled files from the docker
cp /home/nvidia/nvworkspace/build-aarch64-linux-gnu/src/minipipeline/libminipipeline_nodes.so /home/nvidia/nvworkspace/cross-compiled/minipipeline/
# Copy run_mini_pipeline.sh
cp /usr/local/driveworks-5.20/bin/run_mini_pipeline.sh /home/nvidia/nvworkspace/cross-compiled/minipipeline/

# Copy apps folder for minipipeline to the target Drive AGX Orin:
scp -r /usr/local/driveworks/apps reds@10.192.22.212:/home/reds/
sudo mv /home/reds/apps /usr/local/driveworks/apps

# copy dataset folder to the target Drive AGX Orin:
scp -r /usr/local/driveworks/data/samples/minipipeline/dataset reds@10.192.22.212:/home/reds/
sudo mkdir -p /usr/local/driveworks/data/samples/minipipeline
sudo mv /home/reds/dataset /usr/local/driveworks/data/samples/minipipeline/

# Modify limit for msg_max
sudo sed -i '$ a fs.mqueue.msg_max = 4096' /etc/sysctl.conf
sudo sysctl -p

# Modify limit for network stack
sudo sed -i '$ a net.core.wmem_max = 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.core.rmem_max = 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.core.rmem_default = 16777216' /etc/sysctl.conf
sudo sed -i '$ a net.ipv4.tcp_wmem = 65011712 65011712 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.ipv4.tcp_rmem = 65011712 65011712 65011712' /etc/sysctl.conf
sudo sysctl -p
# Run ./run_mini_pipeline.sh

reds@tegra-ubuntu:~/cross-compiled/minipipeline$ ./run_mini_pipeline.sh 
20250709_163816
20250709_163816
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :0
|--> Tuning message queue
|--> Tuning network stack
LD_LIBRARY_PATH: :/usr/local/driveworks/lib
/usr/local/driveworks/apps/minipipeline/LogFolder dir exists
total 64
drwxr-xr-x. 6 reds reds  4096 Jul  8 11:06 .
drwxr-xr-x. 5 reds reds  4096 Jul  8 10:33 ..
drwxrwxr-x. 2 reds reds  4096 Jul  9 16:38 LogFolder
-r-xr-xr-x. 1 reds reds 26715 Jul  8 10:33 MiniPipeline__standardSchedule.stm
-r-xr-xr-x. 1 reds reds 10547 Jul  8 10:33 MiniPipeline__standardSchedule.yaml
drwxr-xr-x. 2 reds reds  4096 Jul  8 10:33 applications
drwxr-xr-x. 2 reds reds  4096 Jul  8 10:33 graphlets
drwxr-xr-x. 2 reds reds  4096 Jul  8 10:33 nodes
Running command: /usr/local/driveworks/bin//launcher --binPath=/usr/local/driveworks/bin/ --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder --path=/usr/local/driveworks/apps/minipipeline --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset --dwdatapath=/usr/local/driveworks/data --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm --start_timestamp=0 --loglevel=DW_LOG_DEBUG --fullscreen=0 --winSizeW=1920 --winSizeH=1200 --virtual=1 --gdb_debug=0 --app_parameter= > /usr/local/driveworks/apps/minipipeline/LogFolder/launcher.log 2>&1

# Nothing happen ...

What do I miss ? What do I do wrong ?

Error String
Mainly the issue is that nothing happen, the program exist sometimes with :

Check if reset NetworkStack needed
Restore LD_LIBRARY_PATH to 
=======================================================================
launcher exit status: 216

End of launcher.log (see Logs section for complete log):

[2025-07-09T14:38:16.570928Z][DEBUG][tid:0][Launcher.cpp:1021][Launcher] All apps are launched.
[2025-07-09T14:38:16.570956Z][ERROR][tid:0][Launcher.cpp:1289][Launcher] Launcher::waitForAllApps: sigprocmask failed!
[2025-07-09T14:38:16.596156Z][INFO][tid:0][Launcher.cpp:1330][Launcher] Got signal: 17 (Child exited), si_pid: 2279077
[2025-07-09T14:38:16.596205Z][DEBUG][tid:0][Launcher.cpp:1410][Launcher] Sending SIGINT: /usr/local/driveworks/bin//ScheduleManager, name: schedule_manager
[2025-07-09T14:38:16.596285Z][FATAL][tid:0][Launcher.cpp:1158][Launcher] Process stm_master:2279077 terminated by signal: 6 (Aborted)
[2025-07-09T14:38:16.599043Z][INFO][tid:0][Launcher.cpp:1330][Launcher] Got signal: 17 (Child exited), si_pid: 2279076
[2025-07-09T14:38:16.599134Z][FATAL][tid:0][Launcher.cpp:1158][Launcher] Process schedule_manager:2279076 terminated by signal: 15 (Terminated)


--------------------------------------------------------------
WARNING: Using default Logger, most probably DriveWorks
         library was linked more than once.
--------------------------------------------------------------

DefaultLogger: [09-07-2025 14:38:16] TopExecutor: set TopExecutor to cpuset /sys/fs/cgroup/cpuset/rr2init/tasks
DefaultLogger: [09-07-2025 14:38:16] Failed to open cpuset /sys/fs/cgroup/cpuset/rr2init/tasks, errno: Permission denied (13)
DefaultLogger: [09-07-2025 14:38:16] Failed to set TopExecutor to RR2 init cpuset: /sys/fs/cgroup/cpuset/rr2init/tasks

Logs
FYI, I add to reduce the logs : An error occurred: Body is limited to 99000 characters; you entered 115813.

root@6.0.10.0-0009-build-linux-sdk:/home/nvidia/nvworkspace/build-aarch64-linux-gnu# make minipipeline_nodes
[  3%] Built target samples_allocator
[  6%] Built target lodepng-src
Scanning dependencies of target samples_framework_data_path
[  9%] Building CXX object src/framework/CMakeFiles/samples_framework_data_path.dir/SamplesDataPath.cpp.o
[  9%] Linking CXX static library libsamples_framework_data_path.a
[  9%] Built target samples_framework_data_path
Scanning dependencies of target glfw-x11
[ 12%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/context.c.o
[ 12%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/init.c.o
[ 16%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/input.c.o
[ 16%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/monitor.c.o
[ 19%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/vulkan.c.o
[ 19%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/window.c.o
[ 22%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/x11_init.c.o
[ 22%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/x11_monitor.c.o
[ 25%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/x11_window.c.o
[ 25%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/xkb_unicode.c.o
[ 29%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/linux_joystick.c.o
[ 32%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/posix_time.c.o
[ 32%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/posix_tls.c.o
[ 35%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/glx_context.c.o
[ 35%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/egl_context.c.o
[ 35%] Built target glfw-x11
Scanning dependencies of target glfw-src
[ 38%] Linking C shared library libglfw.so
[ 38%] Built target glfw-src
Scanning dependencies of target samples_framework_program_arguments
[ 38%] Building CXX object src/framework/CMakeFiles/samples_framework_program_arguments.dir/ProgramArguments.cpp.o
[ 41%] Linking CXX static library libsamples_framework_program_arguments.a
[ 41%] Built target samples_framework_program_arguments
Scanning dependencies of target samples_framework_screenshot_helper
[ 45%] Building CXX object src/framework/CMakeFiles/samples_framework_screenshot_helper.dir/ScreenshotHelper.cpp.o
[ 45%] Linking CXX static library libsamples_framework_screenshot_helper.a
[ 45%] Built target samples_framework_screenshot_helper
[ 48%] Built target samples_framework_log
Scanning dependencies of target samples_framework_camera_frame_pipeline
[ 51%] Building CXX object src/framework/CMakeFiles/samples_framework_camera_frame_pipeline.dir/CameraFramePipeline.cpp.o
[ 51%] Linking CXX static library libsamples_framework_camera_frame_pipeline.a
[ 51%] Built target samples_framework_camera_frame_pipeline
Scanning dependencies of target samples_framework_math_utils
[ 51%] Building CXX object src/framework/CMakeFiles/samples_framework_math_utils.dir/MathUtils.cpp.o
[ 54%] Linking CXX static library libsamples_framework_math_utils.a
[ 54%] Built target samples_framework_math_utils
Scanning dependencies of target samples_framework_mouse_view
[ 54%] Building CXX object src/framework/CMakeFiles/samples_framework_mouse_view.dir/MouseView3D.cpp.o
[ 58%] Linking CXX static library libsamples_framework_mouse_view.a
[ 58%] Built target samples_framework_mouse_view
Scanning dependencies of target samples_framework_grid
[ 61%] Building CXX object src/framework/CMakeFiles/samples_framework_grid.dir/Grid.cpp.o
[ 64%] Linking CXX static library libsamples_framework_grid.a
[ 64%] Built target samples_framework_grid
Scanning dependencies of target samples_framework_render_utils
[ 67%] Building CXX object src/framework/CMakeFiles/samples_framework_render_utils.dir/RenderUtils.cpp.o
[ 67%] Linking CXX static library libsamples_framework_render_utils.a
[ 67%] Built target samples_framework_render_utils
Scanning dependencies of target samples_framework_simple_camera
[ 70%] Building CXX object src/framework/CMakeFiles/samples_framework_simple_camera.dir/SimpleCamera.cpp.o
[ 70%] Linking CXX static library libsamples_framework_simple_camera.a
[ 70%] Built target samples_framework_simple_camera
Scanning dependencies of target samples_framework_simple_recording_player
[ 74%] Building CXX object src/framework/CMakeFiles/samples_framework_simple_recording_player.dir/SimpleRecordingPlayer.cpp.o
[ 74%] Linking CXX static library libsamples_framework_simple_recording_player.a
[ 74%] Built target samples_framework_simple_recording_player
Scanning dependencies of target samples_framework_simple_renderer
[ 77%] Building CXX object src/framework/CMakeFiles/samples_framework_simple_renderer.dir/SimpleRenderer.cpp.o
[ 80%] Linking CXX static library libsamples_framework_simple_renderer.a
[ 80%] Built target samples_framework_simple_renderer
Scanning dependencies of target samples_framework_profiler_cuda
[ 80%] Building CXX object src/framework/CMakeFiles/samples_framework_profiler_cuda.dir/ProfilerCUDA.cpp.o
[ 83%] Linking CXX static library libsamples_framework_profiler_cuda.a
[ 83%] Built target samples_framework_profiler_cuda
Scanning dependencies of target samples_framework
[ 87%] Building CXX object src/framework/CMakeFiles/samples_framework.dir/DriveWorksSample.cpp.o
[ 87%] Building CXX object src/framework/CMakeFiles/samples_framework.dir/Window.cpp.o
[ 90%] Building CXX object src/framework/CMakeFiles/samples_framework.dir/WindowGLFW.cpp.o
[ 90%] Building CXX object src/framework/CMakeFiles/samples_framework.dir/WindowEGL.cpp.o
[ 93%] Building CXX object src/framework/CMakeFiles/samples_framework.dir/WindowLinuxEGL.cpp.o
[ 93%] Linking CXX static library libsamples_framework.a
[ 93%] Built target samples_framework
Scanning dependencies of target minipipeline_nodes
[ 96%] Building CXX object src/minipipeline/CMakeFiles/minipipeline_nodes.dir/VisualizationNode.cpp.o
[ 96%] Building CXX object src/minipipeline/CMakeFiles/minipipeline_nodes.dir/VisualizationNodeImpl.cpp.o
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp: In member function 'minipipeline::VisualizationNodeImpl::IMUString minipipeline::VisualizationNodeImpl::getIMUdata(dwIMUFrame&)':
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:798:69: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  798 |     DW_LOGD << "Epoch: " << m_epochCount << ", IMU flag: " << frame.flags << Logger::State::endl;
      |                                                                     ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:798:69: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  798 |     DW_LOGD << "Epoch: " << m_epochCount << ", IMU flag: " << frame.flags << Logger::State::endl;
      |                                                                     ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:798:69: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  798 |     DW_LOGD << "Epoch: " << m_epochCount << ", IMU flag: " << frame.flags << Logger::State::endl;
      |                                                                     ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:803:25: warning: 'dwIMUFrame::timestamp_us' is deprecated: timestamp_us  is deprecated and will not be used in the next major release. Please use hostTimestamp or sensorTimestamp instead. [-Wdeprecated-declarations]
  803 |         result += frame.timestamp_us;
      |                         ^~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:379:14: note: declared here
  379 |     dwTime_t timestamp_us;
      |              ^~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:803:25: warning: 'dwIMUFrame::timestamp_us' is deprecated: timestamp_us  is deprecated and will not be used in the next major release. Please use hostTimestamp or sensorTimestamp instead. [-Wdeprecated-declarations]
  803 |         result += frame.timestamp_us;
      |                         ^~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:379:14: note: declared here
  379 |     dwTime_t timestamp_us;
      |              ^~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:803:25: warning: 'dwIMUFrame::timestamp_us' is deprecated: timestamp_us  is deprecated and will not be used in the next major release. Please use hostTimestamp or sensorTimestamp instead. [-Wdeprecated-declarations]
  803 |         result += frame.timestamp_us;
      |                         ^~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:379:14: note: declared here
  379 |     dwTime_t timestamp_us;
      |              ^~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:28: warning: 'DW_IMU_ROLL' is deprecated: Use dwIMUFrame.validityInfo.orientation[0] instead [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                            ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:52:5: note: declared here
   52 |     DW_IMU_ROLL DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientation[0] instead") = 1 << 2, //!< Value of dwIMUFrame.orientation[0] is valid.
      |     ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:42: warning: 'DW_IMU_PITCH' is deprecated: Use dwIMUFrame.validityInfo.orientation[1] instead [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                                          ^~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:55:5: note: declared here
   55 |     DW_IMU_PITCH DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientation[1] instead") = 1 << 3, //!< Value of dwIMUFrame.orientation[1] is valid.
      |     ^~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:57: warning: 'DW_IMU_YAW' is deprecated: Use dwIMUFrame.validityInfo.orientation[2] instead [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                                                         ^~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:58:5: note: declared here
   58 |     DW_IMU_YAW DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientation[2] instead") = 1 << 4, //!< Value of dwIMUFrame.orientation[2] is valid.
      |     ^~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:28: warning: 'DW_IMU_QUATERNION_X' is deprecated: Use dwIMUFrame.validityInfo.orientationQuaternion instead [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                            ^~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:61:5: note: declared here
   61 |     DW_IMU_QUATERNION_X DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientationQuaternion instead") = 1 << 5, //!< Value of dwIMUFrame.orientationQuaternion.x is valid.
      |     ^~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:50: warning: 'DW_IMU_QUATERNION_Y' is deprecated: Use dwIMUFrame.validityInfo.orientationQuaternion instead [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                                                  ^~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:64:5: note: declared here
   64 |     DW_IMU_QUATERNION_Y DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientationQuaternion instead") = 1 << 6, //!< Value of dwIMUFrame.orientationQuaternion.y is valid.
      |     ^~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:72: warning: 'DW_IMU_QUATERNION_Z' is deprecated: Use dwIMUFrame.validityInfo.orientationQuaternion instead [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                                                                        ^~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:67:5: note: declared here
   67 |     DW_IMU_QUATERNION_Z DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientationQuaternion instead") = 1 << 7, //!< Value of dwIMUFrame.orientationQuaternion.z is valid.
      |     ^~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:94: warning: 'DW_IMU_QUATERNION_W' is deprecated: Use dwIMUFrame.validityInfo.orientationQuaternion instead [-Wdeprecated-declarations]
  818 |       if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                                                                                            ^~~~~~~~~~~~~~~~~~~

In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:70:5: note: declared here
   70 |     DW_IMU_QUATERNION_W DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientationQuaternion instead") = 1 << 8, //!< Value of dwIMUFrame.orientationQuaternion.w is valid.
      |     ^~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:28: warning: 'DW_IMU_ROLL_RATE' is deprecated: Use dwIMUFrame.validityInfo.turnrate[0] instead [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                            ^~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:73:5: note: declared here
   73 |     DW_IMU_ROLL_RATE DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.turnrate[0] instead") = 1 << 9, //!< Value of dwIMUFrame.turnrate[0] is valid.
      |     ^~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:47: warning: 'DW_IMU_PITCH_RATE' is deprecated: Use dwIMUFrame.validityInfo.turnrate[1] instead [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                                               ^~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:76:5: note: declared here
   76 |     DW_IMU_PITCH_RATE DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.turnrate[1] instead") = 1 << 10, //!< Value of dwIMUFrame.turnrate[1] is valid.
      |     ^~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:67: warning: 'DW_IMU_YAW_RATE' is deprecated: Use dwIMUFrame.validityInfo.turnrate[2] instead [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                                                                   ^~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:79:5: note: declared here
   79 |     DW_IMU_YAW_RATE DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.turnrate[2] instead") = 1 << 11, //!< Value of dwIMUFrame.turnrate[2] is valid.
      |     ^~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:841:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  841 |         if (frame.flags & DW_IMU_HEADING)
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:841:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  841 |         if (frame.flags & DW_IMU_HEADING)
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:841:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  841 |         if (frame.flags & DW_IMU_HEADING)
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:841:27: warning: 'DW_IMU_HEADING' is deprecated: Use dwIMUFrame.validityInfo.heading instead [-Wdeprecated-declarations]
  841 |         if (frame.flags & DW_IMU_HEADING)
      |                           ^~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:49:5: note: declared here
   49 |     DW_IMU_HEADING DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.heading instead") = 1 << 1, //!< Value of dwIMUFrame.heading is valid.
      |     ^~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:845:23: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  845 |             if (frame.headingType == DW_IMU_HEADING_TRUE)
      |                       ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:845:23: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  845 |             if (frame.headingType == DW_IMU_HEADING_TRUE)
      |                       ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:845:23: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  845 |             if (frame.headingType == DW_IMU_HEADING_TRUE)
      |                       ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:845:38: warning: 'DW_IMU_HEADING_TRUE' is deprecated: dwIMUHeadingType will be removed [-Wdeprecated-declarations]
  845 |             if (frame.headingType == DW_IMU_HEADING_TRUE)
      |                                      ^~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:108:5: note: declared here
  108 |     DW_IMU_HEADING_TRUE DW_DEPRECATED_ENUM("dwIMUHeadingType will be removed") = 0, //!< 'dwIMUFrame.heading' points towards true north.
      |     ^~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:849:28: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  849 |             else if (frame.headingType == DW_IMU_HEADING_MAGNETIC)
      |                            ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:849:28: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  849 |             else if (frame.headingType == DW_IMU_HEADING_MAGNETIC)
      |                            ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:849:28: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  849 |             else if (frame.headingType == DW_IMU_HEADING_MAGNETIC)
      |                            ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:849:43: warning: 'DW_IMU_HEADING_MAGNETIC' is deprecated: dwIMUHeadingType will be removed [-Wdeprecated-declarations]
  849 |             else if (frame.headingType == DW_IMU_HEADING_MAGNETIC)
      |                                           ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:112:5: note: declared here
  112 |     DW_IMU_HEADING_MAGNETIC DW_DEPRECATED_ENUM("dwIMUHeadingType will be removed") = 1, //!< 'dwIMUFrame.heading' points towards magnetic north.
      |     ^~~~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:28: warning: 'DW_IMU_ACCELERATION_X' is deprecated: Use dwIMUFrame.validityInfo.acceleration[0] instead [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                            ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:82:5: note: declared here
   82 |     DW_IMU_ACCELERATION_X DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.acceleration[0] instead") = 1 << 12, //!< Value of dwIMUFrame.acceleration[0] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:52: warning: 'DW_IMU_ACCELERATION_Y' is deprecated: Use dwIMUFrame.validityInfo.acceleration[1] instead [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                                                    ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:85:5: note: declared here
   85 |     DW_IMU_ACCELERATION_Y DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.acceleration[1] instead") = 1 << 13, //!< Value of dwIMUFrame.acceleration[1] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:76: warning: 'DW_IMU_ACCELERATION_Z' is deprecated: Use dwIMUFrame.validityInfo.acceleration[2] instead [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                                                                            ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:88:5: note: declared here
   88 |     DW_IMU_ACCELERATION_Z DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.acceleration[2] instead") = 1 << 14, //!< Value of dwIMUFrame.acceleration[2] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:28: warning: 'DW_IMU_MAGNETOMETER_X' is deprecated: Use dwIMUFrame.validityInfo.magnetometer[0] instead [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                            ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:91:5: note: declared here
   91 |     DW_IMU_MAGNETOMETER_X DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.magnetometer[0] instead") = 1 << 15, //!< Value of dwIMUFrame.magnetometer[0] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:52: warning: 'DW_IMU_MAGNETOMETER_Y' is deprecated: Use dwIMUFrame.validityInfo.magnetometer[1] instead [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                                                    ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:94:5: note: declared here
   94 |     DW_IMU_MAGNETOMETER_Y DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.magnetometer[1] instead") = 1 << 16, //!< Value of dwIMUFrame.magnetometer[1] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:76: warning: 'DW_IMU_MAGNETOMETER_Z' is deprecated: Use dwIMUFrame.validityInfo.magnetometer[2] instead [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                                                                            ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:97:5: note: declared here
   97 |     DW_IMU_MAGNETOMETER_Z DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.magnetometer[2] instead") = 1 << 17, //!< Value of dwIMUFrame.magnetometer[2] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
[100%] Building CXX object src/minipipeline/CMakeFiles/minipipeline_nodes.dir/WindowApp.cpp.o
[100%] Linking CXX shared library libminipipeline_nodes.so
[100%] Built target minipipeline_nodes
root@6.0.10.0-0009-build-linux-sdk:/home/nvidia/nvworkspace/build-aarch64-linux-gnu#

launcher.log:

reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat launcher.log 
[2025-07-09T14:38:16.568073Z][ERROR][tid:0][Launcher.cpp:1966][Launcher] RoadRunner Main initiated at:602498929540160
[2025-07-09T14:38:16.568275Z][VERBOSE][tid:0][Launcher.cpp:153][Launcher] Predefined device type not used outside of dual mode
[2025-07-09T14:38:16.568344Z][ERROR][tid:0][Launcher.cpp:309][Launcher] model_fd close failed
[2025-07-09T14:38:16.568379Z][DEBUG][tid:0][Launcher.cpp:1979][Launcher] Launcher Arguments:
[2025-07-09T14:38:16.568389Z][DEBUG][tid:0][Launcher.cpp:1980][Launcher] --amend=
--app_parameter=
--argumentsFile=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disable_errors_seh_reporting=
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enablePrioSched=1
--enableTracer=0
--enable_errors_seh_reporting=
--enable_nodes_seh_reporting=
--end_timestamp=0
--fiufile=
--frame=
--fullscreen=0
--gdb_debug=0
--instantiate_rig_sensors=
--lcmSafetyModuleAsSyncClient=0
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logSpec=console
--logStreaming=
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--loop=0
--mapPath=
--memwatch_frames=
--memwatch_free_enable=0
--navRoute=
--ncuProfileFrames=
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--runWithRvc=0
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--sehFailureMask=
--service-framework=0
--shadow=
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stm_discriminator=
--time_multiplier=
--time_multiplier_nonblocking=
--tracerPath=
--useDynamicMap=0
--useLCM=1
--useNominalTransform=0
--valamend=
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

[2025-07-09T14:38:16.568417Z][DEBUG][tid:0][Launcher.cpp:1988][Launcher] SWC Arguments:
[2025-07-09T14:38:16.568425Z][DEBUG][tid:0][Launcher.cpp:1989][Launcher] --amend=
--app_parameter=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disable_errors_seh_reporting=
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enablePrioSched=1
--enable_errors_seh_reporting=
--enable_nodes_seh_reporting=
--end_timestamp=0
--fiufile=
--frame=
--fullscreen=0
--instantiate_rig_sensors=
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logStreaming=
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--loop=0
--mapPath=
--memwatch_frames=
--memwatch_free_enable=0
--navRoute=
--ncuProfileFrames=
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--shadow=
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stm_discriminator=
--time_multiplier=
--time_multiplier_nonblocking=
--useDynamicMap=0
--useNominalTransform=0
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

[2025-07-09T14:38:16.568674Z][DEBUG][tid:0][LaunchSpecReader.cpp:1123][JsonSystemReader] [JsonSystemReader] LaunchSpec version: 2
[2025-07-09T14:38:16.568953Z][VERBOSE][tid:0][LaunchSpecReader.cpp:779][LaunchSpecReaderBase] Failed to get argument: --logStreaming=
[2025-07-09T14:38:16.569015Z][DEBUG][tid:0][LaunchSpecReader.cpp:1391][JsonSystemReader] [JsonSystemReader] ScheduleKey: standardSchedule id: 0
[2025-07-09T14:38:16.569087Z][DEBUG][tid:0][Launcher.cpp:886][Launcher] Launching app cgf_sync_ctrl_client
[2025-07-09T14:38:16.569109Z][DEBUG][tid:0][Launcher.cpp:887][Launcher] cgf_sync_ctrl_client exe: /usr/local/driveworks/bin//SyncControlClientLite
[2025-07-09T14:38:16.569129Z][DEBUG][tid:0][Launcher.cpp:768][Launcher] Configure cgf_sync_ctrl_client
[2025-07-09T14:38:16.569134Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         /usr/local/driveworks/bin//SyncControlClientLite
[2025-07-09T14:38:16.569139Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --loglevel=DW_LOG_DEBUG
[2025-07-09T14:38:16.569143Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --port=4002
[2025-07-09T14:38:16.569147Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logspec=file/rfc5424.user.cgf_sync_ctrl_client:/usr/local/driveworks/apps/minipipeline/LogFolder/cgf_sync_ctrl_client.log
[2025-07-09T14:38:16.569403Z][DEBUG][tid:0][Launcher.cpp:886][Launcher] Launching app cgf_sync_server
[2025-07-09T14:38:16.569416Z][DEBUG][tid:0][Launcher.cpp:887][Launcher] cgf_sync_server exe: /usr/local/driveworks/bin//SyncServer
[2025-07-09T14:38:16.569425Z][DEBUG][tid:0][Launcher.cpp:768][Launcher] Configure cgf_sync_server
[2025-07-09T14:38:16.569430Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         /usr/local/driveworks/bin//SyncServer
[2025-07-09T14:38:16.569435Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --loglevel=DW_LOG_DEBUG
[2025-07-09T14:38:16.569439Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --participant=mainClient,schedule_manager,cgf_sync_ctrl_client
[2025-07-09T14:38:16.569443Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --port=4002
[2025-07-09T14:38:16.569448Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logspec=file/rfc5424.user.cgf_sync_server:/usr/local/driveworks/apps/minipipeline/LogFolder/cgf_sync_server.log
[2025-07-09T14:38:16.569708Z][DEBUG][tid:0][Launcher.cpp:886][Launcher] Launching app mainClient
[2025-07-09T14:38:16.569717Z][DEBUG][tid:0][Launcher.cpp:887][Launcher] mainClient exe: /usr/local/driveworks/bin//LoaderLite
[2025-07-09T14:38:16.569726Z][DEBUG][tid:0][Launcher.cpp:768][Launcher] Configure mainClient
[2025-07-09T14:38:16.569731Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         /usr/local/driveworks/bin//LoaderLite
[2025-07-09T14:38:16.569736Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --swcid=mainClient
[2025-07-09T14:38:16.569740Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --libname=RuntimeGraphlet
[2025-07-09T14:38:16.569744Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --modulename=mainClient
[2025-07-09T14:38:16.569748Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --amend=
[2025-07-09T14:38:16.569752Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --app_parameter=
[2025-07-09T14:38:16.569756Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --autolanechange=0
[2025-07-09T14:38:16.569760Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --base_port=
[2025-07-09T14:38:16.569764Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --binPath=/usr/local/driveworks/bin/
[2025-07-09T14:38:16.569768Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --calibrationOverlayFile=
[2025-07-09T14:38:16.569771Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --configOverlayFile=
[2025-07-09T14:38:16.569775Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --configOverlayName=
[2025-07-09T14:38:16.569779Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
[2025-07-09T14:38:16.569783Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disableParamServiceThread=
[2025-07-09T14:38:16.569788Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disablePrioInit=0
[2025-07-09T14:38:16.569792Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disableStmControlLogger=0
[2025-07-09T14:38:16.569795Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disable_errors_seh_reporting=
[2025-07-09T14:38:16.569799Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disablefaulthandler=0
[2025-07-09T14:38:16.569803Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --ds2_control=
[2025-07-09T14:38:16.569807Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --dwdatapath=/usr/local/driveworks/data
[2025-07-09T14:38:16.569811Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --enablePrioSched=1
[2025-07-09T14:38:16.569825Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --enable_errors_seh_reporting=
[2025-07-09T14:38:16.569830Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --enable_nodes_seh_reporting=
[2025-07-09T14:38:16.569833Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --end_timestamp=0
[2025-07-09T14:38:16.569837Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --fiufile=
[2025-07-09T14:38:16.569841Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --frame=
[2025-07-09T14:38:16.569845Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --fullscreen=0
[2025-07-09T14:38:16.569849Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --instantiate_rig_sensors=
[2025-07-09T14:38:16.569853Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --lockstep_deterministic_replay=
[2025-07-09T14:38:16.569857Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
[2025-07-09T14:38:16.569861Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logdebug=0
[2025-07-09T14:38:16.569865Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --loglevel=DW_LOG_DEBUG
[2025-07-09T14:38:16.569869Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logprintstats=0
[2025-07-09T14:38:16.569873Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logremovedup=0
[2025-07-09T14:38:16.569877Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logremovenl=0
[2025-07-09T14:38:16.569881Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logremovetag=
[2025-07-09T14:38:16.569884Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --loop=0
[2025-07-09T14:38:16.569888Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --mapPath=
[2025-07-09T14:38:16.569892Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --memwatch_frames=
[2025-07-09T14:38:16.569896Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --memwatch_free_enable=0
[2025-07-09T14:38:16.569900Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --navRoute=
[2025-07-09T14:38:16.569904Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --ncuProfileFrames=
[2025-07-09T14:38:16.569908Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --offscreen=0
[2025-07-09T14:38:16.569912Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --path=/usr/local/driveworks/apps/minipipeline
[2025-07-09T14:38:16.569916Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --preInitSerialize=0
[2025-07-09T14:38:16.569920Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --rc2f=
[2025-07-09T14:38:16.569923Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --region=
[2025-07-09T14:38:16.569927Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --rig=
[2025-07-09T14:38:16.569931Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-09T14:38:16.569935Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --shadow=
[2025-07-09T14:38:16.569939Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
[2025-07-09T14:38:16.569943Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --start_timestamp=0
[2025-07-09T14:38:16.569947Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --stm_discriminator=
[2025-07-09T14:38:16.569951Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --time_multiplier=
[2025-07-09T14:38:16.569955Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --time_multiplier_nonblocking=
[2025-07-09T14:38:16.569959Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --useDynamicMap=0
[2025-07-09T14:38:16.569963Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --useNominalTransform=0
[2025-07-09T14:38:16.569967Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --vinOverlayFile=
[2025-07-09T14:38:16.569971Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --virtual=1
[2025-07-09T14:38:16.569975Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --virtual_time=
[2025-07-09T14:38:16.569978Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --winSizeH=1200
[2025-07-09T14:38:16.569982Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --winSizeW=1920
[2025-07-09T14:38:16.569986Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logspec=file/rfc5424.user.mainClient:/usr/local/driveworks/apps/minipipeline/LogFolder/mainClient.log
[2025-07-09T14:38:16.569997Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --instanceId=0
[2025-07-09T14:38:16.570002Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --rrErrorReportingInstance=0
[2025-07-09T14:38:16.570006Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --machine_id=machine0
[2025-07-09T14:38:16.570226Z][DEBUG][tid:0][Launcher.cpp:886][Launcher] Launching app schedule_manager
[2025-07-09T14:38:16.570238Z][DEBUG][tid:0][Launcher.cpp:887][Launcher] schedule_manager exe: /usr/local/driveworks/bin//ScheduleManager
[2025-07-09T14:38:16.570249Z][DEBUG][tid:0][Launcher.cpp:768][Launcher] Configure schedule_manager
[2025-07-09T14:38:16.570257Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         /usr/local/driveworks/bin//ScheduleManager
[2025-07-09T14:38:16.570262Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --loglevel=DW_LOG_DEBUG
[2025-07-09T14:38:16.570267Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --binPath=/usr/local/driveworks/bin/
[2025-07-09T14:38:16.570271Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-09T14:38:16.570276Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
[2025-07-09T14:38:16.570279Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --enableScheduleSwitching=true
[2025-07-09T14:38:16.570283Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --scheduleManagerHostIP=127.0.0.1
[2025-07-09T14:38:16.570287Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --scheduleManagerHostPort=4010
[2025-07-09T14:38:16.570291Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --scheduleManagerNumLoaderClients=1
[2025-07-09T14:38:16.570295Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --scheduleManagerNumSSMClients=1
[2025-07-09T14:38:16.570299Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logspec=file/rfc5424.user.schedule_manager:/usr/local/driveworks/apps/minipipeline/LogFolder/schedule_manager.log
[2025-07-09T14:38:16.570303Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --schedule-manager-name=CGF-ScheduleManager
[2025-07-09T14:38:16.570307Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --sensorSyncEnabled=1
[2025-07-09T14:38:16.570311Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disablePrioInit=0
[2025-07-09T14:38:16.570315Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --enablePrioSched=1
[2025-07-09T14:38:16.570549Z][DEBUG][tid:0][Launcher.cpp:886][Launcher] Launching app stm_master
[2025-07-09T14:38:16.570564Z][DEBUG][tid:0][Launcher.cpp:887][Launcher] stm_master exe: /usr/local/driveworks/bin//stm_master
[2025-07-09T14:38:16.570575Z][DEBUG][tid:0][Launcher.cpp:768][Launcher] Configure stm_master
[2025-07-09T14:38:16.570581Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         /usr/local/driveworks/bin//stm_master
[2025-07-09T14:38:16.570586Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-09T14:38:16.570591Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --log=/usr/local/driveworks/apps/minipipeline/LogFolder/stm_sreport
[2025-07-09T14:38:16.570595Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --soc=TegraA
[2025-07-09T14:38:16.570599Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --timeout-us=80000000
[2025-07-09T14:38:16.570603Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         -m
[2025-07-09T14:38:16.570607Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --schedule-manager-name=CGF-ScheduleManager
[2025-07-09T14:38:16.570611Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --num-input-schedule=1
[2025-07-09T14:38:16.570616Z][DEBUG][tid:0][Launcher.cpp:804][Launcher] The standard streams are redirected into file for app: stm_master logSpec: file/rfc5424.user.stm_master:/usr/local/driveworks/apps/minipipeline/LogFolder/stm_master.log
[2025-07-09T14:38:16.570639Z][ERROR][tid:0][Launcher.cpp:833][Launcher] Invalid file type for fopen: /usr/local/driveworks/apps/minipipeline/LogFolder/stm_master.log
[2025-07-09T14:38:16.570928Z][DEBUG][tid:0][Launcher.cpp:1021][Launcher] All apps are launched.
[2025-07-09T14:38:16.570956Z][ERROR][tid:0][Launcher.cpp:1289][Launcher] Launcher::waitForAllApps: sigprocmask failed!
[2025-07-09T14:38:16.596156Z][INFO][tid:0][Launcher.cpp:1330][Launcher] Got signal: 17 (Child exited), si_pid: 2279077
[2025-07-09T14:38:16.596205Z][DEBUG][tid:0][Launcher.cpp:1410][Launcher] Sending SIGINT: /usr/local/driveworks/bin//ScheduleManager, name: schedule_manager
[2025-07-09T14:38:16.596285Z][FATAL][tid:0][Launcher.cpp:1158][Launcher] Process stm_master:2279077 terminated by signal: 6 (Aborted)
[2025-07-09T14:38:16.599043Z][INFO][tid:0][Launcher.cpp:1330][Launcher] Got signal: 17 (Child exited), si_pid: 2279076
[2025-07-09T14:38:16.599134Z][FATAL][tid:0][Launcher.cpp:1158][Launcher] Process schedule_manager:2279076 terminated by signal: 15 (Terminated)


--------------------------------------------------------------
WARNING: Using default Logger, most probably DriveWorks
         library was linked more than once.
--------------------------------------------------------------

DefaultLogger: [09-07-2025 14:38:16] TopExecutor: set TopExecutor to cpuset /sys/fs/cgroup/cpuset/rr2init/tasks
DefaultLogger: [09-07-2025 14:38:16] Failed to open cpuset /sys/fs/cgroup/cpuset/rr2init/tasks, errno: Permission denied (13)
DefaultLogger: [09-07-2025 14:38:16] Failed to set TopExecutor to RR2 init cpuset: /sys/fs/cgroup/cpuset/rr2init/tasks
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat cgf_sync_ctrl_client.log 
<10>1 2025-07-09T14:38:16.605746Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:223][NO_TAG] Initialize SyncClient with parameters:
<10>1 2025-07-09T14:38:16.605768Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:224][NO_TAG] logSpec: file/rfc5424.user.cgf_sync_ctrl_client:/usr/local/driveworks/apps/minipipeline/LogFolder/cgf_sync_ctrl_client.log
<10>1 2025-07-09T14:38:16.605775Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:225][NO_TAG] port: 4002
<10>1 2025-07-09T14:38:16.605779Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:226][NO_TAG] groupID: 15
<10>1 2025-07-09T14:38:16.606036Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:237][NO_TAG] SyncClient initialized
<10>1 2025-07-09T14:38:16.606051Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:84][NO_TAG] Starting SyncClient
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ 
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat cgf_sync_server.log 
<10>1 2025-07-09T14:38:16.607276Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:0][main_server.cpp:87][NO_TAG] Initialize SyncServer with parameters:
<10>1 2025-07-09T14:38:16.607294Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:0][main_server.cpp:88][NO_TAG] logSpec: file/rfc5424.user.cgf_sync_server:/usr/local/driveworks/apps/minipipeline/LogFolder/cgf_sync_server.log

... log reduced ...

[0us][SILENT][tid:0][main_server.cpp:132][NO_TAG] SyncServer started
<10>1 2025-07-09T14:38:16.608754Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:0][main_server.cpp:145][NO_TAG] Waiting clients disconnect to stop server
<10>1 2025-07-09T14:38:16.608872Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:1][CGFSyncServer.cpp:552][NO_TAG] Sync server accepted connection: nConnected = 1 nParticipant = 3
<10>1 2025-07-09T14:38:16.608967Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:1][CGFSyncServer.cpp:605][NO_TAG] Client: cgf_sync_ctrl_client request 22 fence registration

... log reduced ...

<10>1 2025-07-09T14:38:16.952681Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:1][CGFSyncServer.cpp:598][NO_TAG] Client: mainClient request fence registration: P0_INIT_START
<10>1 2025-07-09T14:38:16.953489Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:1][CGFSyncServer.cpp:347][NO_TAG] Server recv sync request from: mainClient, with fence: 
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ 
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat mainClient_0.log 
<11>1 2025-07-09T14:38:16.943916Z - mainClient 2279075 - - [0us][ERROR][tid:rr2_main][TopExecutor.hpp:3105][TopExecutor] SWC initiated at:602499305366112
<13>1 2025-07-09T14:38:16.944015Z - mainClient 2279075 - - [0us][DEBUG][tid:rr2_main][TopExecutor.hpp:3109][TopExecutor] Program Arguments:
--amend=
--app_parameter=
--augreplay=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--channelBindingThreadPoolSize=auto
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableCudaGraph=0
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disable_errors_seh_reporting=
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enable-ssm-degradation=0
--enablePrioSched=1
--enable_errors_seh_reporting=
--enable_nodes_seh_reporting=
--end_timestamp=0
--fiufile=
--frame=
--fullscreen=0
--instanceId=0
--instantiate_rig_sensors=
--libname=RuntimeGraphlet
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--logspec=file/rfc5424.user.mainClient:/usr/local/driveworks/apps/minipipeline/LogFolder/mainClient.log
--loop=0
--machine_id=machine0
--mapPath=
--memwatch_frames=
--memwatch_free_enable=0
--modulename=mainClient
--navRoute=
--ncuProfileFrames=
--nodeInitThreadPoolSize=auto
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--rrErrorReportingInstance=0
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--shadow=
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stm_discriminator=
--swcid=mainClient
--time_multiplier=
--time_multiplier_nonblocking=
--useDynamicMap=0
--useNominalTransform=0
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

<13>1 2025-07-09T14:38:16.944022Z - mainClient 2279075 - - [0us][DEBUG][tid:rr2_main][TopExecutor.hpp:3115][TopExecutor] argv[0]: /usr/local/driveworks/bin//LoaderLite
<13>1 2025-07-09T14:38:16.944025Z - mainClient 2279075 - - [0us][DEBUG][tid:rr2_main][TopExecutor.hpp:3115][TopExecutor] argv[1]: --swcid=mainClient
... log reduced ...
<13>1 2025-07-09T14:38:16.952625Z - mainClient 2279075 - - [0us][DEBUG][tid:0][SyncClient.cpp:594][NO_TAG] SyncClient registering fence: P0_INIT_END
<13>1 2025-07-09T14:38:16.952645Z - mainClient 2279075 - - [0us][DEBUG][tid:0][SyncClient.cpp:594][NO_TAG] SyncClient registering fence: P1_READY_START
<13>1 2025-07-09T14:38:16.952664Z - mainClient 2279075 - - [0us][DEBUG][tid:0][SyncClient.cpp:594][NO_TAG] SyncClient registering fence: P0_INIT_START
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat stm_master.log 
terminate called after throwing an instance of 'nvstm::ErrnoError'
  what():  Could not open ShmDescriptor; errno: 17 (File exists)
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$

Thanks for support and help,
Kind regards,
Lucas

Dear @lucas.lattion1 ,
do you notice issue when running on target?

Yes, I have the issue when running it on the target: NVIDIA DRIVE AGX Orin
I provided mostly everything.
I specify all the version just in case:
I use DRIVE OS 6.0.10.0
so there is in it:
DriveWorks 5.20
cuda 11.4

Thanks for support,
Lucas

CGF daemon is not stable and notice issues with CGF samples in DW 5.20. Please use DRIVE OS 6.0.8.1 + DW 5.14 to test CGF samples.

Dear @SivaRamaKrishnaNV,

I have downloaded the docker and reflashed the card to use DRIVE OS 6.0.8.1 + DW 5.14 to test CGF samples.

I get another error 217 on run_minipipeline.sh :

reds@tegra-ubuntu:~/cross-compiled$ ./run_mini_pipeline.sh 
20250714_101447
20250714_101447
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :1
|--> Tuning message queue
!!! Require larger message queue !!!
STM requires at least 4096 msgs
-------------------------------------------------------------
sudo sed -i '$ a fs.mqueue.msg_max = 4096' /etc/sysctl.conf
sudo sysctl -p
-------------------------------------------------------------
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a fs.mqueue.msg_max = 4096' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sysctl -p
fs.mqueue.msg_max = 4096
fs.mqueue.msg_max = 4096
reds@tegra-ubuntu:~/cross-compiled$ ls /usr/local/driveworks/data/samples/minipipeline/dataset
can_ta1.bin            radar_FXL.bin              video_A1_RL_120.h264.seek
gps_xsens.bin          radar_FXL.bin.seek         video_A1_XL_120.h264
imu_xsens.bin          radar_FXR.bin              video_A1_XL_120.h264.seek
irisSimShort_2217.bin  radar_FXR.bin.seek         video_A2_RR_120.h264
radar_BSL.bin          radar_RL.bin               video_A2_RR_120.h264.seek
radar_BSL.bin.seek     radar_RL.bin.seek          video_A2_XR_120.h264
radar_BSR.bin          radar_RR.bin               video_A2_XR_120.h264.seek
radar_BSR.bin.seek     radar_RR.bin.seek          video_B0_FC_60.h264
radar_FL.bin           rig.json                   video_B0_FC_60.h264.seek
radar_FL.bin.seek      video_A0_FC_120.h264       video_B0_RC_60.h264
radar_FR.bin           video_A0_FC_120.h264.seek  video_B0_RC_60.h264.seek
radar_FR.bin.seek      video_A1_RL_120.h264       video_time_0.txt
reds@tegra-ubuntu:~/cross-compiled$ ls /usr/local/driveworks/apps/minipipeline
MiniPipeline__standardSchedule.stm   applications  nodes
MiniPipeline__standardSchedule.yaml  graphlets
reds@tegra-ubuntu:~/cross-compiled$ ./run_mini_pipeline.sh 
20250714_101611
20250714_101611
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :1
|--> Tuning message queue
|--> Tuning network stack
!!! Require larger NetworkStack !!!
The default value of rmem_max and wmem_max is about 128 KB in Linux, which is too small to
to fit the current sample mini pipeline (causing high-latencies).
The following setting is going to improve networking performance.
Please enlarge NetworkStack with following commands:
-----------------------------------------------------------------------------------
sudo sed -i '$ a net.core.wmem_max = 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.core.rmem_max = 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.core.rmem_default = 16777216' /etc/sysctl.conf
sudo sed -i '$ a net.ipv4.tcp_wmem = 65011712 65011712 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.ipv4.tcp_rmem = 65011712 65011712 65011712' /etc/sysctl.conf
sudo sysctl -p
-----------------------------------------------------------------------------------
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a net.core.wmem_max = 65011712' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a net.core.rmem_max = 65011712' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a net.core.rmem_default = 16777216' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a net.ipv4.tcp_wmem = 65011712 65011712 65011712' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a net.ipv4.tcp_rmem = 65011712 65011712 65011712' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sysctl -p
fs.mqueue.msg_max = 4096
fs.mqueue.msg_max = 4096
net.core.wmem_max = 65011712
net.core.rmem_max = 65011712
net.core.rmem_default = 16777216
net.ipv4.tcp_wmem = 65011712 65011712 65011712
net.ipv4.tcp_rmem = 65011712 65011712 65011712
reds@tegra-ubuntu:~/cross-compiled$ ./run_mini_pipeline.sh 
20250714_101637
20250714_101637
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :1
|--> Tuning message queue
|--> Tuning network stack
LD_LIBRARY_PATH: :/usr/local/driveworks/lib
total 68
drwxr-xr-x. 6 reds reds  4096 Jul 14 10:16 .
drwxr-xr-x. 5 reds reds  4096 Jul 14 10:09 ..
drwxrwxr-x. 2 reds reds  4096 Jul 14 10:16 LogFolder
-r-xr-xr-x. 1 reds reds 29188 Jul 14 10:09 MiniPipeline__standardSchedule.stm
-r-xr-xr-x. 1 reds reds 10113 Jul 14 10:09 MiniPipeline__standardSchedule.yaml
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 applications
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 graphlets
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 nodes
Running command: /usr/local/driveworks/bin//launcher --binPath=/usr/local/driveworks/bin/ --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder --path=/usr/local/driveworks/apps/minipipeline --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset --dwdatapath=/usr/local/driveworks/data --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm --start_timestamp=0 --loglevel=DW_LOG_DEBUG --fullscreen=0 --winSizeW=1920 --winSizeH=1200 --virtual=1 --gdb_debug=0 --app_parameter= > /usr/local/driveworks/apps/minipipeline/LogFolder/launcher.log 2>&1
Check if reset NetworkStack needed
Restore LD_LIBRARY_PATH to 
=======================================================================
launcher exit status: 217

reds@tegra-ubuntu:~/cross-compiled$ 
reds@tegra-ubuntu:~/cross-compiled$ ls
apps                                                                      mnist_orin.bin                  samples-data
bandwidthTest                                                             onnx_results.txt                stm_sreport_20250714_101638
carla-workspace                                                           pip                             tensorrt_results.txt
framesync_TegraA_mainHyperepoch_mainEpoch_73746d_20250714_101638.txt      run_mini_pipeline.sh            tensorrt_results_new.txt
framesync_TegraA_renderHyperepoch_renderEpoch_73746d_20250714_101638.txt  run_mini_pipeline_debug.sh      yolo.onnx
libdnn_pool_plugin.so                                                     sample_dnn_plugin               yolo_onnx_output.json
libminipipeline_nodes.so                                                  sample_dnn_tensor               yolo_onnx_times.json
minipipeline                                                              sample_hello_world              yolo_orin_simple.bin
mnist.onnx                                                                sample_object_detector_tracker  yolo_tensorrt_output.json
reds@tegra-ubuntu:~/cross-compiled$ cd minipipeline/
reds@tegra-ubuntu:~/cross-compiled/minipipeline$ ls
run_mini_pipeline.sh
reds@tegra-ubuntu:~/cross-compiled/minipipeline$ ./run_mini_pipeline.sh 
20250714_121611
20250714_121612
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :1
|--> Tuning message queue
|--> Tuning network stack
LD_LIBRARY_PATH: :/usr/local/driveworks/lib
/usr/local/driveworks/apps/minipipeline/LogFolder dir exists
total 68
drwxr-xr-x. 6 reds reds  4096 Jul 14 10:16 .
drwxr-xr-x. 5 reds reds  4096 Jul 14 10:09 ..
drwxrwxr-x. 2 reds reds  4096 Jul 14 10:16 LogFolder
-r-xr-xr-x. 1 reds reds 29188 Jul 14 10:09 MiniPipeline__standardSchedule.stm
-r-xr-xr-x. 1 reds reds 10113 Jul 14 10:09 MiniPipeline__standardSchedule.yaml
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 applications
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 graphlets
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 nodes
Running command: /usr/local/driveworks/bin//launcher --binPath=/usr/local/driveworks/bin/ --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder --path=/usr/local/driveworks/apps/minipipeline --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset --dwdatapath=/usr/local/driveworks/data --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm --start_timestamp=0 --loglevel=DW_LOG_DEBUG --fullscreen=0 --winSizeW=1920 --winSizeH=1200 --virtual=1 --gdb_debug=0 --app_parameter= > /usr/local/driveworks/apps/minipipeline/LogFolder/launcher.log 2>&1
Check if reset NetworkStack needed
Restore LD_LIBRARY_PATH to 
=======================================================================
launcher exit status: 1

reds@tegra-ubuntu:~/cross-compiled/minipipeline$ sudo ./run_mini_pipeline.sh 
[sudo] password for reds: 
20250714_121653
20250714_121654
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :1
|--> Tuning message queue
|--> Tuning network stack
LD_LIBRARY_PATH: :/usr/local/driveworks/lib
/usr/local/driveworks/apps/minipipeline/LogFolder dir exists
total 68
drwxr-xr-x. 6 reds reds  4096 Jul 14 10:16 .
drwxr-xr-x. 5 reds reds  4096 Jul 14 10:09 ..
drwxrwxr-x. 2 reds reds  4096 Jul 14 10:16 LogFolder
-r-xr-xr-x. 1 reds reds 29188 Jul 14 10:09 MiniPipeline__standardSchedule.stm
-r-xr-xr-x. 1 reds reds 10113 Jul 14 10:09 MiniPipeline__standardSchedule.yaml
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 applications
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 graphlets
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 nodes
Running command: /usr/local/driveworks/bin//launcher --binPath=/usr/local/driveworks/bin/ --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder --path=/usr/local/driveworks/apps/minipipeline --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset --dwdatapath=/usr/local/driveworks/data --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm --start_timestamp=0 --loglevel=DW_LOG_DEBUG --fullscreen=0 --winSizeW=1920 --winSizeH=1200 --virtual=1 --gdb_debug=0 --app_parameter= > /usr/local/driveworks/apps/minipipeline/LogFolder/launcher.log 2>&1
Check if reset NetworkStack needed
Restore LD_LIBRARY_PATH to 
=======================================================================
launcher exit status: 217

reds@tegra-ubuntu:~/cross-compiled/minipipeline$

Log from launcher:

reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat launcher.log 
[2025-07-14T12:16:54.247167Z][ERROR][tid:0][Launcher.cpp:1736][Launcher] RoadRunner Main initiated at:236437556249536
[2025-07-14T12:16:54.247391Z][VERBOSE][tid:0][Launcher.cpp:150][Launcher] Predefined device type not used outside of dual mode
[2025-07-14T12:16:54.247486Z][DEBUG][tid:0][Launcher.cpp:1743][Launcher] Launcher Arguments:
[2025-07-14T12:16:54.247499Z][DEBUG][tid:0][Launcher.cpp:1744][Launcher] --amend=
--app_parameter=
--argumentsFile=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--checkMemLeak=0
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enable_max_time_diff_check=0
--end_timestamp=0
--fileBackendEnabled=1
--fiufile=
--frame=
--ftraceBackendEnabled=0
--fullscreen=0
--gdb_debug=0
--instantiate_rig_sensors=
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logSpec=console
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--loop=0
--mapPath=
--memTraceEnabled=0
--memwatch_frames=
--navRoute=
--ncuProfileFrames=
--networkBackendEnabled=0
--nvtxBackendEnabled=0
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--sehFailureMask=
--service-framework=0
--shadow=
--sm_init_timeout=0
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stmControlTracing=1
--stm_discriminator=
--time_multiplier=
--traceChannelMask=0x0001
--traceFilePath=
--traceLevel=10
--useDynamicMap=0
--useLCM=1
--useNominalTransform=0
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

[2025-07-14T12:16:54.247532Z][DEBUG][tid:0][Launcher.cpp:1754][Launcher] SWC Arguments:
[2025-07-14T12:16:54.247540Z][DEBUG][tid:0][Launcher.cpp:1755][Launcher] --amend=
--app_parameter=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enable_max_time_diff_check=0
--end_timestamp=0
--fileBackendEnabled=1
--fiufile=
--frame=
--ftraceBackendEnabled=0
--fullscreen=0
--instantiate_rig_sensors=
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--loop=0
--mapPath=
--memTraceEnabled=0
--memwatch_frames=
--navRoute=
--ncuProfileFrames=
--networkBackendEnabled=0
--nvtxBackendEnabled=0
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--shadow=
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stmControlTracing=1
--stm_discriminator=
--time_multiplier=
--traceChannelMask=0x0001
--traceFilePath=
--traceLevel=10
--useDynamicMap=0
--useNominalTransform=0
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

[2025-07-14T12:16:54.247848Z][DEBUG][tid:0][LaunchSpecReader.cpp:897][JsonSystemReader] [JsonSystemReader] LaunchSpec version: 2
[2025-07-14T12:16:54.254357Z][WARN][tid:0][LaunchSpecReader.cpp:1662][JsonSystemReader] Flag --mapPath is empty
[2025-07-14T12:16:54.255739Z][DEBUG][tid:0][LaunchSpecReader.cpp:1115][JsonSystemReader] [JsonSystemReader] ScheduleKey: standardSchedule id: 0
[2025-07-14T12:16:54.255990Z][DEBUG][tid:0][Launcher.cpp:407][Launcher] Schedule Switching Param enabled:  --enableScheduleSwitching=true
[2025-07-14T12:16:54.256381Z][ERROR][tid:0][Launcher.cpp:2020][Launcher] Unlink ret: -1, -1
[2025-07-14T12:16:54.256422Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app ssm
[2025-07-14T12:16:54.256430Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] ssm exe: /usr/local/driveworks/bin//SSM/vanillassm
[2025-07-14T12:16:54.256452Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] ssm arg[0]: /usr/local/driveworks/bin//SSM/vanillassm
[2025-07-14T12:16:54.256459Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] ssm arg[1]: --logspec=file/rfc5424.user.ssm:/usr/local/driveworks/apps/minipipeline/LogFolder/ssm.log
[2025-07-14T12:16:54.256465Z][DEBUG][tid:0][Launcher.cpp:764][Launcher] The standard streams are redirected into file for app: ssm logSpec: file/rfc5424.user.ssm:/usr/local/driveworks/apps/minipipeline/LogFolder/ssm.log
[2025-07-14T12:16:54.256842Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app mainClient
[2025-07-14T12:16:54.256856Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] mainClient exe: /usr/local/driveworks/bin//LoaderLite
[2025-07-14T12:16:54.256866Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[0]: /usr/local/driveworks/bin//LoaderLite
[2025-07-14T12:16:54.256872Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[1]: --swcid=mainClient
[2025-07-14T12:16:54.256877Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[2]: --libname=RuntimeGraphlet
[2025-07-14T12:16:54.256881Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[3]: --modulename=mainClient
[2025-07-14T12:16:54.256885Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[4]: --launchspec=/usr/local/driveworks/apps/minipipeline/LogFolder/dumpLaunchSpec.json
[2025-07-14T12:16:54.256889Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[5]: --amend=
[2025-07-14T12:16:54.256893Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[6]: --app_parameter=
[2025-07-14T12:16:54.256897Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[7]: --autolanechange=0
[2025-07-14T12:16:54.256901Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[8]: --base_port=
[2025-07-14T12:16:54.256905Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[9]: --binPath=/usr/local/driveworks/bin/
[2025-07-14T12:16:54.256909Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[10]: --calibrationOverlayFile=
[2025-07-14T12:16:54.256913Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[11]: --configOverlayFile=
[2025-07-14T12:16:54.256917Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[12]: --configOverlayName=
[2025-07-14T12:16:54.256921Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[13]: --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
[2025-07-14T12:16:54.256925Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[14]: --disableParamServiceThread=
[2025-07-14T12:16:54.256929Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[15]: --disablePrioInit=0
[2025-07-14T12:16:54.256933Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[16]: --disableStmControlLogger=0
[2025-07-14T12:16:54.256937Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[17]: --disablefaulthandler=0
[2025-07-14T12:16:54.256941Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[18]: --ds2_control=
[2025-07-14T12:16:54.256944Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[19]: --dwdatapath=/usr/local/driveworks/data
[2025-07-14T12:16:54.256949Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[20]: --enable_max_time_diff_check=0
[2025-07-14T12:16:54.256952Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[21]: --end_timestamp=0
[2025-07-14T12:16:54.256956Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[22]: --fileBackendEnabled=1
[2025-07-14T12:16:54.256960Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[23]: --fiufile=
[2025-07-14T12:16:54.256964Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[24]: --frame=
[2025-07-14T12:16:54.256968Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[25]: --ftraceBackendEnabled=0
[2025-07-14T12:16:54.256982Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[26]: --fullscreen=0
[2025-07-14T12:16:54.256987Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[27]: --instantiate_rig_sensors=
[2025-07-14T12:16:54.256991Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[28]: --lockstep_deterministic_replay=
[2025-07-14T12:16:54.256995Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[29]: --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
[2025-07-14T12:16:54.256999Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[30]: --logdebug=0
[2025-07-14T12:16:54.257003Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[31]: --loglevel=DW_LOG_DEBUG
[2025-07-14T12:16:54.257007Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[32]: --logprintstats=0
[2025-07-14T12:16:54.257011Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[33]: --logremovedup=0
[2025-07-14T12:16:54.257015Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[34]: --logremovenl=0
[2025-07-14T12:16:54.257018Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[35]: --logremovetag=
[2025-07-14T12:16:54.257022Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[36]: --loop=0
[2025-07-14T12:16:54.257026Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[37]: --mapPath=
[2025-07-14T12:16:54.257030Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[38]: --memTraceEnabled=0
[2025-07-14T12:16:54.257034Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[39]: --memwatch_frames=
[2025-07-14T12:16:54.257038Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[40]: --navRoute=
[2025-07-14T12:16:54.257041Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[41]: --ncuProfileFrames=
[2025-07-14T12:16:54.257045Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[42]: --networkBackendEnabled=0
[2025-07-14T12:16:54.257049Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[43]: --nvtxBackendEnabled=0
[2025-07-14T12:16:54.257053Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[44]: --offscreen=0
[2025-07-14T12:16:54.257057Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[45]: --path=/usr/local/driveworks/apps/minipipeline
[2025-07-14T12:16:54.257061Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[46]: --preInitSerialize=0
[2025-07-14T12:16:54.257065Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[47]: --rc2f=
[2025-07-14T12:16:54.257068Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[48]: --region=
[2025-07-14T12:16:54.257072Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[49]: --rig=
[2025-07-14T12:16:54.257076Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[50]: --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-14T12:16:54.257080Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[51]: --shadow=
[2025-07-14T12:16:54.257084Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[52]: --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
[2025-07-14T12:16:54.257088Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[53]: --start_timestamp=0
[2025-07-14T12:16:54.257092Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[54]: --stmControlTracing=1
[2025-07-14T12:16:54.257096Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[55]: --stm_discriminator=
[2025-07-14T12:16:54.257100Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[56]: --time_multiplier=
[2025-07-14T12:16:54.257103Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[57]: --traceChannelMask=0x0001
[2025-07-14T12:16:54.257107Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[58]: --traceFilePath=
[2025-07-14T12:16:54.257111Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[59]: --traceLevel=10
[2025-07-14T12:16:54.257115Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[60]: --useDynamicMap=0
[2025-07-14T12:16:54.257119Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[61]: --useNominalTransform=0
[2025-07-14T12:16:54.257129Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[62]: --vinOverlayFile=
[2025-07-14T12:16:54.257133Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[63]: --virtual=1
[2025-07-14T12:16:54.257137Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[64]: --virtual_time=
[2025-07-14T12:16:54.257141Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[65]: --winSizeH=1200
[2025-07-14T12:16:54.257145Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[66]: --winSizeW=1920
[2025-07-14T12:16:54.257149Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[67]: --logspec=file/rfc5424.user.mainClient:/usr/local/driveworks/apps/minipipeline/LogFolder/mainClient.log
[2025-07-14T12:16:54.257153Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[68]: --machine_id=machine0
[2025-07-14T12:16:54.257398Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app schedule_manager
[2025-07-14T12:16:54.257415Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] schedule_manager exe: /usr/local/driveworks/bin//ScheduleManager
[2025-07-14T12:16:54.257425Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[0]: /usr/local/driveworks/bin//ScheduleManager
[2025-07-14T12:16:54.257431Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[1]: --launchspec=/usr/local/driveworks/apps/minipipeline/LogFolder/dumpLaunchSpec.json
[2025-07-14T12:16:54.257437Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[2]: --loglevel=DW_LOG_DEBUG
[2025-07-14T12:16:54.257441Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[3]: --binPath=/usr/local/driveworks/bin/
[2025-07-14T12:16:54.257446Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[4]: --fileBackendEnabled=1
[2025-07-14T12:16:54.257450Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[5]: --ftraceBackendEnabled=0
[2025-07-14T12:16:54.257454Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[6]: --memTraceEnabled=0
[2025-07-14T12:16:54.257457Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[7]: --networkBackendEnabled=0
[2025-07-14T12:16:54.257461Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[8]: --nvtxBackendEnabled=0
[2025-07-14T12:16:54.257465Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[9]: --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-14T12:16:54.257469Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[10]: --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
[2025-07-14T12:16:54.257473Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[11]: --stmControlTracing=1
[2025-07-14T12:16:54.257477Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[12]: --traceChannelMask=0x0001
[2025-07-14T12:16:54.257481Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[13]: --traceLevel=10
[2025-07-14T12:16:54.257485Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[14]: --enableScheduleSwitching=true
[2025-07-14T12:16:54.257488Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[15]: --scheduleManagerHostIP=127.0.0.1
[2025-07-14T12:16:54.257492Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[16]: --scheduleManagerHostPort=4010
[2025-07-14T12:16:54.257496Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[17]: --scheduleManagerNumClients=1
[2025-07-14T12:16:54.257500Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[18]: --logspec=file/rfc5424.user.schedule_manager:/usr/local/driveworks/apps/minipipeline/LogFolder/schedule_manager.log
[2025-07-14T12:16:54.257504Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[19]: --schedule-manager-name=CGF-ScheduleManager
[2025-07-14T12:16:54.257508Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[20]: --sensorSyncEnabled=1
[2025-07-14T12:16:54.257512Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[21]: --disablePrioInit=0
[2025-07-14T12:16:54.257776Z][DEBUG][tid:0][Launcher.cpp:544][Launcher] Skipped app: ssm. Skip type: ssm
[2025-07-14T12:16:54.257787Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app stm_master
[2025-07-14T12:16:54.257792Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] stm_master exe: /usr/local/driveworks/bin//stm_master
[2025-07-14T12:16:54.257797Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[0]: /usr/local/driveworks/bin//stm_master
[2025-07-14T12:16:54.257802Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[1]: --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-14T12:16:54.257806Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[2]: --log=stm_sreport
[2025-07-14T12:16:54.257810Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[3]: --soc=TegraA
[2025-07-14T12:16:54.257814Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[4]: --timeout-us=80000000
[2025-07-14T12:16:54.257818Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[5]: -m
[2025-07-14T12:16:54.257822Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[6]: --schedule-manager-name=CGF-ScheduleManager
[2025-07-14T12:16:54.257825Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[7]: --num-input-schedule=1
[2025-07-14T12:16:54.257830Z][DEBUG][tid:0][Launcher.cpp:764][Launcher] The standard streams are redirected into file for app: stm_master logSpec: file/rfc5424.user.stm_master:/usr/local/driveworks/apps/minipipeline/LogFolder/stm_master.log
[2025-07-14T12:16:54.258140Z][DEBUG][tid:0][Launcher.cpp:927][Launcher] All apps are launched.


--------------------------------------------------------------
WARNING: Using default Logger, most probably DriveWorks
         library was linked more than once.
--------------------------------------------------------------

DefaultLogger: [14-07-2025 12:16:54] TopExecutor: set TopExecutor to cpuset /sys/fs/cgroup/cpuset/rr2init/tasks
DefaultLogger: [14-07-2025 12:16:54] Failed to open cpuset /sys/fs/cgroup/cpuset/rr2init/tasks, errno: No such file or directory (2)
DefaultLogger: [14-07-2025 12:16:54] Failed to set TopExecutor to RR2 init cpuset: /sys/fs/cgroup/cpuset/rr2init/tasks
terminate called after throwing an instance of 'std::runtime_error'
  what():  Cannot load node shared library libminipipeline_nodes.so: libminipipeline_nodes.so: cannot open shared object file: No such file or directory


***** Backtrace disabled *****
[2025-07-14T12:17:05.250379Z][INFO][tid:0][Launcher.cpp:1198][Launcher] Got signal: 17 (Child exited), si_pid: 1440689
[2025-07-14T12:17:05.250452Z][DEBUG][tid:0][Launcher.cpp:1270][Launcher] Sending SIGINT: /usr/local/driveworks/bin//ScheduleManager, name: schedule_manager
[2025-07-14T12:17:05.250588Z][FATAL][tid:0][Launcher.cpp:1033][Launcher] Process mainClient:1440689 failed with exit code: 217
[2025-07-14T12:17:05.250609Z][ERROR][tid:0][Launcher.cpp:1299][Launcher] There is child process exited abnormally.
[2025-07-14T12:17:05.250625Z][ERROR][tid:0][Launcher.cpp:1392][Launcher] Running processes:
[2025-07-14T12:17:05.250631Z][ERROR][tid:0][Launcher.cpp:1397][Launcher] 	ssm: 1440688
[2025-07-14T12:17:05.250636Z][ERROR][tid:0][Launcher.cpp:1397][Launcher] 	schedule_manager: 1440690
[2025-07-14T12:17:05.250641Z][ERROR][tid:0][Launcher.cpp:1397][Launcher] 	stm_master: 1440691
[2025-07-14T12:17:05.250648Z][ERROR][tid:0][Launcher.cpp:1356][Launcher] Killing all live child processes with SIGTERM...


--------------------------------------------------------------
WARNING: Using default Logger, most probably DriveWorks
         library was linked more than once.
--------------------------------------------------------------

DefaultLogger: [14-07-2025 12:17:05] [ScheduleManager] received exit
[2025-07-14T12:17:05.301280Z][FATAL][tid:0][Launcher.cpp:1039][Launcher] Process ssm:1440688 terminated by signal: 15 (Terminated)
[2025-07-14T12:17:35.301425Z][ERROR][tid:0][Launcher.cpp:1327][Launcher] sigtimedwait() timeout.
[2025-07-14T12:17:35.301582Z][ERROR][tid:0][Launcher.cpp:1384][Launcher] Killing all live child processes with SIGKILL...
[2025-07-14T12:17:35.304198Z][FATAL][tid:0][Launcher.cpp:1039][Launcher] Process stm_master:1440691 terminated by signal: 9 (Killed)
[2025-07-14T12:17:35.315059Z][FATAL][tid:0][Launcher.cpp:1039][Launcher] Process schedule_manager:1440690 terminated by signal: 9 (Killed)
[2025-07-14T12:17:35.315096Z][INFO][tid:0][Launcher.cpp:1095][Launcher] waitForChildExit: No more child process!
[2025-07-14T12:17:35.315102Z][ERROR][tid:0][Launcher.cpp:1345][Launcher] All child processes has been killed successfully.
[2025-07-14T12:17:35.315116Z][FATAL][tid:0][Launcher.cpp:1565][Launcher] launcher exit status: 217
[2025-07-14T12:17:35.315199Z][DEBUG][tid:0][Launcher.cpp:1589][Launcher] swc_list.txt content:
line 1 : mainClient,127.0.0.1
line 2 : schedule_manager,127.0.0.1
line 3 : 

[2025-07-14T12:17:35.315399Z][ERROR][tid:0][Launcher.cpp:1601][Launcher] Failed to remove SWC/SSM temp files: Inappropriate ioctl for device
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$

mainClient_0.log

reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat mainClient_0.log
....
<14>1 2025-07-14T12:17:05.042587Z - mainClient 1440689 - - [1693220066992634us][INFO][tid:rr2_main][dwSensorNodeImpl.hpp:147][dwSensorNodeImpl] New sensor camera:front:center:60fov id: 1 protocol: camera.virtual parameters: video=video_B0_FC_60.h264,timestamp=video_time_0.txt
<13>1 2025-07-14T12:17:05.042656Z - mainClient 1440689 - - [1693220066992703us][DEBUG][tid:rr2_main][SensorFactory.cpp:321][NO_TAG] SensorFactory::createSensor() -> camera.virtual, video=/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/video_B0_FC_60.h264,timestamp=/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/video_time_0.txt
<13>1 2025-07-14T12:17:05.042906Z - mainClient 1440689 - - [1693220066992953us][DEBUG][tid:rr2_main][SensorFactory.cpp:333][NO_TAG] Found driver: camera.virtual
<12>1 2025-07-14T12:17:05.042937Z - mainClient 1440689 - - [1693220066992984us][WARN][tid:rr2_main][CameraVirtual.cpp:171][NO_TAG] CameraVirtual: h264 and h265 video format decoding is deprecated. Please switch to a different format.
<13>1 2025-07-14T12:17:05.056399Z - mainClient 1440689 - - [1693220067006440us][DEBUG][tid:scheduleManagerReceiver][ScheduleManagerReceiver.cpp:193][Receiver] [Receiver] attempting connection 
<13>1 2025-07-14T12:17:05.075160Z - mainClient 1440689 - - [1693220067025202us][DEBUG][tid:rr2_main][IndexTable.cpp:226][NO_TAG] IndexTable: loading from file "/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/video_B0_FC_60.h264.seek"
<13>1 2025-07-14T12:17:05.075266Z - mainClient 1440689 - - [1693220067025314us][DEBUG][tid:rr2_main][VirtualSensor.cpp:158][NO_TAG] CameraVirtualNvMedia: no seek table found at /usr/local/driveworks-5.14/data/samples/minipipeline/dataset/video_B0_FC_60.h264.seek, seeking is not available.
<13>1 2025-07-14T12:17:05.075282Z - mainClient 1440689 - - [1693220067025330us][DEBUG][tid:rr2_main][VirtualSensor.cpp:167][NO_TAG] CameraVirtualNvMedia: seek table with 601 entries covering 601 events ranging from 1526502646677968 to 1526502666677973 usecs
<13>1 2025-07-14T12:17:05.137338Z - mainClient 1440689 - - [1693220067087377us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:112][dwCameraNode] params sensorName = camera:front:center:60fov
<13>1 2025-07-14T12:17:05.137386Z - mainClient 1440689 - - [1693220067087433us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:113][dwCameraNode] params rigHandle = not nullptr
<13>1 2025-07-14T12:17:05.137398Z - mainClient 1440689 - - [1693220067087447us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:114][dwCameraNode] params cudaStream = not nullptr
<13>1 2025-07-14T12:17:05.137408Z - mainClient 1440689 - - [1693220067087457us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:115][dwCameraNode] params sal = not nullptr
<13>1 2025-07-14T12:17:05.137418Z - mainClient 1440689 - - [1693220067087466us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:116][dwCameraNode] params ctx = not nullptr
<13>1 2025-07-14T12:17:05.137426Z - mainClient 1440689 - - [1693220067087475us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:117][dwCameraNode] params frameSkipMask = null
<14>1 2025-07-14T12:17:05.137550Z - mainClient 1440689 - - [1693220067087597us][INFO][tid:rr2_main][CVarManager.cpp:242][NO_TAG] There is no CVAR group associated with the given module: miniPipeline.camera1.cameraNode
<13>1 2025-07-14T12:17:05.137634Z - mainClient 1440689 - - [1693220067087682us][DEBUG][tid:rr2_main][Runtime.cpp:429][Runtime] PRE INIT, SWC NAME : miniPipeline : calling subcomponent imuSensor->initNodeCollectTasks()
<13>1 2025-07-14T12:17:05.137677Z - mainClient 1440689 - - [1693220067087725us][DEBUG][tid:rr2_main][Runtime.cpp:429][Runtime] PRE INIT, SWC NAME : miniPipeline : calling subcomponent radarSensor0->initNodeCollectTasks()
<13>1 2025-07-14T12:17:05.137700Z - mainClient 1440689 - - [1693220067087748us][DEBUG][tid:rr2_main][Runtime.cpp:429][Runtime] PRE INIT, SWC NAME : miniPipeline : calling subcomponent radarSensor1->initNodeCollectTasks()
<13>1 2025-07-14T12:17:05.138137Z - mainClient 1440689 - - [1693220067088180us][DEBUG][tid:1][Runtime.cpp:381][Runtime] PRE INIT, GRAPHLET NAME : miniPipeline.imuSensor : subcomponent imuNode is being created with parameter {
    "frameSkipMask": {
        "default": "",
        "type": "dw::core::FixedString<32>"
    },
    "inputModeVal": {
        "default": false,
        "type": "bool"
    }
}
<13>1 2025-07-14T12:17:05.138190Z - mainClient 1440689 - - [1693220067088236us][DEBUG][tid:2][Runtime.cpp:381][Runtime] PRE INIT, GRAPHLET NAME : miniPipeline.radarSensor0 : subcomponent radarNode is being created with parameter {
    "frameSkipMask": {
        "default": "",
        "type": "dw::core::FixedString<32>"
    },
    "sensorId": {
        "default": 0,
        "type": "size_t"
    }
}
<13>1 2025-07-14T12:17:05.138265Z - mainClient 1440689 - - [1693220067088308us][DEBUG][tid:3][Runtime.cpp:381][Runtime] PRE INIT, GRAPHLET NAME : miniPipeline.radarSensor1 : subcomponent radarNode is being created with parameter {
    "frameSkipMask": {
        "default": "",
        "type": "dw::core::FixedString<32>"
    },
    "sensorId": {
        "default": 1,
        "type": "size_t"
    }
}
<14>1 2025-07-14T12:17:05.138429Z - mainClient 1440689 - - [1693220067088475us][INFO][tid:1][dwSensorNodeImpl.hpp:147][dwSensorNodeImpl] New sensor imu:xsens id: 16 protocol: imu.virtual parameters: file=imu_xsens.bin
<13>1 2025-07-14T12:17:05.138465Z - mainClient 1440689 - - [1693220067088508us][DEBUG][tid:4][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<14>1 2025-07-14T12:17:05.138528Z - mainClient 1440689 - - [1693220067088570us][INFO][tid:2][dwSensorNodeImpl.hpp:147][dwSensorNodeImpl] New sensor radar:rear:left:center id: 7 protocol: radar.virtual parameters: file=radar_BSL.bin
<14>1 2025-07-14T12:17:05.138572Z - mainClient 1440689 - - [1693220067088614us][INFO][tid:3][dwSensorNodeImpl.hpp:147][dwSensorNodeImpl] New sensor radar:rear:right:center id: 8 protocol: radar.virtual parameters: file=radar_BSR.bin
<13>1 2025-07-14T12:17:05.138609Z - mainClient 1440689 - - [1693220067088656us][DEBUG][tid:5][Runtime.cpp:381][Runtime] PRE INIT, GRAPHLET NAME : miniPipeline : subcomponent visualization is being created with parameter {
    "fullscreen": {
        "default": true,
        "type": "bool"
    },
    "masterCameraIndex": {
        "default": 0,
        "type": "size_t"
    },
    "offscreen": {
        "default": false,
        "type": "bool"
    },
    "streamIndex": {
        "default": 0,
        "type": "size_t"
    },
    "winSizeH": {
        "default": 900,
        "type": "uint32_t"
    },
    "winSizeW": {
        "default": 1600,
        "type": "uint32_t"
    }
}
<13>1 2025-07-14T12:17:05.138636Z - mainClient 1440689 - - [1693220067088680us][DEBUG][tid:3][SensorFactory.cpp:321][NO_TAG] SensorFactory::createSensor() -> radar.virtual, file=/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/radar_BSR.bin
<13>1 2025-07-14T12:17:05.138679Z - mainClient 1440689 - - [1693220067088719us][DEBUG][tid:6][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.138724Z - mainClient 1440689 - - [1693220067088767us][DEBUG][tid:2][SensorFactory.cpp:321][NO_TAG] SensorFactory::createSensor() -> radar.virtual, file=/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/radar_BSL.bin
<13>1 2025-07-14T12:17:05.138763Z - mainClient 1440689 - - [1693220067088807us][DEBUG][tid:1][SensorFactory.cpp:321][NO_TAG] SensorFactory::createSensor() -> imu.virtual, file=/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/imu_xsens.bin
<13>1 2025-07-14T12:17:05.138820Z - mainClient 1440689 - - [1693220067088852us][DEBUG][tid:7][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.138853Z - mainClient 1440689 - - [1693220067088900us][DEBUG][tid:3][SensorFactory.cpp:333][NO_TAG] Found driver: radar.virtual
<13>1 2025-07-14T12:17:05.138912Z - mainClient 1440689 - - [1693220067088955us][DEBUG][tid:8][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.138955Z - mainClient 1440689 - - [1693220067088998us][DEBUG][tid:9][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.139000Z - mainClient 1440689 - - [1693220067089040us][DEBUG][tid:10][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.139040Z - mainClient 1440689 - - [1693220067089083us][DEBUG][tid:11][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.139106Z - mainClient 1440689 - - [1693220067089144us][DEBUG][tid:12][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.139160Z - mainClient 1440689 - - [1693220067089207us][DEBUG][tid:1][SensorFactory.cpp:333][NO_TAG] Found driver: imu.virtual
<13>1 2025-07-14T12:17:05.139223Z - mainClient 1440689 - - [1693220067089270us][DEBUG][tid:2][SensorFactory.cpp:333][NO_TAG] Found driver: radar.virtual
<13>1 2025-07-14T12:17:05.139427Z - mainClient 1440689 - - [1693220067089474us][DEBUG][tid:3][LegacyDemuxer.cpp:430][NO_TAG] Seek file /usr/local/driveworks-5.14/data/samples/minipipeline/dataset/radar_BSR.bin.seek: seek table with 112 entries covering 3571 events ranging from 1526502646752732 to 1526502666699517 usecs
<13>1 2025-07-14T12:17:05.139667Z - mainClient 1440689 - - [1693220067089714us][DEBUG][tid:2][LegacyDemuxer.cpp:430][NO_TAG] Seek file /usr/local/driveworks-5.14/data/samples/minipipeline/dataset/radar_BSL.bin.seek: seek table with 113 entries covering 3599 events ranging from 1526502646700301 to 1526502666699499 usecs
<14>1 2025-07-14T12:17:05.141429Z - mainClient 1440689 - - [1693220067091474us][INFO][tid:1][CVarManager.cpp:242][NO_TAG] There is no CVAR group associated with the given module: miniPipeline.imuSensor.imuNode
<13>1 2025-07-14T12:17:05.141473Z - mainClient 1440689 - - [1693220067091521us][DEBUG][tid:1][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<14>1 2025-07-14T12:17:05.148450Z - mainClient 1440689 - - [1693220067098493us][INFO][tid:2][CVarManager.cpp:242][NO_TAG] There is no CVAR group associated with the given module: miniPipeline.radarSensor0.radarNode
<14>1 2025-07-14T12:17:05.148530Z - mainClient 1440689 - - [1693220067098572us][INFO][tid:3][CVarManager.cpp:242][NO_TAG] There is no CVAR group associated with the given module: miniPipeline.radarSensor1.radarNode
<13>1 2025-07-14T12:17:05.148590Z - mainClient 1440689 - - [1693220067098637us][DEBUG][tid:2][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.148635Z - mainClient 1440689 - - [1693220067098681us][DEBUG][tid:3][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<11>1 2025-07-14T12:17:05.148848Z - mainClient 1440689 - - [1693220067098892us][ERROR][tid:rr2_main][TopExecutor.hpp:3514][TopExecutor] initSSM: Failed to initialize module with error: Cannot load node shared library libminipipeline_nodes.so: libminipipeline_nodes.so: cannot open shared object file: No such file or directory
<11>1 2025-07-14T12:17:05.149302Z - mainClient 1440689 - - [1693220067099348us][ERROR][tid:rr2_main][TopExecutor.hpp:694][TopExecutor] [FaultHandler] Caught signal: 6 sent by pid 1440689
<8>1 2025-07-14T12:17:05.149358Z - mainClient 1440689 - - [1693220067099406us][FATAL][tid:rr2_main][FaultHandler.cpp:94][FaultHandler] 

***** Backtrace disabled *****
<8>1 2025-07-14T12:17:05.149391Z - mainClient 1440689 - - [1693220067099439us][FATAL][tid:rr2_main][TopExecutor.hpp:634][TopExecutor] Caught signal 6 sent by pid 1440689 during initialization step 217: Initializing system state manager
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat dumpLaunchSpec.json 
{
    "connections": [],
    "description": {
        "CameraSensor": {
            "connections": [
                {
                    "dests": {
                        "cameraNode.SENSOR_EXTRINSICS": {}
                    },
                    "src": "SENSOR_EXTRINSICS"
                },
                {
                    "dests": {
                        "cameraNode.VIRTUAL_SYNC_TIME": {}
                    },
                    "src": "VIRTUAL_SYNC_TIME"
                },
                {
                    "dests": {
                        "CUDA_PROCESSED": {}
                    },
                    "params": {
                        "singleton": true
                    },
                    "src": "cameraNode.IMAGE_NATIVE_PROCESSED"
                },
                {
                    "dests": {
                        "CUDA_PROCESSED_RGBA": {}
                    },
                    "src": "cameraNode.IMAGE_PROCESSED_RGBA"
                },
                {
                    "dests": {
                        "IMAGE_TIMESTAMP": {}
                    },
                    "src": "cameraNode.IMAGE_TIMESTAMP"
                },
                {
                    "dests": {
                        "INTRINSICS": {}
                    },
                    "src": "cameraNode.INTRINSICS"
                },
                {
                    "dests": {
                        "NEXT_IMAGE_TIMESTAMP": {}
                    },
                    "src": "cameraNode.NEXT_IMAGE_TIMESTAMP"
                },
                {
                    "dests": {
                        "SENSOR_PROPERTIES": {}
                    },
                    "src": "cameraNode.SENSOR_PROPERTIES"
                }
            ],
            "inputPorts": {
                "SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "VIRTUAL_SYNC_TIME": {
                    "type": "dwTime_t"
                }
            },
            "name": "CameraSensor",
            "outputPorts": {
                "CUDA_PROCESSED": {
                    "type": "dwImageHandle_t"
                },
                "CUDA_PROCESSED_RGBA": {
                    "type": "dwImageHandle_t"
                },
                "IMAGE_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "INTRINSICS": {
                    "type": "dwCameraIntrinsics"
                },
                "NEXT_IMAGE_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "SENSOR_PROPERTIES": {
                    "type": "dwSensorNodeProperties"
                }
            },
            "parameters": {
                "cameraIndex": {
                    "default": 0,
                    "type": "size_t"
                },
                "frameSkipMask": {
                    "default": "",
                    "type": "dw::core::FixedString<32>"
                },
                "streamIndex": {
                    "default": 0,
                    "type": "size_t"
                },
                "useEEPROMIntrinsics": {
                    "default": false,
                    "type": "bool"
                }
            },
            "subcomponents": {
                "cameraNode": {
                    "componentType": "dw::framework::dwCameraNode",
                    "parameters": {
                        "cameraIndex": "$cameraIndex",
                        "frameSkipMask": "$frameSkipMask",
                        "streamIndex": "$streamIndex",
                        "useEEPROMIntrinsics": "$useEEPROMIntrinsics"
                    }
                }
            }
        },
        "ImuSensor": {
            "connections": [
                {
                    "dests": {
                        "imuNode.SENSOR_EXTRINSICS": {}
                    },
                    "src": "IMU_SENSOR_EXTRINSICS"
                },
                {
                    "dests": {
                        "imuNode.VIRTUAL_SYNC_TIME": {}
                    },
                    "src": "IMU_VIRTUAL_SYNC_TIME"
                },
                {
                    "dests": {
                        "NEXT_IMU_TIMESTAMP": {}
                    },
                    "src": "imuNode.NEXT_TIMESTAMP"
                },
                {
                    "dests": {
                        "IMU_PROCESSED_DATA": {}
                    },
                    "src": "imuNode.PROCESSED_DATA"
                },
                {
                    "dests": {
                        "IMU_SENSOR_PROPERTIES": {}
                    },
                    "src": "imuNode.SENSOR_PROPERTIES"
                },
                {
                    "dests": {
                        "IMU_TIMESTAMP": {}
                    },
                    "src": "imuNode.TIMESTAMP"
                }
            ],
            "inputPorts": {
                "IMU_SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "IMU_VIRTUAL_SYNC_TIME": {
                    "type": "dwTime_t"
                }
            },
            "name": "ImuSensor",
            "outputPorts": {
                "IMU_PROCESSED_DATA": {
                    "type": "dwIMUFrame"
                },
                "IMU_SENSOR_PROPERTIES": {
                    "type": "dwSensorNodeProperties"
                },
                "IMU_TIMESTAMP": {
                    "type": "dwSensorTsAndID"
                },
                "NEXT_IMU_TIMESTAMP": {
                    "type": "dwTime_t"
                }
            },
            "parameters": {
                "frameSkipMask": {
                    "default": "",
                    "type": "dw::core::FixedString<32>"
                },
                "sensorAffinityMask": {
                    "default": 1,
                    "type": "int32_t"
                },
                "sensorThreadPriority": {
                    "default": 99,
                    "type": "int32_t"
                }
            },
            "subcomponents": {
                "imuNode": {
                    "componentType": "dw::framework::dwIMUNode",
                    "parameters": {
                        "frameSkipMask": "$frameSkipMask"
                    }
                }
            }
        },
        "MiniPipeline": {
            "connections": [
                {
                    "dests": {
                        "visualization.IMAGE[0]": {}
                    },
                    "src": "camera0.CUDA_PROCESSED"
                },
                {
                    "dests": {
                        "visualization.IMAGE[1]": {}
                    },
                    "src": "camera1.CUDA_PROCESSED"
                },
                {
                    "dests": {
                        "visualization.IMU_FRAME": {}
                    },
                    "src": "imuSensor.IMU_PROCESSED_DATA"
                },
                {
                    "dests": {
                        "visualization.RADAR_PROCESSED_DATA": {}
                    },
                    "src": "radarSensor0.RADAR_PROCESSED_DATA"
                }
            ],
            "inputPorts": {},
            "name": "MiniPipeline",
            "outputPorts": {},
            "parameters": {
                "masterCameraIndex": {
                    "default": 0,
                    "type": "size_t"
                },
                "streamIndex": {
                    "default": 0,
                    "type": "size_t"
                }
            },
            "subcomponents": {
                "camera0": {
                    "componentType": "CameraSensor",
                    "parameters": {
                        "cameraIndex": 0
                    }
                },
                "camera1": {
                    "componentType": "CameraSensor",
                    "parameters": {
                        "cameraIndex": 1
                    }
                },
                "imuSensor": {
                    "componentType": "ImuSensor"
                },
                "radarSensor0": {
                    "componentType": "RadarSensor",
                    "parameters": {
                        "sensorId": 0
                    }
                },
                "radarSensor1": {
                    "componentType": "RadarSensor",
                    "parameters": {
                        "sensorId": 1
                    }
                },
                "visualization": {
                    "componentType": "minipipeline::VisualizationNode",
                    "parameters": {
                        "fullscreen": true,
                        "masterCameraIndex": "$masterCameraIndex",
                        "offscreen": false,
                        "streamIndex": "$streamIndex",
                        "winSizeH": 900,
                        "winSizeW": 1600
                    }
                }
            }
        },
        "RadarSensor": {
            "connections": [
                {
                    "dests": {
                        "radarNode.SENSOR_EXTRINSICS": {}
                    },
                    "src": "SENSOR_EXTRINSICS"
                },
                {
                    "dests": {
                        "radarNode.VIRTUAL_SYNC_TIME": {}
                    },
                    "src": "VIRTUAL_SYNC_TIME"
                },
                {
                    "dests": {
                        "NEXT_RADAR_TIMESTAMP": {}
                    },
                    "src": "radarNode.NEXT_TIMESTAMP"
                },
                {
                    "dests": {
                        "RADAR_PROCESSED_DATA": {}
                    },
                    "src": "radarNode.PROCESSED_DATA"
                },
                {
                    "dests": {
                        "SENSOR_PROPERTIES": {}
                    },
                    "src": "radarNode.SENSOR_PROPERTIES"
                },
                {
                    "dests": {
                        "RADAR_TIMESTAMP": {}
                    },
                    "src": "radarNode.TIMESTAMP"
                }
            ],
            "inputPorts": {
                "SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "VIRTUAL_SYNC_TIME": {
                    "type": "dwTime_t"
                }
            },
            "name": "RadarSensor",
            "outputPorts": {
                "NEXT_RADAR_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "RADAR_PROCESSED_DATA": {
                    "type": "dwRadarScan"
                },
                "RADAR_TIMESTAMP": {
                    "type": "dwSensorTsAndID"
                },
                "SENSOR_PROPERTIES": {
                    "type": "dwSensorNodeProperties"
                }
            },
            "parameters": {
                "frameSkipMask": {
                    "default": "",
                    "type": "dw::core::FixedString<32>"
                },
                "sensorAffinityMask": {
                    "default": 1,
                    "type": "int32_t"
                },
                "sensorId": {
                    "default": 0,
                    "type": "size_t"
                },
                "sensorThreadPriority": {
                    "default": 99,
                    "type": "int32_t"
                }
            },
            "subcomponents": {
                "radarNode": {
                    "componentType": "dw::framework::dwRadarNode",
                    "parameters": {
                        "frameSkipMask": "$frameSkipMask",
                        "sensorId": "$sensorId"
                    }
                }
            }
        },
        "dw::framework::dwCameraNode": {
            "comment": "Generated by the nodedescriptor tool based on data provided by the C++ API of the node class",
            "generated": true,
            "inputPorts": {
                "SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "VIRTUAL_SYNC_TIME": {
                    "type": "dwTime_t"
                }
            },
            "library": "libdwframework_dwnodes.so.5.14",
            "name": "dw::framework::dwCameraNode",
            "outputPorts": {
                "IMAGE_NATIVE_PROCESSED": {
                    "type": "dwImageHandle_t"
                },
                "IMAGE_NATIVE_RAW": {
                    "type": "dwImageHandle_t"
                },
                "IMAGE_PROCESSED_RGBA": {
                    "type": "dwImageHandle_t"
                },
                "IMAGE_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "IMAGE_TIMESTAMP_AND_ID": {
                    "type": "dwSensorTsAndID"
                },
                "INTRINSICS": {
                    "type": "dwCameraIntrinsics"
                },
                "NEXT_IMAGE_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "SENSOR_PROPERTIES": {
                    "type": "dwSensorNodeProperties"
                }
            },
            "parameters": {
                "cameraIndex": {
                    "type": "size_t"
                },
                "frameSkipMask": {
                    "type": "dw::core::FixedString<32>"
                },
                "streamIndex": {
                    "type": "size_t"
                },
                "useEEPROMIntrinsics": {
                    "type": "bool"
                }
            },
            "passes": [
                {
                    "name": "SETUP",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RAW_OUTPUT",
                    "processorTypes": [
                        "GPU"
                    ]
                },
                {
                    "name": "PROCESSED_OUTPUT",
                    "processorTypes": [
                        "GPU"
                    ]
                },
                {
                    "name": "PROCESSED_RGBA_OUTPUT",
                    "processorTypes": [
                        "GPU"
                    ]
                },
                {
                    "name": "TEARDOWN",
                    "processorTypes": [
                        "CPU"
                    ]
                }
            ]
        },
        "dw::framework::dwIMUNode": {
            "comment": "Generated by the nodedescriptor tool based on data provided by the C++ API of the node class",
            "generated": true,
            "inputPorts": {
                "FRAME": {
                    "bindingRequired": true,
                    "type": "dwIMUFrame"
                },
                "SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "VIRTUAL_SYNC_TIME": {
                    "bindingRequired": true,
                    "type": "dwTime_t"
                }
            },
            "library": "libdwframework_dwnodes.so.5.14",
            "name": "dw::framework::dwIMUNode",
            "outputPorts": {
                "NEXT_TIMESTAMP": {
                    "bindingRequired": true,
                    "type": "dwTime_t"
                },
                "PROCESSED_DATA": {
                    "bindingRequired": true,
                    "type": "dwIMUFrame"
                },
                "RAW_DATA": {
                    "bindingRequired": true,
                    "type": "dwSensorNodeRawData"
                },
                "SENSOR_PROPERTIES": {
                    "bindingRequired": true,
                    "type": "dwSensorNodeProperties"
                },
                "TIMESTAMP": {
                    "bindingRequired": true,
                    "type": "dwSensorTsAndID"
                }
            },
            "parameters": {
                "frameSkipMask": {
                    "type": "dw::core::FixedString<32>"
                },
                "inputModeVal": {
                    "default": false,
                    "type": "bool"
                }
            },
            "passes": [
                {
                    "name": "SETUP",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RAW_OUTPUT",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "PROCESSED_OUTPUT",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "TEARDOWN",
                    "processorTypes": [
                        "CPU"
                    ]
                }
            ]
        },
        "dw::framework::dwRadarNode": {
            "comment": "Generated by the nodedescriptor tool based on data provided by the C++ API of the node class",
            "generated": true,
            "inputPorts": {
                "SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "SENSOR_INTRINSICS": {
                    "type": "dwCalibratedRadarIntrinsics"
                },
                "VIRTUAL_SYNC_TIME": {
                    "type": "dwTime_t"
                }
            },
            "library": "libdwframework_dwnodes.so.5.14",
            "name": "dw::framework::dwRadarNode",
            "outputPorts": {
                "NEXT_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "PROCESSED_DATA": {
                    "type": "dwRadarScan"
                },
                "RAW_DATA": {
                    "type": "dwSensorNodeRawData"
                },
                "SENSOR_INTRINSICS": {
                    "type": "dwCalibratedRadarIntrinsics"
                },
                "SENSOR_PROPERTIES": {
                    "type": "dwSensorNodeProperties"
                },
                "TIMESTAMP": {
                    "type": "dwSensorTsAndID"
                }
            },
            "parameters": {
                "frameSkipMask": {
                    "type": "dw::core::FixedString<32>"
                },
                "sensorId": {
                    "type": "size_t"
                }
            },
            "passes": [
                {
                    "name": "SETUP",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RAW_OUTPUT",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "PROCESSED_OUTPUT",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "TEARDOWN",
                    "processorTypes": [
                        "CPU"
                    ]
                }
            ]
        },
        "minipipeline::VisualizationNode": {
            "comment": "Generated by the nodedescriptor tool based on data provided by the C++ API of the node class",
            "generated": true,
            "inputPorts": {
                "BOX_ARR": {
                    "type": "YoloScoreRectArray"
                },
                "BOX_NUM": {
                    "type": "uint32_t"
                },
                "IMAGE": {
                    "array": 9,
                    "bindingRequired": true,
                    "type": "dwImageHandle_t"
                },
                "IMU_FRAME": {
                    "type": "dwIMUFrame"
                },
                "LIDAR_PACKET_ARRAYS": {
                    "array": 8,
                    "type": "dwLidarPacketsArray"
                },
                "LIDAR_POINT_CLOUD": {
                    "array": 8,
                    "type": "dwPointCloud"
                },
                "RADAR_PROCESSED_DATA": {
                    "type": "dwRadarScan"
                },
                "VIO_NON_SAFETY_STATE": {
                    "type": "dwVehicleIONonSafetyState"
                },
                "VIO_SAFETY_STATE": {
                    "type": "dwVehicleIOSafetyState"
                }
            },
            "library": "libminipipeline_nodes.so",
            "name": "minipipeline::VisualizationNode",
            "outputPorts": {
                "VIO_SAFETY_CMD": {
                    "type": "dwVehicleIOSafetyCommand"
                }
            },
            "parameters": {
                "fullscreen": {
                    "type": "bool"
                },
                "masterCameraIndex": {
                    "type": "size_t"
                },
                "offscreen": {
                    "type": "bool"
                },
                "streamIndex": {
                    "type": "size_t"
                },
                "winSizeH": {
                    "type": "uint32_t"
                },
                "winSizeW": {
                    "type": "uint32_t"
                }
            },
            "passes": [
                {
                    "name": "SETUP",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "ACQUIRE_FRAME",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RENDER_FRAME",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RENDER_INFO_BAR",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RENDER_DEBUG",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "TEARDOWN",
                    "processorTypes": [
                        "CPU"
                    ]
                }
            ]
        }
    },
    "extraInfo": {
        "Map_ini": {
            "enabled": "false",
            "useAbsolutePath": "false",
            "useMapTracker": "false"
        },
        "calibrationOutputFileName": "out_calibration.json",
        "cameraEnabled": "true, true, false, false, false, false, false, false",
        "masterCameraIndex": "0",
        "rigFileName": "rig.json",
        "rigOutputFileName": "rig.json"
    },
    "logSpec": "file/rfc5424:{{logpath}}/{{appname}}.log",
    "name": "MiniPipelineApp",
    "parameters": {
        "imageFov0": {
            "default": "ISP_120FOV",
            "type": "string"
        },
        "imageFov1": {
            "default": "ISP_60FOV",
            "type": "string"
        },
        "imageFov2": {
            "default": "ISP_60FOV",
            "type": "string"
        },
        "imageFov3": {
            "default": "ISP_120FOV",
            "type": "string"
        },
        "imageHeight0": {
            "default": "1208",
            "type": "string"
        },
        "imageHeight1": {
            "default": "1208",
            "type": "string"
        },
        "imageHeight2": {
            "default": "1208",
            "type": "string"
        },
        "imageHeight3": {
            "default": "1208",
            "type": "string"
        },
        "imageWidth0": {
            "default": "1920",
            "type": "string"
        },
        "imageWidth1": {
            "default": "1920",
            "type": "string"
        },
        "imageWidth2": {
            "default": "1920",
            "type": "string"
        },
        "imageWidth3": {
            "default": "1920",
            "type": "string"
        }
    },
    "processes": {
        "mainClient": {
            "executable": "LoaderLite",
            "libName": "RuntimeGraphlet",
            "moduleName": "mainClient",
            "runOn": "machine0",
            "subcomponents": [
                "miniPipeline.camera0",
                "miniPipeline.camera1",
                "miniPipeline.radarSensor0",
                "miniPipeline.radarSensor1",
                "miniPipeline.imuSensor",
                "miniPipeline.visualization"
            ]
        },
        "schedule_manager": {
            "argv": {
                "--enableScheduleSwitching": "true",
                "--scheduleManagerHostIP": "127.0.0.1",
                "--scheduleManagerHostPort": "4010",
                "--scheduleManagerNumClients": "1"
            },
            "executable": "ScheduleManager",
            "runOn": "machine0"
        },
        "ssm": {
            "executable": "SSM/vanillassm",
            "runOn": "machine0"
        },
        "stm_master": {
            "argv": {
                "--log": "stm_sreport",
                "--soc": "TegraA",
                "--timeout-us": "80000000",
                "-m": true
            },
            "executable": "stm_master",
            "runOn": "machine0"
        }
    },
    "requiredSensors": {
        "camera:front:center:120fov": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 0
        },
        "camera:front:center:60fov": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 1
        },
        "camera:rear:left:120fov": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 3
        },
        "camera:rear:right:120fov": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 2
        },
        "imu:xsens": {
            "connectedTo": [
                "machine0"
            ]
        },
        "radar:rear:left:center": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 0
        },
        "radar:rear:right:center": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 1
        }
    },
    "sensorMappings": {
        "SIM-HPY8": {
            "gps0": "gps:simulator",
            "imu0": "imu:simulator",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:vehicle"
        },
        "hy8": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "hy8.1_daimler_c118": {
            "gps0": "gps:vehicle",
            "imu0": "imu:vehicle",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "timeSensor0": "time:nvpps:rec:00",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hy8.1_daimler_gls": {
            "gps0": "gps:novatel",
            "gps1": "gps:novatel",
            "imu0": "imu:novatel",
            "imu1": "imu:novatel",
            "lidar:front:center:p128": "lidar:gt:top:p128",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hy8_daimler": {
            "gps0": "gps:ublox:f9k",
            "imu0": "imu:continental",
            "lidar:front:center:p128": "lidar:gt:top:p128",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hy8_protoplus": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "hy8_protoplus_parking": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "hyperion_8": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "hyperion_8.1": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:vehicle"
        },
        "hyperion_8.1_daimler_c118": {
            "gps0": "gps:vehicle",
            "imu0": "imu:vehicle",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "timeSensor0": "time:nvpps:rec:00",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hyperion_8.1_daimler_c118_sat": {
            "timeSensor0": "time:nvpps:rec:00",
            "vehicleSensor0": "data:daimler"
        },
        "hyperion_8.1_sat": {},
        "hyperion_8.1p_8.0s_daimler_s223": {
            "gps0": "gps:ublox:f9k",
            "imu0": "imu:continental",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hyperion_8_daimler_s222": {
            "gps0": "gps:ublox:f9k",
            "imu0": "imu:continental",
            "lidar:front:center:p128": "lidar:gt:top:p128",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hyperion_8_daimler_s223": {
            "gps0": "gps:ublox:f9k",
            "imu0": "imu:continental",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hyperion_8_protoplus": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "hyperion_8_protoplus_parking": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "sim_hyperion_8.1_daimler_s223": {
            "gps0": "gps:simulator",
            "imu0": "imu:simulator",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "sim_hyperion_8_daimler_s223": {
            "gps0": "gps:simulator",
            "imu0": "imu:simulator",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        }
    },
    "states": {
        "STANDARD": {
            "default": true,
            "stmScheduleKey": "standardSchedule"
        }
    },
    "stmSchedules": {
        "standardSchedule": {
            "hyperepochs": {
                "mainHyperepoch": {
                    "epochs": {
                        "mainEpoch": {
                            "frames": 1,
                            "passes": [
                                [
                                    "miniPipeline.imuSensor",
                                    "miniPipeline.radarSensor0",
                                    "miniPipeline.radarSensor1"
                                ]
                            ],
                            "period": 33000000
                        }
                    },
                    "period": 33000000,
                    "resources": {
                        "machine0.CPU0": []
                    }
                },
                "renderHyperepoch": {
                    "epochs": {
                        "renderEpoch": {
                            "frames": 1,
                            "passes": [
                                [
                                    "miniPipeline.camera0",
                                    "miniPipeline.camera1",
                                    "miniPipeline.visualization"
                                ]
                            ],
                            "period": 33000000
                        }
                    },
                    "period": 33000000,
                    "resources": {
                        "machine0.CPU1": [],
                        "machine0.CPU2": [],
                        "machine0.CPU3": [],
                        "machine0.CPU4": [],
                        "machine0.dGPU": [],
                        "mainClient.CUDA_MUTEX_LOCK": [],
                        "mainClient.CUDA_STREAM0:dGPU": []
                    }
                }
            },
            "wcet": "./MiniPipeline_wcet.yaml"
        }
    },
    "subcomponents": {
        "miniPipeline": {
            "componentType": "MiniPipeline",
            "parameters": {}
        }
    },
    "version": 2
}
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat stm_master.log 
av/stm/runtime/src/master/master.c:472 assertion failure, errno=13 (Permission denied)

raised PROGRAM_ERROR : unhandled signal
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$

Let me know if you need other specific logs, or informations ?

Kind regards,
Lucas

Dear @lucas.lattion1 ,
Could you review the steps in Error in Minipipeline Application after adding custom nodes - #8 by SivaRamaKrishnaNV. You can skip the custom node related entries.
Are you running the sample in a remote ssh session or directly on target ?

Dear @SivaRamaKrishnaNV,
How could I skip the related nodes entries ?
I am running the sample directly on target.
Additional info: I have no sensor connected, I would like to use the dataset.

Thanks,
Kind regards,
Lucas

Is it in an ssh session or you directly logged via GUI login? Could you try adding --offscreen=1 if it works ?

Dear @SivaRamaKrishnaNV ,

I managed to make the minipipeline sample work using the instructions in: Error in Minipipeline Application after adding custom nodes - #8 by SivaRamaKrishnaNV

But for no reason, I suddenly can’t anymore run the minipipeline.
Seems the service nv_nvsciipc_init.service causing the issue, but restart of the service failed.

reds@tegra-ubuntu:/usr/local/driveworks/bin$ sudo ./run_mini_pipeline.sh 
20250802_130118
20250802_130118
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :1
|--> Tuning message queue
|--> Tuning network stack
LD_LIBRARY_PATH: :/usr/local/driveworks/lib
/usr/local/driveworks/apps/minipipeline/LogFolder dir exists
total 68
drwxr-xr-x. 6 root root  4096 Jul 30 22:24 .
drwxr-xr-x. 7 root root  4096 Aug  1 17:27 ..
drwxr-xr-x. 2 root root  4096 Aug  2 12:59 LogFolder
-r-xr-xr-x. 1 root root 29188 Jan  1  2000 MiniPipeline__standardSchedule.stm
-r-xr-xr-x. 1 root root 10113 Jan  1  2000 MiniPipeline__standardSchedule.yaml
drwxr-xr-x. 2 root root  4096 Jul 30 22:23 applications
drwxr-xr-x. 2 root root  4096 Jul 30 22:23 graphlets
drwxr-xr-x. 2 root root  4096 Jul 30 22:23 nodes
Running command: /usr/local/driveworks/bin//launcher --binPath=/usr/local/driveworks/bin/ --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder --path=/usr/local/driveworks/apps/minipipeline --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset --dwdatapath=/usr/local/driveworks/data --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm --start_timestamp=0 --loglevel=DW_LOG_DEBUG --fullscreen=0 --winSizeW=1920 --winSizeH=1200 --virtual=1 --gdb_debug=0 --app_parameter= > /usr/local/driveworks/apps/minipipeline/LogFolder/launcher.log 2>&1
Check if reset NetworkStack needed
Restore LD_LIBRARY_PATH to 
=======================================================================
launcher exit status: 1

reds@tegra-ubuntu:/usr/local/driveworks/bin$ 
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat launcher.log 
[2025-08-02T11:01:18.381523Z][ERROR][tid:0][Launcher.cpp:1736][Launcher] RoadRunner Main initiated at:229201671871116
[2025-08-02T11:01:18.381778Z][VERBOSE][tid:0][Launcher.cpp:150][Launcher] Predefined device type not used outside of dual mode
[2025-08-02T11:01:18.381879Z][DEBUG][tid:0][Launcher.cpp:1743][Launcher] Launcher Arguments:
[2025-08-02T11:01:18.381892Z][DEBUG][tid:0][Launcher.cpp:1744][Launcher] --amend=
--app_parameter=
--argumentsFile=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--checkMemLeak=0
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enable_max_time_diff_check=0
--end_timestamp=0
--fileBackendEnabled=1
--fiufile=
--frame=
--ftraceBackendEnabled=0
--fullscreen=0
--gdb_debug=0
--instantiate_rig_sensors=
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logSpec=console
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--loop=0
--mapPath=
--memTraceEnabled=0
--memwatch_frames=
--navRoute=
--ncuProfileFrames=
--networkBackendEnabled=0
--nvtxBackendEnabled=0
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--sehFailureMask=
--service-framework=0
--shadow=
--sm_init_timeout=0
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stmControlTracing=1
--stm_discriminator=
--time_multiplier=
--traceChannelMask=0x0001
--traceFilePath=
--traceLevel=10
--useDynamicMap=0
--useLCM=1
--useNominalTransform=0
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

[2025-08-02T11:01:18.381924Z][DEBUG][tid:0][Launcher.cpp:1754][Launcher] SWC Arguments:
[2025-08-02T11:01:18.381932Z][DEBUG][tid:0][Launcher.cpp:1755][Launcher] --amend=
--app_parameter=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enable_max_time_diff_check=0
--end_timestamp=0
--fileBackendEnabled=1
--fiufile=
--frame=
--ftraceBackendEnabled=0
--fullscreen=0
--instantiate_rig_sensors=
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--loop=0
--mapPath=
--memTraceEnabled=0
--memwatch_frames=
--navRoute=
--ncuProfileFrames=
--networkBackendEnabled=0
--nvtxBackendEnabled=0
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--shadow=
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stmControlTracing=1
--stm_discriminator=
--time_multiplier=
--traceChannelMask=0x0001
--traceFilePath=
--traceLevel=10
--useDynamicMap=0
--useNominalTransform=0
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

[2025-08-02T11:01:18.382288Z][DEBUG][tid:0][LaunchSpecReader.cpp:897][JsonSystemReader] [JsonSystemReader] LaunchSpec version: 2
[2025-08-02T11:01:18.388846Z][WARN][tid:0][LaunchSpecReader.cpp:1662][JsonSystemReader] Flag --mapPath is empty
[2025-08-02T11:01:18.389545Z][DEBUG][tid:0][LaunchSpecReader.cpp:1115][JsonSystemReader] [JsonSystemReader] ScheduleKey: standardSchedule id: 0
[2025-08-02T11:01:18.389780Z][DEBUG][tid:0][Launcher.cpp:407][Launcher] Schedule Switching Param enabled:  --enableScheduleSwitching=true
[2025-08-02T11:01:18.390200Z][ERROR][tid:0][Launcher.cpp:2020][Launcher] Unlink ret: -1, -1
[2025-08-02T11:01:18.390238Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app ssm
[2025-08-02T11:01:18.390246Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] ssm exe: /usr/local/driveworks/bin//SSM/vanillassm
[2025-08-02T11:01:18.390269Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] ssm arg[0]: /usr/local/driveworks/bin//SSM/vanillassm
[2025-08-02T11:01:18.390276Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] ssm arg[1]: --logspec=file/rfc5424.user.ssm:/usr/local/driveworks/apps/minipipeline/LogFolder/ssm.log
[2025-08-02T11:01:18.390282Z][DEBUG][tid:0][Launcher.cpp:764][Launcher] The standard streams are redirected into file for app: ssm logSpec: file/rfc5424.user.ssm:/usr/local/driveworks/apps/minipipeline/LogFolder/ssm.log
[2025-08-02T11:01:18.390684Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app mainClient
[2025-08-02T11:01:18.390698Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] mainClient exe: /usr/local/driveworks/bin//LoaderLite
[2025-08-02T11:01:18.390707Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[0]: /usr/local/driveworks/bin//LoaderLite
[2025-08-02T11:01:18.390713Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[1]: --swcid=mainClient
[2025-08-02T11:01:18.390718Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[2]: --libname=RuntimeGraphlet
[2025-08-02T11:01:18.390722Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[3]: --modulename=mainClient
[2025-08-02T11:01:18.390726Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[4]: --launchspec=/usr/local/driveworks/apps/minipipeline/LogFolder/dumpLaunchSpec.json
[2025-08-02T11:01:18.390730Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[5]: --amend=
[2025-08-02T11:01:18.390734Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[6]: --app_parameter=
[2025-08-02T11:01:18.390739Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[7]: --autolanechange=0
[2025-08-02T11:01:18.390742Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[8]: --base_port=
[2025-08-02T11:01:18.390747Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[9]: --binPath=/usr/local/driveworks/bin/
[2025-08-02T11:01:18.390751Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[10]: --calibrationOverlayFile=
[2025-08-02T11:01:18.390755Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[11]: --configOverlayFile=
[2025-08-02T11:01:18.390759Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[12]: --configOverlayName=
[2025-08-02T11:01:18.390763Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[13]: --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
[2025-08-02T11:01:18.390767Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[14]: --disableParamServiceThread=
[2025-08-02T11:01:18.390771Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[15]: --disablePrioInit=0
[2025-08-02T11:01:18.390775Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[16]: --disableStmControlLogger=0
[2025-08-02T11:01:18.390779Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[17]: --disablefaulthandler=0
[2025-08-02T11:01:18.390783Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[18]: --ds2_control=
[2025-08-02T11:01:18.390787Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[19]: --dwdatapath=/usr/local/driveworks/data
[2025-08-02T11:01:18.390791Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[20]: --enable_max_time_diff_check=0
[2025-08-02T11:01:18.390795Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[21]: --end_timestamp=0
[2025-08-02T11:01:18.390799Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[22]: --fileBackendEnabled=1
[2025-08-02T11:01:18.390803Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[23]: --fiufile=
[2025-08-02T11:01:18.390807Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[24]: --frame=
[2025-08-02T11:01:18.390810Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[25]: --ftraceBackendEnabled=0
[2025-08-02T11:01:18.390825Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[26]: --fullscreen=0
[2025-08-02T11:01:18.390830Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[27]: --instantiate_rig_sensors=
[2025-08-02T11:01:18.390834Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[28]: --lockstep_deterministic_replay=
[2025-08-02T11:01:18.390838Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[29]: --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
[2025-08-02T11:01:18.390842Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[30]: --logdebug=0
[2025-08-02T11:01:18.390846Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[31]: --loglevel=DW_LOG_DEBUG
[2025-08-02T11:01:18.390850Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[32]: --logprintstats=0
[2025-08-02T11:01:18.390854Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[33]: --logremovedup=0
[2025-08-02T11:01:18.390858Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[34]: --logremovenl=0
[2025-08-02T11:01:18.390862Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[35]: --logremovetag=
[2025-08-02T11:01:18.390866Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[36]: --loop=0
[2025-08-02T11:01:18.390870Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[37]: --mapPath=
[2025-08-02T11:01:18.390874Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[38]: --memTraceEnabled=0
[2025-08-02T11:01:18.390878Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[39]: --memwatch_frames=
[2025-08-02T11:01:18.390881Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[40]: --navRoute=
[2025-08-02T11:01:18.390885Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[41]: --ncuProfileFrames=
[2025-08-02T11:01:18.390889Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[42]: --networkBackendEnabled=0
[2025-08-02T11:01:18.390893Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[43]: --nvtxBackendEnabled=0
[2025-08-02T11:01:18.390897Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[44]: --offscreen=0
[2025-08-02T11:01:18.390901Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[45]: --path=/usr/local/driveworks/apps/minipipeline
[2025-08-02T11:01:18.390905Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[46]: --preInitSerialize=0
[2025-08-02T11:01:18.390909Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[47]: --rc2f=
[2025-08-02T11:01:18.390913Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[48]: --region=
[2025-08-02T11:01:18.390917Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[49]: --rig=
[2025-08-02T11:01:18.390921Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[50]: --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-08-02T11:01:18.390925Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[51]: --shadow=
[2025-08-02T11:01:18.390929Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[52]: --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
[2025-08-02T11:01:18.390933Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[53]: --start_timestamp=0
[2025-08-02T11:01:18.390937Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[54]: --stmControlTracing=1
[2025-08-02T11:01:18.390941Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[55]: --stm_discriminator=
[2025-08-02T11:01:18.390945Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[56]: --time_multiplier=
[2025-08-02T11:01:18.390949Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[57]: --traceChannelMask=0x0001
[2025-08-02T11:01:18.390953Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[58]: --traceFilePath=
[2025-08-02T11:01:18.390957Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[59]: --traceLevel=10
[2025-08-02T11:01:18.390961Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[60]: --useDynamicMap=0
[2025-08-02T11:01:18.390965Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[61]: --useNominalTransform=0
[2025-08-02T11:01:18.390975Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[62]: --vinOverlayFile=
[2025-08-02T11:01:18.390980Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[63]: --virtual=1
[2025-08-02T11:01:18.390984Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[64]: --virtual_time=
[2025-08-02T11:01:18.390988Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[65]: --winSizeH=1200
[2025-08-02T11:01:18.390992Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[66]: --winSizeW=1920
[2025-08-02T11:01:18.390996Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[67]: --logspec=file/rfc5424.user.mainClient:/usr/local/driveworks/apps/minipipeline/LogFolder/mainClient.log
[2025-08-02T11:01:18.391000Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[68]: --machine_id=machine0
[2025-08-02T11:01:18.391264Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app schedule_manager
[2025-08-02T11:01:18.391276Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] schedule_manager exe: /usr/local/driveworks/bin//ScheduleManager
[2025-08-02T11:01:18.391284Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[0]: /usr/local/driveworks/bin//ScheduleManager
[2025-08-02T11:01:18.391291Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[1]: --launchspec=/usr/local/driveworks/apps/minipipeline/LogFolder/dumpLaunchSpec.json
[2025-08-02T11:01:18.391297Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[2]: --loglevel=DW_LOG_DEBUG
[2025-08-02T11:01:18.391303Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[3]: --binPath=/usr/local/driveworks/bin/
[2025-08-02T11:01:18.391309Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[4]: --fileBackendEnabled=1
[2025-08-02T11:01:18.391315Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[5]: --ftraceBackendEnabled=0
[2025-08-02T11:01:18.391320Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[6]: --memTraceEnabled=0
[2025-08-02T11:01:18.391325Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[7]: --networkBackendEnabled=0
[2025-08-02T11:01:18.391330Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[8]: --nvtxBackendEnabled=0
[2025-08-02T11:01:18.391335Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[9]: --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-08-02T11:01:18.391339Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[10]: --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
[2025-08-02T11:01:18.391343Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[11]: --stmControlTracing=1
[2025-08-02T11:01:18.391348Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[12]: --traceChannelMask=0x0001
[2025-08-02T11:01:18.391352Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[13]: --traceLevel=10
[2025-08-02T11:01:18.391356Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[14]: --enableScheduleSwitching=true
[2025-08-02T11:01:18.391360Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[15]: --scheduleManagerHostIP=127.0.0.1
[2025-08-02T11:01:18.391365Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[16]: --scheduleManagerHostPort=4010
[2025-08-02T11:01:18.391369Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[17]: --scheduleManagerNumClients=1
[2025-08-02T11:01:18.391373Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[18]: --logspec=file/rfc5424.user.schedule_manager:/usr/local/driveworks/apps/minipipeline/LogFolder/schedule_manager.log
[2025-08-02T11:01:18.391378Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[19]: --schedule-manager-name=CGF-ScheduleManager
[2025-08-02T11:01:18.391382Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[20]: --sensorSyncEnabled=1
[2025-08-02T11:01:18.391386Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[21]: --disablePrioInit=0
[2025-08-02T11:01:18.391638Z][DEBUG][tid:0][Launcher.cpp:544][Launcher] Skipped app: ssm. Skip type: ssm
[2025-08-02T11:01:18.391656Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app stm_master
[2025-08-02T11:01:18.391666Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] stm_master exe: /usr/local/driveworks/bin//stm_master
[2025-08-02T11:01:18.391673Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[0]: /usr/local/driveworks/bin//stm_master
[2025-08-02T11:01:18.391679Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[1]: --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-08-02T11:01:18.391683Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[2]: --log=stm_sreport
[2025-08-02T11:01:18.391688Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[3]: --soc=TegraA
[2025-08-02T11:01:18.391692Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[4]: --timeout-us=80000000
[2025-08-02T11:01:18.391696Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[5]: -m
[2025-08-02T11:01:18.391700Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[6]: --schedule-manager-name=CGF-ScheduleManager
[2025-08-02T11:01:18.391703Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[7]: --num-input-schedule=1
[2025-08-02T11:01:18.391708Z][DEBUG][tid:0][Launcher.cpp:764][Launcher] The standard streams are redirected into file for app: stm_master logSpec: file/rfc5424.user.stm_master:/usr/local/driveworks/apps/minipipeline/LogFolder/stm_master.log
[2025-08-02T11:01:18.392031Z][DEBUG][tid:0][Launcher.cpp:927][Launcher] All apps are launched.
[2025-08-02T11:01:18.426355Z][INFO][tid:0][Launcher.cpp:1198][Launcher] Got signal: 17 (Child exited), si_pid: 2831297
[2025-08-02T11:01:18.426411Z][DEBUG][tid:0][Launcher.cpp:1270][Launcher] Sending SIGINT: /usr/local/driveworks/bin//ScheduleManager, name: schedule_manager
[2025-08-02T11:01:18.426516Z][FATAL][tid:0][Launcher.cpp:1033][Launcher] Process stm_master:2831297 failed with exit code: 1
[2025-08-02T11:01:18.426528Z][ERROR][tid:0][Launcher.cpp:1299][Launcher] There is child process exited abnormally.
[2025-08-02T11:01:18.426543Z][ERROR][tid:0][Launcher.cpp:1392][Launcher] Running processes:
[2025-08-02T11:01:18.426549Z][ERROR][tid:0][Launcher.cpp:1397][Launcher] 	ssm: 2831294
[2025-08-02T11:01:18.426555Z][ERROR][tid:0][Launcher.cpp:1397][Launcher] 	mainClient: 2831295
[2025-08-02T11:01:18.426560Z][ERROR][tid:0][Launcher.cpp:1397][Launcher] 	schedule_manager: 2831296
[2025-08-02T11:01:18.426566Z][ERROR][tid:0][Launcher.cpp:1356][Launcher] Killing all live child processes with SIGTERM...


--------------------------------------------------------------
WARNING: Using default Logger, most probably DriveWorks
         library was linked more than once.
--------------------------------------------------------------

DefaultLogger: [02-08-2025 13:01:18] [ScheduleManager] received exit
[2025-08-02T11:01:18.428545Z][FATAL][tid:0][Launcher.cpp:1039][Launcher] Process mainClient:2831295 terminated by signal: 15 (Terminated)
[2025-08-02T11:01:18.429904Z][FATAL][tid:0][Launcher.cpp:1039][Launcher] Process ssm:2831294 terminated by signal: 15 (Terminated)
[2025-08-02T11:01:48.430018Z][ERROR][tid:0][Launcher.cpp:1327][Launcher] sigtimedwait() timeout.
[2025-08-02T11:01:48.430124Z][ERROR][tid:0][Launcher.cpp:1384][Launcher] Killing all live child processes with SIGKILL...
[2025-08-02T11:01:48.435227Z][FATAL][tid:0][Launcher.cpp:1039][Launcher] Process schedule_manager:2831296 terminated by signal: 9 (Killed)
[2025-08-02T11:01:48.435264Z][INFO][tid:0][Launcher.cpp:1095][Launcher] waitForChildExit: No more child process!
[2025-08-02T11:01:48.435272Z][ERROR][tid:0][Launcher.cpp:1345][Launcher] All child processes has been killed successfully.
[2025-08-02T11:01:48.435283Z][FATAL][tid:0][Launcher.cpp:1565][Launcher] launcher exit status: 1
[2025-08-02T11:01:48.435371Z][DEBUG][tid:0][Launcher.cpp:1589][Launcher] swc_list.txt content:
line 1 : mainClient,127.0.0.1
line 2 : schedule_manager,127.0.0.1
line 3 : 

[2025-08-02T11:01:48.435545Z][ERROR][tid:0][Launcher.cpp:1601][Launcher] Failed to remove SWC/SSM temp files: Inappropriate ioctl for device
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ ls
dumpLaunchSpec.json  launcher.log  schedule_manager_0.log  ssm.log  stm_master.log
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat stm_master.log 
terminate called after throwing an instance of 'nvstm::ReturnedError<NvSciError>'
  what():  NvSciIpcOpenEndpointWithEventService() failed; Returned err: 514
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively

raised PROGRAM_ERROR : unhandled signal
[STM] Opening NvSciIpc endpoints...
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ ls
dumpLaunchSpec.json  launcher.log  schedule_manager_0.log  ssm.log  stm_master.log
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat schedule_manager_0.log 
<13>1 2025-08-02T13:01:18.436258+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[0]: /usr/local/driveworks/bin//ScheduleManager
<13>1 2025-08-02T13:01:18.436306+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[1]: --launchspec=/usr/local/driveworks/apps/minipipeline/LogFolder/dumpLaunchSpec.json
<13>1 2025-08-02T13:01:18.436314+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[2]: --loglevel=DW_LOG_DEBUG
<13>1 2025-08-02T13:01:18.436319+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[3]: --binPath=/usr/local/driveworks/bin/
<13>1 2025-08-02T13:01:18.436325+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[4]: --fileBackendEnabled=1
<13>1 2025-08-02T13:01:18.436330+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[5]: --ftraceBackendEnabled=0
<13>1 2025-08-02T13:01:18.436335+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[6]: --memTraceEnabled=0
<13>1 2025-08-02T13:01:18.436340+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[7]: --networkBackendEnabled=0
<13>1 2025-08-02T13:01:18.436345+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[8]: --nvtxBackendEnabled=0
<13>1 2025-08-02T13:01:18.436351+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[9]: --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
<13>1 2025-08-02T13:01:18.436356+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[10]: --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
<13>1 2025-08-02T13:01:18.436361+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[11]: --stmControlTracing=1
<13>1 2025-08-02T13:01:18.436366+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[12]: --traceChannelMask=0x0001
<13>1 2025-08-02T13:01:18.436371+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[13]: --traceLevel=10
<13>1 2025-08-02T13:01:18.436376+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[14]: --enableScheduleSwitching=true
<13>1 2025-08-02T13:01:18.436382+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[15]: --scheduleManagerHostIP=127.0.0.1
<13>1 2025-08-02T13:01:18.436387+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[16]: --scheduleManagerHostPort=4010
<13>1 2025-08-02T13:01:18.436392+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[17]: --scheduleManagerNumClients=1
<13>1 2025-08-02T13:01:18.436397+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[18]: --logspec=file/rfc5424.user.schedule_manager:/usr/local/driveworks/apps/minipipeline/LogFolder/schedule_manager.log
<13>1 2025-08-02T13:01:18.436402+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[19]: --schedule-manager-name=CGF-ScheduleManager
<13>1 2025-08-02T13:01:18.436408+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[20]: --sensorSyncEnabled=1
<13>1 2025-08-02T13:01:18.436413+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:309][ScheduleManager] ScheduleManager: arg[21]: --disablePrioInit=0
<13>1 2025-08-02T13:01:18.436879+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][LaunchSpecReader.cpp:897][JsonSystemReader] [JsonSystemReader] LaunchSpec version: 2
<12>1 2025-08-02T13:01:18.443227+02:00 - schedule_manager 2831296 - - [0us][WARN][tid:0][LaunchSpecReader.cpp:1662][JsonSystemReader] Flag --mapPath is empty
<13>1 2025-08-02T13:01:18.443458+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][LaunchSpecReader.cpp:1115][JsonSystemReader] [JsonSystemReader] ScheduleKey: standardSchedule id: 0
<13>1 2025-08-02T13:01:18.443949+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:278][ScheduleManager] [ScheduleManager] ScheduleKey: standardSchedule id: 0
<13>1 2025-08-02T13:01:18.443968+02:00 - schedule_manager 2831296 - - [0us][DEBUG][tid:0][ScheduleManager.cpp:752][ScheduleManager] setupStmScheduleManager::starting
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ 

Kind regards,
Lucas

Dear @SivaRamaKrishnaNV ,

Due to the failing service, I tried to reboot the machine, but …

I tried many way to reboot command line, web interface but, it always fails on reboot. Only solution is to cut the power off, wait a bit and power back on the machine physically. But I am often working from home, so easier way is to flash again the machine a bit annoying…
Is there a way to reboot the machine remotely ?
I have access to the Serial with picocom.

#######################REBOOT_SOLUTION###########################
// in case the machine boot failed:
sudo picocom -b 115200 /dev/ttyACM1
aurixreset

// reboot command line that doesn’t crash kernel:
sudo su
echo 1 > /sys/class/tegra_hv_pm_ctl/tegra_hv_pm_ctl/device/trigger_sys_reboot

thanks to @vincenzo.longobardi Failure during reboot from debug interface - #5 by VickNV
#######################REBOOT_SOLUTION###########################

Investigations I tried with no success:

I have tried to reboot the machine with the Python bootburn.py script, with no success.

sudo docker run -it --privileged --net=host -v /dev/bus/usb:/dev/bus/usb -v /drive_flashing:/drive_flashing nvcr.io/drive/driveos-sdk/drive-agx-orin-linux-aarch64-sdk-build-x86:6.0.8.1-0006
cd /drive/drive-foundation/tools/flashtools/bootburn
sudo python3 bootburn.py -R -b orin-slt
python3 bootburn.py -R -b orin-slt -I 001 010
python3 bootburn.py -R -b p3710

root@6.0.8.1-0006-build-linux-sdk:/drive/drive-foundation/tools/flashtools/bootburn# sudo python3 bootburn.py -R -b orin-slt
****** Starting bootburn/bootburn.py ********
********* Starting t23x bootburn py ********
Bootburn Starting with arguments ['bootburn.py', '-R', '-b', 'orin-slt']
cwd in setBoardConfigPath :: /drive/drive-foundation/tools/flashtools/bootburn_t23x_py
 trying hardware folder:
/drive/drive-foundation/platform-config/hardware/nvidia/platform/t23x/automotive/flashing/board_configs

cwd in loadBoardGoldenRegsFile :: /drive/drive-foundation/tools/flashtools/bootburn_t23x_py
Default Schema:/drive/drive-foundation/tools/flashtools/bootburn_t23x_py/nv-customer-data-schema.json

Check finished successfully
Done parsing command line

[bootburn]: [getListTargetsInRecovery(3965)] : Bus 001 Device 010: ID 0955:7045 NVIDIA Corp. Tegra On-Platform Operator
[bootburn]: [CheckRecoveryTargets(3923)] : No recovery-target found; Make sure the target device is connected to the
[bootburn]: [CheckRecoveryTargets(3924)] : host and is in recovery mode. Exiting
command line used was:
['bootburn.py', '-R', '-b', 'orin-slt']


ERROR_TARGET_RECOVERY


Exception caught in bootburn 
Traceback (most recent call last):
  File "/drive/drive-foundation/tools/flashtools/bootburn/../bootburn_t23x_py/bootburn.py", line 287, in bootburn
    bootburnLib.CheckRecoveryTargets()
  File "/drive/drive-foundation/tools/flashtools/bootburn/../bootburn_t23x_py/bootburn_lib.py", line 3925, in CheckRecoveryTargets
    AbnormalTermination("ERROR_TARGET_RECOVERY", nverror.NvError_ResourceError)
  File "/drive/drive-foundation/tools/flashtools/bootburn/../bootburn_t23x_py/flashtools_nverror.py", line 251, in AbnormalTermination
    raise OSError(errorCode)
OSError: 15
root@6.0.8.1-0006-build-linux-sdk:/drive/drive-foundation/tools/flashtools/bootburn#

Here the log via picocom of the machine crashing (kernel panic)

reds@tegra-ubuntu:~/Download$ ��
Time taken from Error Reporting to SEH: 60 microseconds
DemoApp: ErrCode-0x21ed ReptrId-0xe008 ErrAttr-0x0
EPS TimeStamp: 0x4302a4de
��[ 3830.371281] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[ 3924.461151] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[ 3987.893711] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[ 4036.162905] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[ 4104.696596] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[ 4104.709386] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[ 4104.711050] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[ 4104.711207] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[ 4104.712485] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[ 4105.827583] pva 16000000.pva0: failed to get free Queue
[ 4105.827730] pva 16000000.pva0: failed to get free Queue
[ 4201.768710] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[49356.842718] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[49657.776651] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[158834.764097] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[227889.787586] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[227889.799084] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[227889.801524] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[227889.801524] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[227889.801523] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[227890.885816] pva 16000000.pva0: failed to get free Queue
[227890.885947] pva 16000000.pva0: failed to get free Queue
[227989.702422] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[227989.718200] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[227989.720037] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[227989.720097] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[227989.720332] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[227990.879181] pva 16000000.pva0: failed to get free Queue
[227990.879329] pva 16000000.pva0: failed to get free Queue
[228084.366542] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[228084.377511] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[228084.378750] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[228084.378851] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[228084.383979] nvpps nvpps0: unable to switch mode. Only timer mode is supported
[228085.574682] pva 16000000.pva0: failed to get free Queue
[228085.574893] pva 16000000.pva0: failed to get free Queue
[228552.632248] nvpps nvpps0: unable to switch mode. Only timer mode is supported
         Stoppin         Stopping Session 4 of user reds.
         Stopping Session c2 of user gdm.
[  OK  ] Removed slice system-getty.slice.
[  OK  ] Removed slice system-modprobe.slice.
[  OK  ] Removed slice system-nv_ma…ell_interface_configure.slice.
[  OK  ] Stopped target Graphical Interface.
[  OK  ] Stopped target Multi-User System.
[  OK  ] Stopped target Login Prompts.
[  OK  ] Stopped target Host and Network Name Lookups.
[  OK  ] Stopped target RPC Port Mapper.
[  OK  ] Stopped target Timers.
[  OK  ] Stopped Periodic ext4 Onli…ata Check for All Filesystems.
[  OK  ] Stopped Discard unused blocks once a week.
[  OK  ] Stopped Daily man-db regeneration.
[  OK  ] Stopped Message of the Day.
[  OK  ] Stopped Daily Cleanup of Temporary Directories.
[  OK  ] Stopped target System Time Synchronized.
[  OK  ] Stopped target System Time Set.
         Unmounting RPC Pipe File System...
         Stopping Accounts Service...
         Stopping Manage, Install and Generate Color Profiles...
         Stopping Docker Application Container Engine...
         Stopping GNOME Display Manager...
[  OK  ] Stopped NFS server and client services.
         Stopping startup for DUV3...
         Stopping Orin Fan control daemon...
         Stopping "nvfsicom daemon …r FSI-CCPLEX communication"...
         Stopping NVIDIA MCC Daemon...
         Stopping "nvtzvault daemon for crypto-asym-service TA"...
         Stopping "nvtzvault daemon for crypto-sym-service TA"...
         Stopping "nvtzvault daemon for gp-se TA"...
         Stopping "nvtzvault daemon for nvmacsec TA"...
         Stopping "nvtzvault daemon for pkcs11-keystore-tk1 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk10 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk11 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk12 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk13 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk14 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk15 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk16 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk17 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk18 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk19 TA"...
         Stopping "nvtzvault daemon for pkcs11-keystore-tk2 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk20 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk21 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk22 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk23 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk24 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk25 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk26 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk27 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk28 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk29 TA"...
         Stopping "nvtzvault daemon for pkcs11-keystore-tk3 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk30 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk31 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk32 TA"...
         Stopping "nvtzvault daemon…or pkcs11-keystore-tk33 TA"...
         Stopping "nvtzvault daemon for pkcs11-keystore-tk4 TA"...
         Stopping "nvtzvault daemon for pkcs11-keystore-tk5 TA"...
         Stopping "nvtzvault daemon for pkcs11-keystore-tk6 TA"...
         Stopping "nvtzvault daemon for pkcs11-keystore-tk7 TA"...
         Stopping "nvtzvault daemon for pkcs11-keystore-tk8 TA"...
         Stopping "nvtzvault daemon for pkcs11-keystore-tk9 TA"...
         Stopping Hypervisor initiated Shutdown Service...
         Stopping Authorization Manager...
         Stopping System Logging Service...
         Stopping RustDesk...
         Stopping Serial Getty on ttyS2...
         Stopping Self Monitoring a…g Technology (SMART) Daemon...
         Stopping OpenBSD Secure Shell server...
         Stopping Load/Save Random Seed...
         Stopping Disk Manager...
[  OK  ] Stopped Accounts Service.
[  OK  ] Stopped Hypervisor initiated Shutdown Service.
[  OK  ] Stopped System Logging Service.
[  OK  ] Stopped Self Monitoring an…ing Technology (SMART) Daemon.
[  OK  ] Stopped "nvfsicom daemon u…for FSI-CCPLEX communication".
[  OK  ] Stopped "nvtzvault daemon for crypto-asym-service TA".
[  OK  ] Stopped "nvtzvault daemon for crypto-sym-service TA".
[  OK  ] Stopped "nvtzvault daemon for gp-se TA".
[  OK  ] Stopped "nvtzvault daemon for nvmacsec TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk1 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk10 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk11 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk12 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk13 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk14 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk15 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk16 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk17 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk18 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk19 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk2 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk20 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk21 TA".
[  OK  ] Stopped Disk Manager.
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk22 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk23 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk24 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk25 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk26 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk27 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk28 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk29 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk3 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk30 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk31 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk32 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk33 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk4 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk5 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk6 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk7 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk8 TA".
[  OK  ] Stopped "nvtzvault daemon for pkcs11-keystore-tk9 TA".
[�RmDeInit completed successfully
��;32m  OK  ] Stopped Authorization Manager.
[  OK  ] Stopped Orin Fan control daemon.
[  OK  ] Stopped Serial Getty on ttyS2.
[  OK  ] Stopped OpenBSD Secure Shell server.
[  OK  ] Stopped NVIDIA MCC Daemon.
[  OK  ] Stopped Manage, Install and Generate Color Profiles.
[  OK  ] Stopped Docker Application Container Engine.
[  OK  ] Unmounted RPC Pipe File System.
[  OK  ] Stopped RustDesk.
[  OK  ] Stopped Load/Save Random Seed.
[  OK  ] Stopped startup for DUV3.
[  OK  ] Stopped Session 2 of user reds.
[  OK  ] Removed slice system-nv_tzvault_daemon.slice.
[  OK  ] Removed slice system-serial\x2dgetty.slice.
         Stopping containerd container runtime...
[  OK  ] Stopped GNOME Display Manager.
[  OK  ] Stopped containerd container runtime.
[  OK  ] Stopped Session c2 of user gdm.
         Stopping User Manager for UID 110...
[  OK  ] Stopped User Manager for UID 110.
         Stopping User Runtime Directory /run/user/110...
[  OK  ] Unmounted /run/user/110.
[  OK  ] Stopped User Runtime Directory /run/user/110.
[  OK  ] Removed slice User Slice of UID 110.
[  OK  ] Stopped Session 4 of user reds.
         Stopping Login Service...
         Stopping User Manager for UID 1000...
[  OK  ] Stopped Login Service.
[  OK  ] Stopped User Manager for UID 1000.
         Stopping User Runtime Directory /run/user/1000...
[  OK  ] Unmounted /run/user/1000.
[  OK  ] Stopped User Runtime Directory /run/user/1000.
[  OK  ] Removed slice User Slice of UID 1000.
         Stopping Permit User Sessions...
[  OK  ] Stopped Permit User Sessions.
[  OK  ] Stopped target User and Group Name Lookups.
[  OK  ] Stopped target Remote File Systems.
         Unmounting /home/reds/cross-compiled...
[  OK  ] Unmounted /home/reds/cross-compiled.
[  OK  ] Stopped target Network is Online.
[  OK  ] Stopped target Network.
[  OK  ] Stopped target Remote File Systems (Pre).
[  OK  ] Stopped target NFS client services.
[  OK  ] Stopped Wait for Network c…cted to WWW to be Configured..
         Stopping Network Name Resolution...
         Stopping WPA supplicant...
[  OK  ] Stopped WPA supplicant.
         Stopping D-Bus System Message Bus...
[  OK  ] Stopped D-Bus System Message Bus.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped target Paths.
[  OK  ] Stopped target Slices.
[  OK  ] Removed slice User and Session Slice.
[  OK  ] Stopped target Sockets.
[  OK  ] Closed D-Bus System Message Bus Socket.
[  OK  ] Closed Docker Socket for the API.
[  OK  ] Stopped target System Initialization.
[  OK  ] Stopped target Local Encrypted Volumes.
[  OK  ] Stopped Dispatch Password …ts to Console Directory Watch.
[  OK  ] Stopped Forward Password R…uests to Wall Directory Watch.
[  OK  ] Stopped target Swap.
[  OK  ] Closed Syslog Socket.
         Stopping Time synchronisation across boots....
         Stopping Network Time Synchronization...
         Stopping Update UTMP about System Boot/Shutdown...
[  OK  ] Stopped Network Name Resolution.
         Stopping Network Service...
[  OK  ] Stopped Update UTMP about System Boot/Shutdown.
[  OK  ] Stopped Time synchronisation across boots..
[  OK  ] Stopped Network Time Synchronization.
[  OK  ] Stopped Create Volatile Files and Directories.
[  OK  ] Stopped target Local File Systems.
         Unmounting /tmp/RustDesk/cliprdr-client...
         Unmounting /tmp/RustDesk/cliprdr-server...
[  OK  ] Unmounted /tmp/RustDesk/cliprdr-client.
[  OK  ] Unmounted /tmp/RustDesk/cliprdr-server.
[  OK  ] Stopped target Local File Systems (Pre).
[  OK  ] Reached target Unmount All Filesystems.
[  OK  ] Stopped Create Static Device Nodes in /dev.
[  OK  ] Stopped Network Service.
[  OK  ] Stopped target Network (Pre).
[  OK  ] Stopped Apply Kernel Variables.
[  OK  ] Stopped Load Kernel Modules.
[  OK  ] Stopped Create System Users.
[  OK  ] Stopped Remount Root and Kernel File Systems.
[  OK  ] Reached target Shutdown.
[  OK  ] Reached target Final Step.
[  OK  ] Finished Reboot.
[  OK  ] Reached target Reboot.
[230490.115091] watchdog: watchdog0: watchdog did not stop!
��consume on SM2
Fsi Ccplex Com DeInit done
Fsi Ccplex Com DeInit done
��[230490.142813] systemd-shutdown[1]: Syncing filesystems and block devices.
[230490.149610] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
[230490.160425] systemd-journald[689]: Received SIGTERM from PID 1 (systemd-shutdow).
[230490.223301] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[230490.233094] systemd-shutdown[1]: Hardware watchdog 'Tegra WDT', version 1
[230490.234482] systemd-shutdown[1]: Unmounting file systems.
[230490.235928] [2855921]: Remounting '/' read-only in with options 'seclabel'.
[230490.276814] EXT4-fs (vblkdev0p1): re-mounted. Opts: . Quota mode: none.
[230490.328844] systemd-shutdown[1]: All filesystems unmounted.
[230490.328849] systemd-shutdown[1]: Deactivating swaps.
[230490.328901] systemd-shutdown[1]: All swaps deactivated.
[230490.328903] systemd-shutdown[1]: Detaching loop devices.
[230490.330079] systemd-shutdown[1]: All loop devices detached.
[230490.330083] systemd-shutdown[1]: Detaching DM devices.
[230490.330159] systemd-shutdown[1]: All DM devices detached.
[230490.330162] systemd-shutdown[1]: All filesystems, swaps, loop devices and DM devices detached.
[230490.332873] systemd-shutdown[1]: Syncing filesystems and block devices.
[230490.333892] systemd-shutdown[1]: Rebooting.
[230490.474987] lan743x 0007:01:00.0 enP7p1s0: ptp clock unregister
[230490.475007] lan743x 0007:01:00.0 enP7p1s0: Link is Down
[230490.505283] nvethernet 6b10000.ethernet mgbe3_0: Link is Down
[230490.598891] nvethernet 6a10000.ethernet mgbe2_0: Link is Down
[230490.787271] nvethernet 6810000.ethernet mgbe0_0: Link is Down
[230490.878556] nvethernet 2310000.ethernet eqos_0: Link is Down
[230490.899885] nvgpu: 17000000.ga10b                 gk20a_pm_shutdown:1327 [INFO]  shutting down
[230490.902816] nvgpu: 17000000.ga10b                 gk20a_pm_shutdown:1358 [INFO]  shut down complete
[230490.902987] arm-smmu 8000000.iommu: disabling translation
[230490.903110] arm-smmu 12000000.iommu: disabling translation
[230490.903247] reboot: Restarting system
[230490.903252] printk: enabled sync mode
[230490.906640] printk: console [ttyS2]: printing thread stopped
Guest has issued a PSCI SystemOff/SystemReset
pl:[I]: storage is virtualized
pl:[I]: device_registration_virt_init Successful
pl:[I]: RSA_PSS authentication for binary PASSED
pl:[I]: EDDSA authentication for binary successful
pl:[I]: KAT successful
pl:[I]: PVIT Loaded
pl:[I]: Platform ChipId 0x23
pl:[I]: BCH SHA512 digest verification successful
pl:[I]: PVIT entry found and SHA is matching
pl:[I]: Loaded PT
pl:[I]: dev_id 0xe instance 0x8 part_name :pt part_id 0x1 start_addr 0x0 size 0x40000 end_addr 0x3ffff
pl:[I]: dev_id 0xe instance 0x8 part_name :kernel-dtb part_id 0x2 start_addr 0x40000 size 0x60000 end_addr 0x9ffff
pl:[I]: dev_id 0xe instance 0x8 part_name :kernel part_id 0x3 start_addr 0xa0000 size 0x1b00000 end_addr 0x1b9ffff
pl:[I]: dev_id 0xe instance 0x8 part_name :ramdisk part_id 0x4 start_addr 0x1ba0000 size 0x700000 end_addr 0x229ffff
pl:[I]: dev_id 0xe instance 0x8 part_name :gos0-gp1 part_id 0x5 start_addr 0x22a0000 size 0x40000 end_addr 0x22dffff
pl:[I]: dev_id 0xe instance 0x8 part_name :gos0-fs part_id 0x6 start_addr 0x22e0000 size 0x67eee0000 end_addr 0x6811bffff
pl:[I]: dev_id 0xe instance 0x8 part_name :gos0-gpt part_id 0x7 start_addr 0x6811df000 size 0x21000 end_addr 0x6811fffff
pl:[I]: Booted chain A
pl:[I]: Loading Kernel Image
pl:[I]: BCH SHA512 digest verification successful
pl:[I]: PVIT entry found and SHA is matching
pl:[I]: Ratchet Version Check Successful
pl:[I]: meta-blob hash verify success 0xa4000
pl:[I]: version 1 Bin 1 BCheckSum 0 content_size 0 Content ChkSum 1             reserved_00  0
pl:[I]: Reserved10 0 BlockMaxSize 5 Reserved11 0
pl:[I]: Plaintext SHA512 validation successful
pl:[I]: Loading Ramdisk Image
pl:[I]: BCH SHA512 digest verification successful
pl:[I]: PVIT entry found and SHA is matching
pl:[I]: Ratchet Version Check Successful
pl:[I]: meta-blob hash verify success 0x1ba3000
pl:[I]: version 1 Bin 1 BCheckSum 0 content_size 0 Content ChkSum 1             reserved_00  0
pl:[I]: Reserved10 0 BlockMaxSize 5 Reserved11 0
pl:[I]: Plaintext SHA512 validation successful
pl:[I]: Loading DTB image
pl:[I]: BCH SHA512 digest verification successful
pl:[I]: PVIT entry found and SHA is matching
pl:[I]: Ratchet Version Check Successful
pl:[I]: Ignoring Reserved Memory value 0x0
pl:[I]: Added mpidr: 0x10000 to  cpu-0 node in FDT
pl:[I]: Added mpidr: 0x10100 to  cpu-1 node in FDT
pl:[I]: Added mpidr: 0x10200 to  cpu-2 node in FDT
pl:[I]: Added mpidr: 0x10300 to  cpu-3 node in FDT
pl:[I]: Added mpidr: 0x20000 to  cpu-4 node in FDT
pl:[I]: Added mpidr: 0x20100 to  cpu-5 node in FDT
pl:[I]: Added mpidr: 0x20200 to  cpu-6 node in FDT
pl:[I]: Added mpidr: 0x20300 to  cpu-7 node in FDT
pl:[I]: Added mpidr: 0x100 to  cpu-8 node in FDT
pl:[I]: Added mpidr: 0x200 to  cpu-9 node in FDT
pl:[I]: Added mpidr: 0x0 to  cpu-10 node in FDT
pl:[I]: Added mpidr: 0x300 to  cpu-11 node in FDT
pl:[W]: PVIT entry not found for gos0-ifs2
pl:[W]: PVIT entry not found for gos0-ifs2_1
pl:[W]: PVIT entry not found for gos0-ifs2_2
pl:[W]: PVIT entry not found for gos0-ifs2_3
pl:[W]: PVIT entry not found for gos0-ifs2_4
pl:[W]: PVIT entry not found for gos0-ifs2_5
pl:[W]: PVIT entry not found for gos0-ifs2_6
pl:[W]: PVIT entry not found for gos0-ifs2_7
pl:[I]: Added PVIT data for SIFS bins
pl:[I]: CARVEOUT_FSI_CPU_NS base(0x7fe29c0000) size(0x1000000)
pl:[I]: total mac_address 10
pl:[W]: Unable to find /smmu-static-mapping node : FDT_ERR_NOTFOUND
pl:[I]: Added HWRNG info to DTB
pl:[I]: Misc display is not enabled, skip updating display node
pl:[I]: Kernel Cmdline: aurixfw=AFW root=/dev/vblkdev0p1 loglevel=3 ip=off usr_fs=/dev/vblkdev1:/mnt/persistent/metadata usr_fs2=/dev/vblkdev2:/mnt/persistent/data rw_overlay=/dev/vblkdev3:/rw_overlay gpt rootwait rw gpt tegra_keep_boot_clocks disable_android_paranoid_network sdhci_tegra.en_boot_part_access=1 console=ttyS2,115200n8 pci=ecrc=on verity=0 board_name=p3710-10-s05 pct=linux power_profile=MAXP_A_990_D_04 tegraid=23.4.1.0.0 tegra_bootloader_debug.bl_debug_data=65536@0x7fe97f0000 tegra_bootloader_debug.bl_prof_dataptr=65536@0x7fe39d0000 tegra_bootloader_debug.bl_prof_ro_ptr=196608@0x7fe39c0000 
pl:[I]: jumping to kernel at 0x80200000 (virtual 0x80000000)
[    0.236781] INITRAMFS STARTS
unable to find driver for 0000 rev 00
[    1.480420] Trying switch_root to /new_root
[    1.480469] INITRAMFS END

Welcome to Ubuntu 20.04.6 LTS!

[  OK  ] Created slice system-modprobe.slice.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[  OK  ] Reached target Local Encrypted Volumes.
[  OK  ] Reached target Swap.
[  OK  ] Reached target System Time Set.
[  OK  ] Listening on Journal Audit Socket.
[  OK  ] Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket.
[  OK  ] Listening on udev Control Socket.
[  OK  ] Listening on udev Kernel Socket.
         Mounting Huge Pages File System...
         Mounting POSIX Message Queue File System...
         Mounting Kernel Debug File System...
         Mounting Kernel Trace File System...
         Starting Set the console keyboard layout...
         Starting Create list of st…odes for the current kernel...
         Starting Load Kernel Module chromeos_pstore...
         Starting Load Kernel Module pstore_zone...
         Starting Load Kernel Module ramoops...
         Starting Set console scheme...
         Starting Load Kernel Modules...
         Starting Remount Root and Kernel File Systems...
         Starting udev Coldplug all Devices...
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Trace File System.
[  OK  ] Finished Create list of st… nodes for the current kernel.
[  OK  ] Finished Load Kernel Module chromeos_pstore.
[  OK  ] Finished Load Kernel Module pstore_zone.
[  OK  ] Finished Load Kernel Module ramoops.
[  OK  ] Finished Set console scheme.
[  OK  ] Finished Remount Root and Kernel File Systems.
[  OK  ] Reached target NVIDIA Basic Initialization Target.
         Starting NVIDIA Basic Initialization Service...
         Starting Load/Save Random Seed...
         Starting Create System Users...
[  OK  ] Finished Set the console keyboard layout.
[  OK  ] Finished Create System Users.
[  OK  ] Finished Load/Save Random Seed.
         Starting Time��[230498.552513] Camera-FW on t234-rce-safe started
TCU console enabled.
�� synchronisation across boots....
         Starting Create Static Device��
Time taken from Error Reporting to SEH: 65 microseconds
DemoApp: ErrCode-0x28b4 ReptrId-0xe030 ErrAttr-0x0
EPS TimeStamp: 0x190230fe
�� Nodes in /dev...
[  OK  ] Started Time synchronisation across boots..
[  OK  ] Reached target System Time Synchronized.
         Starting Journal Service...
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Reached target Local File Systems (Pre).
[  OK  ] Reached target Local File Systems.
         Starting udev Kernel Device Manager...
Creating mount directories.
[  OK  ] Started Journal Service.
         Starting Flush Journal to Persistent Storage...
[  OK  ] Starte��[230498.640264] Camera-FW on t234-rce-safe ready SHA1=484000bd (crt 1.096 ms, total boot 88.942 ms)
��d udev Kernel Device Manager.
Resizing persistent partition: /dev/vblkdev1
e2fsck 1.45.5 (07-Jan-2020)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
/dev/vblkdev1: 57/65536 files (0.0% non-contiguous), 6271/65536 blocks
resize2fs 1.45.5 (07-Jan-2020)
The filesystem is already 65536 (4k) blocks long.  Nothing to do!

Resizing persistent partition: /dev/vblkdev2
e2fsck 1.45.5 (07-Jan-2020)
ext2fs_open2: Bad magic number in super-block
e2fsck: Superblock invalid, trying backup blocks...
e2fsck: Bad magic number in super-block while trying to open /dev/vblkdev2

The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem.  If the device is valid and it really contains an ext2/ext3/ext4
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device>
 or
    e2fsck -b 32768 <device>

resize2fs 1.45.5 (07-Jan-2020)
resize2fs: Bad magic number in super-block while trying to open /dev/vblkdev2
Couldn't find valid filesystem superblock.
Resize failed on /dev/vblkdev2.
Persistent partition Init:: Error at /usr/sbin/driveos-persistence.sh:38: return $_err.
Persistent partition Init:: Disabling persistent partitions support.
umount: /home/: not mounted.
umount: /etc/: not mounted.
umount: /mnt/persistent/metadata: not mounted.
umount: /mnt/persistent/data: not mounted.
�nvhost guest connect: module_id:1
nvhost guest connect: module_id:2
��Persistent partition Init:: /usr/sbin/driveos-persistence.sh exited with code 1.
�nvhost guest connect: module_id:9
nvhost guest connect: module_id:8
NVDEC RISC-V boot success
nvhost guest connect: module_id:7
nvhost guest connect: module_id:15
nvhost guest connect: module_id:16
��[  OK  ] Finished Load Kernel Modules.
         Mounting Kernel Configuration File System...
         Starting Apply Kernel Variables...
[  OK  ] Mounted Kernel Configuration File System.
[    2.891164] Safety I2S: Clearing reset for i2s7... 
[    2.891354] Safety I2S: Success!
[    2.892500] Safety I2S: Sound card registered successfully
[    2.984837] cam_fsync c6a0000.tsc_sig_gen: Generator generator@380 in group 0 is not idle
[    2.984839] cam_fsync c6a0000.tsc_sig_gen: Failed to create frame sync group
[    3.188243] tegra194-pcie 14100000.pcie: can't set bw[250]
[  OK  ] Finished udev Coldplug all Devices.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Apply Kernel Variables.
Templates already setup. Skipping...
[  OK  ] Reached target Sound Card.
         Starting Load Kernel Module chromeos_pstore...
         Starting Load Kernel Module pstore_zone...
         Starting Load Kernel Module ramoops...
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Load Kernel Module chromeos_pstore.
[  OK  ] Finished Load Kernel Module pstore_zone.
[  OK  ] Finished Load Kernel Module ramoops.
[    3.320241] tegra194-pcie 141e0000.pcie: can't set bw[250]
[  OK  ] Finished Create Volatile Files and Directories.
         Starting Update UTMP about System Boot/Shutdown...
[  OK  ] Finished Update UTMP about System Boot/Shutdown.
[  OK  ] Reached target System Initialization.
         Starting Remove Stale Onli…t4 Metadata Check Snapshots...
[  OK  ] Started Add entropy to /de…random 's pool a hardware RNG.
[  OK  ] Finished Remove Stale Onli…ext4 Metadata Check Snapshots.
[  OK  ] Created slice system-nv_ma…ell_interface_configure.slice.
         Starting Marvell Ethernet …ion via Userland PHY Driver...
[  OK  ] Finished Marvell Ethernet …ation via Userland PHY Driver.
/usr/sbin/nv_init.sh: line 76: warning: command substitution: ignored null byte in input
[  OK  ] Created slice system-getty.slice.
[  OK  ] Created slice system-nv_tzvault_daemon.slice.
[  OK  ] Created slice system-serial\x2dgetty.slice.
[  OK  ] Created slice User and Session Slice.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[  OK  ] Started Periodic ext4 Onli…ata Check for All Filesystems.
[  OK  ] Started Discard unused blocks once a week.
[  OK  ] Started Daily man-db regeneration.
[  OK  ] Started Message of the Day.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target User and Group Name Lookups.
[  OK  ] Stopped target NVIDIA Basic Initialization Target.
[  OK  ] Reached target Paths.
[  OK  ] Reached target Slices.
[  OK  ] Stopped target Sound Card.
[  OK  ] Reached target Timers.
[  OK  ] Listening on D-Bus System Message Bus Socket.
         Starting Docker Socket for the API.
[  OK  ] Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on Syslog Socket.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on Network Service Netlink Socket.
         Mounting RPC Pipe File System...
         Starting Set console font and keymap...
         Starting Load Kernel Module chromeos_pstore...
         Starting Load Kernel Module pstore_zone...
         Starting Load Kernel Module ramoops...
         Starting Preprocess NFS configuration...
         Stopping Add entropy to /d…ndom 's pool a hardware RNG...
         Starting �
Time taken from Error Reporting to SEH: 69 microseconds
DemoApp: ErrCode-0x22c ReptrId-0x8016 ErrAttr-0x0
EPS TimeStamp: 0x1cec9d5e

Time taken from Error Reporting to SEH: 68 microseconds
DemoApp: ErrCode-0x296 ReptrId-0x8016 ErrAttr-0x0
EPS TimeStamp: 0x1cecddf6
��mRPC bind portmap service...
[  OK  ] Stopped Add entropy to /de…random 's pool a hardware RNG.
[  OK  ] Listening on Docker Socket for the API.
[  OK  ] Mounted RPC Pipe File System.
[  OK  ] Finished Set console font and keymap.
[  OK  ] Finished Load Kernel Module chromeos_pstore.
[  OK  ] Finished Load Kernel Module pstore_zone.
[  OK  ] Finished Load Kernel Module ramoops.
[  OK  ] Finished Preprocess NFS configuration.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
         Starting Accounts Service...
[  OK  ] Started D-Bus System Message Bus.
         Starting Disable power fea…such as Runtime PM on Linux...
[  OK  ] Started Save initial kernel messages after boot.
         Starting Board specific initialization...
         Starting mnand refresh daemon service...
Starting board specific init  ...
         Starting NvSciIpc initialization...
         Starting Initialization of TACP...
Getting target_board from device-tree  ...
[  OK  ] Started Hypervisor initiated Shutdown Service.
[  OK  ] Reached target NFS client services.
         Starting System Logging Service...
         Starting Self Monitoring a…g Technology (SMART) Daemon...
         Starting Login Service...
         Starting Ubuntu live CD installer...
target=p3710-0010, card=SafetyI2Ssoun, kernel=5.15.98-rt-tegra
         Starting Disk Manager...
         Starting WPA supplicant...
[  OK  ] Started RPC bind portmap service.
[  OK  ] Finished NVIDIA Basic Initialization Service.
[  OK  ] Started mnand refresh daemon service.
[  OK  ] Finished Ubuntu live CD installer.
[  OK  ] Started System Logging Service.
[  OK  ] Reached target Remote File Systems (Pre).
[  OK  ] Reached target RPC Port Mapper.
[  OK  ] Finished NvSciIpc initialization.
[  OK  ] Started "nvfsicom daemon u…for FSI-CCPLEX communication".
[  OK  ] Started "daemon used for s…via FSI-CCPLEX communication".
         Starting nvlog client logging service...
[  OK  ] Started "nvtzvault daemon for common-server-testapp TA".
[  OK  ] Started "nvtzvault daemon for crypto-asym-service TA".
[  OK  ] Started "nvtzvault daemon for crypto-sym-service TA".
[  OK  ] Started "nvtzvault daemon for gp-se TA".
[  OK  ] Started "nvtzvault daemon for nvmacsec TA".
[    4.472253] nvgpu: 17000000.ga10b     nvgpu_acr_wait_for_completion:140  [ERR]  flcn-1: HS ucode boot failed, err 1b
[    4.472260] nvgpu: 17000000.ga10b     nvgpu_acr_wait_for_completion:142  [ERR]  flcn-1: Ma��
Time taken from Error Reporting to SEH: 38 microseconds
DemoApp: ErrCode-0x6 ReptrId-0x800e ErrAttr-0x0
EPS TimeStamp: 0x1d8b9bce
��ilbox-1 : 0xabcd1234
[    4.472268] nvgpu: 17000000.ga10b nvgpu_cic_mon_report_err_safety_services:90   [ERR]  Reported err_id(0x22c) to Safety_Services
[[    4.472271] nvgpu: 17000000.ga10b           acr_report_error_to_sdl:53   [ERR]  ACR register access failure
  OK  ] Started     4.472799] nvgpu: 17000000.ga10b nvgpu_cic_mon_report_err_safety_services:90   [ERR]  Reported err_id(0x296) to Safety_Services
1;39m"nvtzvault daemon for pkcs11-keystore-tk1 TA".
[    4.472802] nvgpu: 17000000.ga10b nvgpu_pmu_report_bar0_pri_err_status:41   [ERR]  PMU falcon bar0 timeout. status(0x0), error_type(0xc)
[    4.472805] nvgpu: 17000000.ga10b            ga10b_bootstrap_hs_acr:72   [ERR]  ACR bootstrap failed
[    4.472808] nvgpu: 17000000.ga10b        nvgpu_acr_bootstrap_hs_acr:85   [ERR]  ACR bootstrap failed
[    4.472811] nvgpu: 17000000.ga10b       nvgpu_acr_construct_execute:108  [ERR]  Bootstrap HS ACR failed
[    4.472814] nvgpu: 17000000.ga10b            nvgpu_finalize_poweron:1049 [ERR]  Failed initialization for: g->ops.acr.acr_construct_execute
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk10 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk11 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk12 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk13 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk14 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk15 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk16 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk17 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk18 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk19 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk2 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk20 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk21 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk22 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk23 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk24 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk25 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk26 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk27 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk28 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk29 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk3 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk30 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk31 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk32 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk33 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk4 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk5 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk6 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk7 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk8 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore-tk9 TA".
[  OK  ] Started "nvtzvault daemon for pkcs11-keystore TA".
[  OK  ] Started "nvtzvault daemon for sample_service3_gp TA".
[  OK  ] Started "nvtzvault daemon for testing-service TA".
[  OK  ] Started Self Monitoring an…ing Technology (SMART) Daemon.
[  OK  ] Finished Disable power fea…s such as Runtime PM on Linux.
[  OK  ] Finished Board specific initialization.
[  OK  ] Finished Initialization of TACP.
[  OK  ] Started nvlog client logging service.
[  OK  ] Found device /sys/devices/virtual/net/mgbe2_0.200.
[  OK  ] Started WPA supplicant.
[  OK  ] Started Login Service.
[  OK  ] Reached target Network (Pre).
[  OK  ] Reached target Companion services for Nvidia Tegra.
         Starting startup for DUV3...
         Starting nvlog logging framework scripts execution...
         Starting Authorization Manager...
         Starting Network Service...
[  OK  ] Started startup for DUV3.
[  OK  ] Started nvlog logging framework scripts execution.
[  OK  ] Started Authorization Manager.
[  OK  ] Started Accounts Service.
[  OK  ] Started Network Service.
[  OK  ] Started Orin Fan control daemon.
         Starting Wait for Network …ed to WWW to be Configured....
         Starting Network Name Resolution...
[  OK  ] Started Disk Manager.
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
         Starting containerd container runtime...
[  OK  ] Started NVIDIA ist_client.
[  OK  ] Started NVIDIA MCC Daemon.
         Starting OpenBSD Secure Shell server...
[    5.108060] tegra_hv_vse_safety vse@15840000: Invalid response sequence
[  OK  ] Started OpenBSD Secure Shell server.
         Starting SSH Host Key regeneration...
[  OK  ] Finished SSH Host Key regeneration.
         Starting Check version of 3898 Switch Firmware...
[ INFO ] Skipped Check version of 3898 Switch Firmware.
[  OK  ] Started containerd container runtime.
[   12.508222] tegra_hv_vse_safety vse@15810000: tegra_hv_vse_safety_send_ivc_wait timeout
[   12.508231] tegra_hv_vse_safety vse@15810000: failed to send data over ivc err -110
[   15.292707] RTL8211F Gigabit Ethernet 2310000.ethernet:01: Downshift occurred from negotiated speed 1Gbps to actual speed 100Mbps, check cabling!
[   15.292741] IPv6: ADDRCONF(NETDEV_CHANGE): eqos_0: link becomes ready
[   15.293157] nvethernet 2310000.ethernet eqos_0: Link is Up - 100Mbps/Full (downshifted) - flow control off
[   15.324235] tegra_hv_vse_safety vse@15840000: tegra_hv_vse_safety_send_ivc_wait timeout
[   15.324242] tegra_hv_vse_safety vse@15840000: failed to send data over ivc err -110
[   15.324247] tegra_hv_vse_safety vse@15840000: tegra_hv_vse_safety_sha_send_one error -110
[   15.324251] tegra_hv_vse_safety vse@15840000: tegra_hv_vse_safety_sha_slow_path: failed to send one 8064
[   15.324255] tegra_hv_vse_safety vse@15840000: tegra_se_sha_update failed - -110
[   15.324257] tnvvse_crypto_sha_update(): Failed to ahash_update for sha512-vse: -110
[   15.324385] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000030
[   15.340522] Mem abort info:
[   15.340523] printk: console [ttyS2]: printing thread stopped
[   15.341079]   ESR = 0x0000000096000044
[   15.342123]   EC = 0x25: DABT (current EL), IL = 32 bits
[   15.343059]   SET = 0, FnV = 0
[   15.343582]   EA = 0, S1PTW = 0
[   15.344137]   FSC = 0x04: level 0 translation fault
[   15.344993] Data abort info:
[   15.345473]   ISV = 0, ISS = 0x00000044
[   15.346122]   CM = 0, WnR = 1
[   15.346641] user pgtable: 4k pages, 48-bit VAs, pgdp=000000012aae3000
[   15.347724] [0000000000000030] pgd=0000000000000000, p4d=0000000000000000
[   15.348963] Internal error: Oops: 96000044 [#1] PREEMPT_RT SMP
[   15.350042] Modules linked in: 8021q garp mrp nvidia_modeset(O) lan743x(O) tegra_pcie_dma_test(O) tegra_pcie_edma(O) tegra210_adma spidev snd_soc_tegra_virt_t210ref_pcm(O) snd_soc_tegra210_virt_alt_admaif(O) isc_mgr(O) cdi_mgr(O) isc_pwm(O) cdi_pwm(O) tegra_hv_vcpu_yield(O) tegra_hv_pm_ctl(O) isc_dev(O) cdi_dev(O) isc_gpio(O) cdi_gpio(O) tegra_fsicom(O) mttcan(O) lm90 tegra_uss_io_proxy(O) cam_fsync(O) phy_tegra194_p2u can_dev tegra_bpmp_thermal tegra_aconnect nvidia(O) watchdog_tegra_t18x(O) spi_tegra114 tegra_xudc tegra_dce(O) safety_i2s(O) tsecriscv(O) pcie_tegra194 nvhost_isp5(O) nvhost_vi5(O) nvhost_nvcsi_t194(O) tegra_camera(O) v4l2_dv_timings v4l2_fwnode v4l2_async bridge videobuf2_dma_contig nvhost_nvcsi(O) tegra_drm_next(O) tegra_camera_platform(O) mc_utils(O) stp capture_ivc(O) llc cec videobuf2_v4l2 cpuidle_tegra_auto(O) videobuf2_memops videobuf2_common camchar(O) camera_diagnostics(O) drm_kms_helper nvhost_pva(O) nvhost_nvdla(O) videodev debug(O) nvhwpm(O) mc drm
[   15.350101]  nvhost_capture(O) host1x_nvhost(O) tegra_camera_rtcpu(O) device_group(O) firmwares_class(O) reset_group(O) ivc_bus(O) hsp_mailbox_client(O) clk_group(O) nvgpu(O) tegra_gr_comm(O) nvmap(O) hvc_sysfs(O) tegra_nvvse_cryptodev(O) tegra_hv_vse_safety(O) host1x_fence(O) host1x_next(O) nvsciipc(O) userspace_ivc_mempool(O) ivc_cdev(O) ip_tables x_tables ipv6 nvme(E) nvme_core(E) oak_pci(OE) nvethernet(OE) pinctrl_tegra234(OE) nvpps(OE) tegra194_gte(OE) tegra_bpmp(OE) tegra_vblk(OE) tegra_hv_vblk_oops(OE) tegra_hv(OE) ivc_ext(OE)
[   15.374820] CPU: 11 PID: 1657 Comm: ist_client Tainted: G           OE     5.15.98-rt-tegra #1
[   15.376431] Hardware name: p3710-0010 (DT)
[   15.377196] pstate: 40400005 (nZcv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
[   15.378499] pc : 0xffff80000156b8d0
[   15.379163] lr : 0xffff80000156ae5c
[   15.379818] sp : ffff800013f9b5d0
[   15.380440] x29: ffff800013f9b5d0 x28: ffff0000a8955a00 x27: 0000000000000000
[   15.381775] x26: 0000000000000000 x25: 0000000000000000 x24: 0000000000000000
[   15.383104] x23: ffff000083c70c20 x22: ffff000083c70d50 x21: ffff0000a8955a00
[   15.384433] x20: ffff000094b3f980 x19: ffff000083c70c00 x18: 0000000000000000
[   15.385768] x17: 0000000000000000 x16: ffff800001569f90 x15: 0000ffffc0102438
[   15.387101] x14: 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
[   15.388438] x11: 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
[   15.389774] x8 : ffff000094b3fa00 x7 : 0000000000000000 x6 : ffff800013f9b688
[   15.391113] x5 : ffff800013f9b688 x4 : 0000000000000008 x3 : 0000000000000000
[   15.392447] x2 : 0000000000000008 x1 : 0000000000000000 x0 : 0000000000000000
[   15.393779] Call trace:
[   15.394236]  0xffff80000156b8d0
[   15.394826]  __arm64_sys_ioctl+0xbc/0x100
[   15.395582]  invoke_syscall+0x5c/0x150
[   15.396294]  el0_svc_common.constprop.0+0x64/0x120
[   15.397192]  do_el0_svc+0x3c/0xb0
[   15.397818]  el0_svc+0x20/0x70
[   15.398398]  el0t_64_sync_handler+0xc0/0xd0
[   15.399188]  el0t_64_sync+0x1a4/0x1a8
[   15.399877] Code: 95f4b644 f940aee0 91054276 f9400ee1 (b900301f) 
[   15.401013] ---[ end trace 0000000000000002 ]---
[   15.406564] tegra_hv_vblk_oops tegra_virt_storage31: vblk_oops_write invoked in atomic context..aborting
[   15.408359] Kernel panic - not syncing:
[   15.409075] Oops: Fatal exception
[   15.409113] SMP: stopping secondary CPUs
[   15.410490] Kernel Offset: disabled
[   15.411135] CPU features: 0x000001c1,21332e5a
[   15.411949] Memory Limit: none
[   15.416973] ---[ end Kernel panic - not syncing: Oops: Fatal exception ]---
��
Time taken from Error Reporting to SEH: 63 microseconds
DemoApp: ErrCode-0x2116 ReptrId-0xe04d ErrAttr-0x0
EPS TimeStamp: 0xf98b3cee

Thanks for support,

Kind regards,
Lucas

Dear @SivaRamaKrishnaNV ,

Which services or component should I restart when the pipeline crash ?
Currently I have to reboot the target.

Thanks for your Support !

Kind regards,
Lucas

Dear @lucas.lattion1 ,
Do you frequently see the application crashes? I notice you could run the sample using provided instructions from another topic.

Dear @SivaRamaKrishnaNV ,

Thanks for support !

I have open a new topic for my other issues: Run minipipeline with more than 2 camera

The solutions:

#######################RUN_PIPELINE_SOLUTION###########################
I managed to make the minipipeline sample work using the instructions in:

#######################RUN_PIPELINE_SOLUTION###########################

#######################REBOOT_SOLUTION###########################
// in case the machine boot failed:
sudo picocom -b 115200 /dev/ttyACM1
aurixreset

// reboot command line that doesn’t crash kernel:
sudo su
echo 1 > /sys/class/tegra_hv_pm_ctl/tegra_hv_pm_ctl/device/trigger_sys_reboot

thanks to @vincenzo.longobardi Failure during reboot from debug interface - #5 by VickNV
#######################REBOOT_SOLUTION###########################

Kind regards,
Lucas

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.