initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
@@ -0,0 +1,16 @@
Link to libncurses instead of the legacy libcurses.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
diff -Nura statserial-1.1.orig/Makefile statserial-1.1/Makefile
--- statserial-1.1.orig/Makefile 2014-07-04 12:47:41.279440415 -0300
+++ statserial-1.1/Makefile 2014-07-04 12:47:47.948665740 -0300
@@ -10,7 +10,7 @@
LDFLAGS = -s -N
statserial: statserial.o
- $(LD) $(LDFLAGS) -o statserial statserial.o -lcurses
+ $(LD) $(LDFLAGS) -o statserial statserial.o -lncurses
statserial.o: statserial.c
$(CC) $(CFLAGS) -c statserial.c
+11
View 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
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 40cf3bd506852942aa98f468c90ed4ea66dbd343b93efacd40d617b55caf3967 statserial-1.1.tar.gz
sha256 91df39d1816bfb17a4dda2d3d2c83b1f6f2d38d53e53e41e8f97ad5ac46a0cad COPYING
+21
View File
@@ -0,0 +1,21 @@
################################################################################
#
# statserial
#
################################################################################
STATSERIAL_VERSION = 1.1
STATSERIAL_SITE = http://www.ibiblio.org/pub/Linux/system/serial
STATSERIAL_DEPENDENCIES = ncurses
STATSERIAL_LICENSE = GPL-2.0+
STATSERIAL_LICENSE_FILES = COPYING
define STATSERIAL_BUILD_CMDS
$(TARGET_MAKE_ENV) $(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 $(generic-package))