diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2017-03-22 11:16:00 +0100 |
---|---|---|
committer | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2017-04-07 14:42:11 +0200 |
commit | 8e759842280857d0b7fd2f18e246608fd56435e3 (patch) | |
tree | 6dc6b445567135d8f04f725c2cfe2d6df6cbb0f7 | |
parent | 322f8f1c13bc384103ded2ef3c47aa1f4cbfed2b (diff) |
opkg-configure: do not reload daemon configuration
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
-rw-r--r-- | recipes-devtools/opkg/opkg/opkg-configure.service | 17 | ||||
-rw-r--r-- | recipes-devtools/opkg/opkg_0.3.3.bbappend | 1 |
2 files changed, 18 insertions, 0 deletions
diff --git a/recipes-devtools/opkg/opkg/opkg-configure.service b/recipes-devtools/opkg/opkg/opkg-configure.service new file mode 100644 index 0000000..432c3dd --- /dev/null +++ b/recipes-devtools/opkg/opkg/opkg-configure.service @@ -0,0 +1,17 @@ +[Unit] +Description=Opkg first boot configure +DefaultDependencies=no +After=systemd-remount-fs.service systemd-tmpfiles-setup.service tmp.mount +Before=sysinit.target + +[Service] +Type=oneshot +EnvironmentFile=-@SYSCONFDIR@/default/postinst +ExecStart=-@BASE_BINDIR@/sh -c " if [ $POSTINST_LOGGING = '1' ]; then @BINDIR@/opkg configure > $LOGFILE 2>&1; else @BINDIR@/opkg configure; fi" +ExecStartPost=@BASE_BINDIR@/systemctl --no-reload disable opkg-configure.service +StandardOutput=syslog +RemainAfterExit=No + +[Install] +WantedBy=basic.target +WantedBy=sysinit.target diff --git a/recipes-devtools/opkg/opkg_0.3.3.bbappend b/recipes-devtools/opkg/opkg_0.3.3.bbappend new file mode 100644 index 0000000..49e7305 --- /dev/null +++ b/recipes-devtools/opkg/opkg_0.3.3.bbappend @@ -0,0 +1 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/opkg:" |