mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-25 14:33:29 +08:00
Add the picocom package
[Peter: fix Config.in help text indentation] Signed-off-by: Maxime Ripard <maxime@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
efb5aefbfe
commit
08540f43b6
@ -193,6 +193,7 @@ source "package/ntfs-3g/Config.in"
|
||||
source "package/ntfsprogs/Config.in"
|
||||
source "package/openocd/Config.in"
|
||||
source "package/pciutils/Config.in"
|
||||
source "package/picocom/Config.in"
|
||||
source "package/rng-tools/Config.in"
|
||||
source "package/sdparm/Config.in"
|
||||
source "package/setserial/Config.in"
|
||||
|
8
package/picocom/Config.in
Normal file
8
package/picocom/Config.in
Normal file
@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_PICOCOM
|
||||
bool "picocom"
|
||||
help
|
||||
picocom is a minimal dumb-terminal emulation program. It
|
||||
is, in principle, very much like minicom, only it's pico
|
||||
instead of mini!
|
||||
|
||||
http://code.google.com/p/picocom/
|
18
package/picocom/picocom.mk
Normal file
18
package/picocom/picocom.mk
Normal file
@ -0,0 +1,18 @@
|
||||
#############################################################
|
||||
#
|
||||
# picocom
|
||||
#
|
||||
#############################################################
|
||||
|
||||
PICOCOM_VERSION = 1.6
|
||||
PICOCOM_SITE = http://picocom.googlecode.com/files/
|
||||
|
||||
define PICOCOM_BUILD_CMDS
|
||||
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
||||
endef
|
||||
|
||||
define PICOCOM_INSTALL_TARGET_CMDS
|
||||
install -D -m 0755 $(@D)/picocom $(TARGET_DIR)/usr/bin/picocom
|
||||
endef
|
||||
|
||||
$(eval $(call GENTARGETS,package,picocom))
|
Loading…
Reference in New Issue
Block a user