<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Arial,Helvetica,sans-serif;">
<p>Hi OpenWRT team,</p>
<p><br>
</p>
<p>I am building trunk OpenWRT version on Debian Testing. When installing the fuse package on the target rootfs, the following makefile rule is called :</p>
<p></p>
<div>install-exec-local:<br>
    $(MKDIR_P) $(DESTDIR)$(MOUNT_FUSE_PATH)<br>
    $(INSTALL_PROGRAM) $(builddir)/mount.fuse $(DESTDIR)$(MOUNT_FUSE_PATH)/mount.fuse<br>
    $(MKDIR_P) $(DESTDIR)$(INIT_D_PATH)<br>
    $(INSTALL_SCRIPT) $(srcdir)/init_script $(DESTDIR)$(INIT_D_PATH)/fuse</div>
<div>    @if test -x /usr/sbin/update-rc.d; then \<br>
        echo "/usr/sbin/update-rc.d fuse start 34 S . start 41 0 6 . || true"; \<br>
        /usr/sbin/update-rc.d fuse start 34 S . start 41 0 6 . || true; \<br>
    fi<br>
<br>
This rule calls update-rc.d on the host machine, trying to install the init.d service, whereas we just want to copy some files to the rootfs. On Debian Testing, this triggers a window telling that systemd wants to reload.<br>
The provided patch removes the update-rc.d call. I don't think there is any side effect due to these lines removal.<br>
<br>
It's my first post to OpenWRT mailing list, I'm not sure I followed all rules. Tell me if something is wrong or if the patch is useless.<br>
<br>
Regards,<br>
Adrien<br>
</div>
<br>
<p></p>
</div>
</body>
</html>