diff options
Diffstat (limited to 'nylon')
-rw-r--r-- | nylon/nylon-scripts_cvs.oe | 34 | ||||
-rw-r--r-- | nylon/nylon-statistics.oe | 0 |
2 files changed, 34 insertions, 0 deletions
diff --git a/nylon/nylon-scripts_cvs.oe b/nylon/nylon-scripts_cvs.oe index e69de29bb2..113470dbc6 100644 --- a/nylon/nylon-scripts_cvs.oe +++ b/nylon/nylon-scripts_cvs.oe @@ -0,0 +1,34 @@ +DESCRIPTION = "This package provides the mtx specific init and configuration scripts." +DEPENDS = "hostap-utils" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>" +LICENSE = "GPL" +PR = "r1" + +SRC_URI = "svn://meshcube.org/svn/scripts;module=${PN}" +S = "${WORKDIR}/${PN}" + +do_install() { + (cd ${S}; tar -c --exclude .svn -f - . ) | tar -C ${D} -xpf - +} + +pkg_postinst() { +#!/bin/sh +update-rc.d hostap defaults 15 +update-rc.d ipaliases defaults 16 +update-rc.d firewall defaults 20 +update-rc.d routing defaults 20 +update-rc.d dummydate start 50 S . stop 50 0 6 . +update-rc.d emergency-ip defaults 99 +} + +pkg_postrm() { +#!/bin/sh -e +update-rc.d ipaliases remove +update-rc.d firewall remove +update-rc.d hostap remove +update-rc.d routing remove +update-rc.d dummydate remove +update-rc.d emergency-ip remove +}
\ No newline at end of file diff --git a/nylon/nylon-statistics.oe b/nylon/nylon-statistics.oe new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/nylon/nylon-statistics.oe |