Commit c324cf05 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

package: add sredird

parent e446aa07
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -202,6 +202,7 @@ endif
source "package/smartmontools/Config.in"
source "package/squashfs/Config.in"
source "package/squashfs3/Config.in"
source "package/sredird/Config.in"
source "package/sshfs/Config.in"
source "package/sysstat/Config.in"
source "package/udev/Config.in"
+6 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_SREDIRD
	bool "sredird"
	help
	  Sredird is a serial port redirector that is compliant with
	  the RFC 2217 "Telnet Com Port Control Option" protocol. This
	  protocol lets you share a serial port through the network.
+27 −0
Original line number Diff line number Diff line
#############################################################
#
# sredird
#
#############################################################

SREDIRD_VERSION = 2.2.1-1.1
SREDIRD_SOURCE = sredird_$(SREDIRD_VERSION).tar.gz
SREDIRD_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/s/sredird

define SREDIRD_BUILD_CMDS
	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef

define SREDIRD_INSTALL_TARGET_CMDS
	$(INSTALL) -D -m 0755 $(@D)/sredird $(TARGET_DIR)/usr/sbin/sredird
endef

define SREDIRD_UNINSTALL_TARGET_CMDS
	rm -f $(TARGET_DIR)/usr/sbin/sredird
endef

define SREDIRD_CLEAN_CMDS
	rm -f $(@D)/sredird
endef

$(eval $(call GENTARGETS,package,sredird))