diff options
Diffstat (limited to 'package/p910nd')
-rw-r--r-- | package/p910nd/Config.in | 15 | ||||
-rw-r--r-- | package/p910nd/Makefile | 4 | ||||
-rw-r--r-- | package/p910nd/files/p910nd.init | 2 |
3 files changed, 4 insertions, 17 deletions
diff --git a/package/p910nd/Config.in b/package/p910nd/Config.in deleted file mode 100644 index dd4aab2e4..000000000 --- a/package/p910nd/Config.in +++ /dev/null @@ -1,15 +0,0 @@ -config ADK_PACKAGE_P910ND - prompt "p910nd............................ A small non-spooling printer server" - tristate - default n - help - p910nd is a small daemon that copies any data received on - the port it is listening on to the corresponding printer - port. It is primarily intended for diskless Linux hosts - running as printer drivers but there is no reason why it - could not be used on diskful hosts. Port 9100 is copied - to /dev/lp0, 9101 to /dev/lp1 and 9102 to /dev/lp2. The - default is port 9100 to /dev/lp0. - - http://www.etherboot.org/p910nd/ - diff --git a/package/p910nd/Makefile b/package/p910nd/Makefile index bbf315e2f..433f7dbe7 100644 --- a/package/p910nd/Makefile +++ b/package/p910nd/Makefile @@ -18,7 +18,9 @@ include ${TOPDIR}/mk/package.mk $(eval $(call PKG_template,P910ND,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) -BUILD_STYLE:= auto +CONFIG_STYLE:= manual +INSTALL_STYLE:= manual + MAKE_FLAGS+= ${TARGET_CONFIGURE_OPTS} \ CFLAGS="${TARGET_CFLAGS} -DLOCKFILE_DIR=\"\\\"/tmp\\\"\"" ALL_TARGET:= diff --git a/package/p910nd/files/p910nd.init b/package/p910nd/files/p910nd.init index 9d0c227a7..20e872c42 100644 --- a/package/p910nd/files/p910nd.init +++ b/package/p910nd/files/p910nd.init @@ -14,7 +14,7 @@ start) p910nd $p910nd_flags ;; stop) - killall p910nd + pkill p9100d ;; restart) sh $0 stop |