diff options
author | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
---|---|---|
committer | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
commit | 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch) | |
tree | b9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/setserial |
Initial import
Diffstat (limited to 'package/setserial')
-rw-r--r-- | package/setserial/Config.in | 13 | ||||
-rw-r--r-- | package/setserial/Makefile | 25 | ||||
-rw-r--r-- | package/setserial/ipkg/setserial.control | 4 |
3 files changed, 42 insertions, 0 deletions
diff --git a/package/setserial/Config.in b/package/setserial/Config.in new file mode 100644 index 000000000..d243a9fee --- /dev/null +++ b/package/setserial/Config.in @@ -0,0 +1,13 @@ +config ADK_PACKAGE_SETSERIAL + prompt "setserial......................... Serial port configuration utility" + tristate + default n + help + setserial is a program designed to set and/or report the + configuration information associated with a serial port. This + information includes what I/O port and IRQ a particular + serial port is using, and whether or not the break key should + be interpreted as the Secure Attention Key, and so on. + + http://setserial.sourceforge.net/ + diff --git a/package/setserial/Makefile b/package/setserial/Makefile new file mode 100644 index 000000000..6f9c495e2 --- /dev/null +++ b/package/setserial/Makefile @@ -0,0 +1,25 @@ +# $Id$ +#- +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include ${TOPDIR}/rules.mk + +PKG_NAME:= setserial +PKG_VERSION:= 2.17 +PKG_RELEASE:= 2 +PKG_MD5SUM:= c4867d72c41564318e0107745eb7a0f2 +MASTER_SITES:= ${MASTER_SITE_SOURCEFORGE:=setserial/} + +include ${TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,SETSERIAL,setserial,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) + +CONFIGURE_STYLE:= gnu +BUILD_STYLE:= auto + +do-install: + ${INSTALL_DIR} ${IDIR_SETSERIAL}/usr/sbin + ${INSTALL_BIN} ${WRKBUILD}/setserial ${IDIR_SETSERIAL}/usr/sbin/ + +include ${TOPDIR}/mk/pkg-bottom.mk diff --git a/package/setserial/ipkg/setserial.control b/package/setserial/ipkg/setserial.control new file mode 100644 index 000000000..9a0860b58 --- /dev/null +++ b/package/setserial/ipkg/setserial.control @@ -0,0 +1,4 @@ +Package: setserial +Priority: optional +Section: console +Description: configuration utility for serial ports |