summaryrefslogtreecommitdiff
path: root/meta-amd
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2023-04-12 12:19:32 +0300
committerPatrick Williams <patrick@stwcx.xyz>2023-04-14 00:07:41 +0300
commit65bf0eeda53b56f9c15f21903dac9edca0d62941 (patch)
treedf5c89ecaf00dd7353806fb7febd66dd3d4de8fa /meta-amd
parentc491ae271ed0b2ba61e68dfdc62cd99a66608953 (diff)
downloadopenbmc-65bf0eeda53b56f9c15f21903dac9edca0d62941.tar.xz
meta-amd: Change unit type of 'ip-to-fpga.service'
Currently with the 'oneshot' unit type the 'ip-to-fpga.service' is always in the 'running' state: ``` root@ethanolx:~# systemctl list-jobs JOB UNIT TYPE STATE 88 obmc-led-group-start@bmc_booted.service start waiting 1 multi-user.target start waiting 126 ip-to-fpga.service start running 3 jobs listed. ``` This creates a problem since 'srvcfg-manager' service expects every startup job to finish. Change unit type to 'simple' to fix the issue. Change-Id: I45840ef432ce33be400b547420ab5ceeca949ba0 Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'meta-amd')
-rw-r--r--meta-amd/recipes-amd/amd-fpga/files/ip-to-fpga.service2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-amd/recipes-amd/amd-fpga/files/ip-to-fpga.service b/meta-amd/recipes-amd/amd-fpga/files/ip-to-fpga.service
index 18fbca8ec9..2d12c68b85 100644
--- a/meta-amd/recipes-amd/amd-fpga/files/ip-to-fpga.service
+++ b/meta-amd/recipes-amd/amd-fpga/files/ip-to-fpga.service
@@ -4,7 +4,7 @@ BindsTo=sys-subsystem-net-devices-eth0.device
After=sys-subsystem-net-devices-eth0.device
[Service]
-Type=oneshot
+Type=simple
ExecStart=/usr/bin/ip-to-fpga.sh
[Install]