I have developed one OTA(Over The Air) manager which uses "swupdate" command internally to update the firmware. This swupdate is applied by "system()" function inside OTA manager code.
My binary is working as expected and "swupdate" command is working fine if I run my binary ota_manager directly from console.
I have created one systemctl service for my binary as below:
[Unit]
Description=OTA manager service
After=syslogd.service
[Service]
Type=simple
ExecStart=/usr/bin/ota_manager
[Install]
WantedBy=multi-user.target
If I run this service, swupdate command is always failing with error:
SWUPDATE failed [0] ERROR handlers/archive_handler.c : extract : 110 : archive_read_next_header(): Pathname can't be converted from UTF-8 to current locale
I am checking swupdate error but I don't think it is a swupdate issue as it is working fine if I apply the command manually on the console or I run ota_manager binary directly from the console. It is looking like systemctl is creating the issue.
I am using NXP IMX6ULL based custom hardware with hardknott version Yocto OS(5.10 kernel). Note: I have validated same with warrior version Yocto OS(4.19 kernel) and same code is working fine with systemctl service as well.
Do anyone has any pointers here?
Found root cause: