opkg-configure.service 976 B

1234567891011121314151617
  1. [Unit]
  2. Description=Opkg first boot configure
  3. DefaultDependencies=no
  4. After=systemd-remount-fs.service systemd-tmpfiles-setup.service tmp.mount
  5. Before=sysinit.target
  6. [Service]
  7. Type=oneshot
  8. EnvironmentFile=-/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/etc/default/postinst
  9. ExecStart=-/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/bin/sh -c " if [ $POSTINST_LOGGING = '1' ]; then /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/opkg configure > $LOGFILE 2>&1; else /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/opkg configure; fi"
  10. ExecStartPost=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/bin/systemctl disable opkg-configure.service
  11. StandardOutput=syslog
  12. RemainAfterExit=No
  13. [Install]
  14. WantedBy=basic.target
  15. WantedBy=sysinit.target