initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
[PATCH] clear ixon termios flag on initialization
|
||||
|
||||
Otherwise ctrl-S/Q gets intercepted by the tty layer instead of
|
||||
handled by uemacs.
|
||||
|
||||
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
|
||||
diff --git a/posix.c b/posix.c
|
||||
index 97edd9f052b1..352c4712b689 100644
|
||||
--- a/posix.c
|
||||
+++ b/posix.c
|
||||
@@ -53,17 +53,17 @@ void ttopen(void)
|
||||
/*
|
||||
* base new settings on old ones - don't change things
|
||||
* we don't know about
|
||||
*/
|
||||
ntermios = otermios;
|
||||
|
||||
/* raw CR/NL etc input handling, but keep ISTRIP if we're on a 7-bit line */
|
||||
ntermios.c_iflag &= ~(IGNBRK | BRKINT | IGNPAR | PARMRK
|
||||
- | INPCK | INLCR | IGNCR | ICRNL);
|
||||
+ | INPCK | INLCR | IGNCR | ICRNL | IXON);
|
||||
|
||||
/* raw CR/NR etc output handling */
|
||||
ntermios.c_oflag &=
|
||||
~(OPOST | ONLCR | OLCUC | OCRNL | ONOCR | ONLRET);
|
||||
|
||||
/* No signal handling, no echo etc */
|
||||
ntermios.c_lflag &= ~(ISIG | ICANON | XCASE | ECHO | ECHOE | ECHOK
|
||||
| ECHONL | NOFLSH | TOSTOP | ECHOCTL |
|
||||
@@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_UEMACS
|
||||
bool "uemacs"
|
||||
select BR2_PACKAGE_NCURSES
|
||||
help
|
||||
A small emacs.
|
||||
|
||||
https://git.kernel.org/cgit/editors/uemacs/uemacs.git/
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 96e30247365bb27bd74c550b637f5b2ffd2978379872a32a840f6667cec5fa2a uemacs-1cdcf9df88144049750116e36fe20c8c39fa2517-br1.tar.gz
|
||||
sha256 6e2a4cf41ec8d4379c154923349733bc0d3935c6fa72c4337cf1bc137b98b90a README
|
||||
@@ -0,0 +1,24 @@
|
||||
################################################################################
|
||||
#
|
||||
# uemacs
|
||||
#
|
||||
################################################################################
|
||||
|
||||
UEMACS_VERSION = 1cdcf9df88144049750116e36fe20c8c39fa2517
|
||||
UEMACS_SITE = https://git.kernel.org/pub/scm/editors/uemacs/uemacs.git
|
||||
UEMACS_SITE_METHOD = git
|
||||
UEMACS_DEPENDENCIES = ncurses
|
||||
UEMACS_LICENSE = MicroEMACS copyright notice
|
||||
UEMACS_LICENSE_FILES = README
|
||||
|
||||
define UEMACS_BUILD_CMDS
|
||||
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
||||
CC="$(TARGET_CC)" DEFINES="-DAUTOCONF -DPOSIX -DUSG" \
|
||||
CFLAGS+="$(TARGET_CFLAGS) " LIBS="$(TARGET_CFLAGS) -lncurses"
|
||||
endef
|
||||
|
||||
define UEMACS_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 0755 -D $(@D)/em $(TARGET_DIR)/usr/bin/em
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user