diff options
author | 2013-09-03 10:22:54 -0700 | |
---|---|---|
committer | 2013-09-04 00:16:50 +0200 | |
commit | 2e20d072ae2ceef8d5b54022616c8f6bcd194e7f (patch) | |
tree | f65d89070c365309be77e2031d4c2253e2be5bec /package/netplug/netplug.mk | |
parent | e2b3d5909d909970c85cbc339e17dbfe09cb3197 (diff) | |
download | buildroot-2e20d072ae2ceef8d5b54022616c8f6bcd194e7f.tar.gz buildroot-2e20d072ae2ceef8d5b54022616c8f6bcd194e7f.tar.bz2 |
netplug: properly install init.d script.
Looks like this was lost in 20d4792e.
[Peter: use _INSTALL_INIT_SYSV, explicitly delete script on uninstall]
Signed-off-by: Peter Sanford <psanford@nearbuysystems.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/netplug/netplug.mk')
-rw-r--r-- | package/netplug/netplug.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/netplug/netplug.mk b/package/netplug/netplug.mk index fbc7a2d982..fdb1937b3a 100644 --- a/package/netplug/netplug.mk +++ b/package/netplug/netplug.mk @@ -16,10 +16,15 @@ define NETPLUG_INSTALL_TARGET_CMDS $(MAKE) DESTDIR=$(TARGET_DIR) -C $(@D) install endef +define NETPLUG_INSTALL_INIT_SYSV + $(INSTALL) -m 0755 -D package/netplug/S29netplug \ + $(TARGET_DIR)/etc/init.d/S29netplug +endef + define NETPLUG_UNINSTALL_TARGET_CMDS rm -f $(TARGET_DIR)/sbin/netplugd rm -rf $(TARGET_DIR)/etc/netplug* - rm -f $(TARGET_DIR)/etc/init.d/S*netplug + rm -f $(TARGET_DIR)/etc/init.d/S29netplug endef define NETPLUG_CLEAN_CMDS |