package: add statserial
Signed-off-by: Francis M. de P. Mendes <francis.mendes@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
c324cf05be
commit
aae534c504
@ -204,6 +204,7 @@ source "package/squashfs/Config.in"
|
||||
source "package/squashfs3/Config.in"
|
||||
source "package/sredird/Config.in"
|
||||
source "package/sshfs/Config.in"
|
||||
source "package/statserial/Config.in"
|
||||
source "package/sysstat/Config.in"
|
||||
source "package/udev/Config.in"
|
||||
source "package/usb_modeswitch/Config.in"
|
||||
|
11
package/statserial/Config.in
Normal file
11
package/statserial/Config.in
Normal file
@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_STATSERIAL
|
||||
bool "statserial"
|
||||
select BR2_PACKAGE_NCURSES
|
||||
help
|
||||
Displays a table of the signals on a standard
|
||||
9-pin or 25-pin serial port, and indicates the
|
||||
status of the handshaking lines. It can be
|
||||
useful for debugging problems with serial
|
||||
ports or modems.
|
||||
|
||||
https://sites.google.com/site/tranter/software
|
19
package/statserial/statserial.mk
Normal file
19
package/statserial/statserial.mk
Normal file
@ -0,0 +1,19 @@
|
||||
#############################################################
|
||||
#
|
||||
# statserial
|
||||
#
|
||||
#############################################################
|
||||
STATSERIAL_VERSION = 1.1
|
||||
STATSERIAL_SOURCE = statserial-$(STATSERIAL_VERSION).tar.gz
|
||||
STATSERIAL_SITE = http://www.ibiblio.org/pub/Linux/system/serial/
|
||||
STATSERIAL_DEPENDENCIES = ncurses
|
||||
|
||||
define STATSERIAL_BUILD_CMDS
|
||||
$(MAKE) CC="$(TARGET_CC)" LD="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" -C $(@D)
|
||||
endef
|
||||
|
||||
define STATSERIAL_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/statserial $(TARGET_DIR)/usr/bin/statserial
|
||||
endef
|
||||
|
||||
$(eval $(call GENTARGETS,package,statserial))
|
Loading…
Reference in New Issue
Block a user