Add picocom package, move serial comm. stuff to its section in Config.in
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1187 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
80adf7c385
commit
40e074dd9c
|
@ -113,10 +113,13 @@ source "package/libusb/Config.in"
|
||||||
source "package/uclibc++/Config.in"
|
source "package/uclibc++/Config.in"
|
||||||
source "package/zlib/Config.in"
|
source "package/zlib/Config.in"
|
||||||
|
|
||||||
comment "Utilities ---"
|
comment "Serial communications & terminal emulation ---"
|
||||||
source "package/microcom/Config.in"
|
source "package/microcom/Config.in"
|
||||||
source "package/usbutils/Config.in" # lsusb
|
source "package/picocom/Config.in"
|
||||||
source "package/setserial/Config.in"
|
source "package/setserial/Config.in"
|
||||||
|
|
||||||
|
comment "Utilities ---"
|
||||||
|
source "package/usbutils/Config.in" # lsusb
|
||||||
source "package/strace/Config.in"
|
source "package/strace/Config.in"
|
||||||
|
|
||||||
# what are we going to do with both of you
|
# what are we going to do with both of you
|
||||||
|
|
|
@ -71,6 +71,7 @@ package-$(BR2_PACKAGE_OPENSWAN) += openswan
|
||||||
package-$(BR2_PACKAGE_OPENVPN) += openvpn
|
package-$(BR2_PACKAGE_OPENVPN) += openvpn
|
||||||
package-$(BR2_PACKAGE_OSIRIS) += osiris
|
package-$(BR2_PACKAGE_OSIRIS) += osiris
|
||||||
package-$(BR2_PACKAGE_PCRE) += pcre
|
package-$(BR2_PACKAGE_PCRE) += pcre
|
||||||
|
package-$(BR2_PACKAGE_PICOCOM) += picocom
|
||||||
package-$(BR2_PACKAGE_PMACCT) += pmacct
|
package-$(BR2_PACKAGE_PMACCT) += pmacct
|
||||||
package-$(BR2_PACKAGE_POPT) += popt
|
package-$(BR2_PACKAGE_POPT) += popt
|
||||||
package-$(BR2_PACKAGE_PORTMAP) += portmap
|
package-$(BR2_PACKAGE_PORTMAP) += portmap
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
config BR2_PACKAGE_PICOCOM
|
||||||
|
tristate "picocom - minimal dumb-terminal emulation program"
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
As its name suggests, picocom is a minimal dumb-terminal emulation
|
||||||
|
program. It is, in principle, very much like minicom, only it's pico
|
||||||
|
instead of mini! It was designed to serve as a simple, manual, modem
|
||||||
|
configuration, testing, and debugging tool. It has also served (quite
|
||||||
|
well) as a low-tech "terminal-window" to allow operator intervention
|
||||||
|
in PPP connection scripts. It could also prove useful in many other
|
||||||
|
similar tasks.
|
||||||
|
|
||||||
|
http://efault.net/npat/hacks/picocom/
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=picocom
|
||||||
|
PKG_VERSION:=1.4
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_MD5SUM:=08fcc5f6bb9e7676a2569386d5ea9f70
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=http://efault.net/npat/hacks/picocom/dist/
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
|
$(eval $(call PKG_template,PICOCOM,picocom,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.built:
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS) -L$(STAGING_DIR)/usr/lib" \
|
||||||
|
picocom
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(IPKG_PICOCOM):
|
||||||
|
install -d -m0755 $(IDIR_PICOCOM)/usr/bin
|
||||||
|
install -m0755 $(PKG_BUILD_DIR)/picocom $(IDIR_PICOCOM)/usr/bin/
|
||||||
|
$(RSTRIP) $(IDIR_PICOCOM)
|
||||||
|
$(IPKG_BUILD) $(IDIR_PICOCOM) $(PACKAGE_DIR)
|
|
@ -0,0 +1,6 @@
|
||||||
|
Package: picocom
|
||||||
|
Priority: optional
|
||||||
|
Section: console
|
||||||
|
Maintainer: bugs@openwrt.org
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/picocom/
|
||||||
|
Description: minimal dumb-terminal emulation program
|
Loading…
Reference in New Issue