mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
bump version to 2022.02.9
add miyoo_defconfig
This commit is contained in:
@@ -3,6 +3,8 @@ link readline directly to ncurses since it needs symbols from it
|
||||
upstream readline does this on purpose (no direct linking), but
|
||||
it doesn't make much sense in a Linux world
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
|
||||
--- a/support/shobj-conf
|
||||
+++ b/support/shobj-conf
|
||||
@@ -42,7 +42,7 @@
|
||||
@@ -7,3 +7,21 @@ config BR2_PACKAGE_READLINE
|
||||
as they are typed in.
|
||||
|
||||
https://tiswww.case.edu/php/chet/readline/rltop.html
|
||||
|
||||
config BR2_PACKAGE_READLINE_BRACKETED_PASTE
|
||||
bool "Enable bracketed paste"
|
||||
depends on BR2_PACKAGE_READLINE
|
||||
help
|
||||
Enable the "bracketed paste" feature in libreadline.
|
||||
|
||||
Bracketed paste is helpful for interactive sessions when
|
||||
one wants to prevent pasted text from being interpreted
|
||||
as typed-in commands. However, it also causes control
|
||||
characters to show up in the raw output of a (telnet)
|
||||
session. This can cause issues and throw off pattern
|
||||
matching if the session output is being captured for
|
||||
automated processing.
|
||||
|
||||
For further information on this feature and whether you
|
||||
may want it, see:
|
||||
https://cirw.in/blog/bracketed-paste
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461 readline-8.0.tar.gz
|
||||
# Locally calculated after checking pgp signature from
|
||||
# https://ftp.gnu.org/gnu/readline/readline-8.1.2.tar.gz.sig
|
||||
sha256 7589a2381a8419e68654a47623ce7dfcb756815c8fee726b98f90bf668af7bc6 readline-8.1.2.tar.gz
|
||||
|
||||
# Hash for license file
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
READLINE_VERSION = 8.0
|
||||
READLINE_VERSION = 8.1.2
|
||||
READLINE_SITE = $(BR2_GNU_MIRROR)/readline
|
||||
READLINE_INSTALL_STAGING = YES
|
||||
READLINE_DEPENDENCIES = ncurses host-autoconf
|
||||
@@ -14,6 +14,13 @@ READLINE_CONF_ENV = bash_cv_func_sigsetjmp=yes \
|
||||
READLINE_CONF_OPTS = --disable-install-examples
|
||||
READLINE_LICENSE = GPL-3.0+
|
||||
READLINE_LICENSE_FILES = COPYING
|
||||
READLINE_CPE_ID_VENDOR = gnu
|
||||
|
||||
ifeq ($(BR2_PACKAGE_READLINE_BRACKETED_PASTE),y)
|
||||
READLINE_CONF_OPTS += --enable-bracketed-paste-default
|
||||
else
|
||||
READLINE_CONF_OPTS += --disable-bracketed-paste-default
|
||||
endif
|
||||
|
||||
define READLINE_INSTALL_INPUTRC
|
||||
$(INSTALL) -D -m 644 package/readline/inputrc $(TARGET_DIR)/etc/inputrc
|
||||
|
||||
Reference in New Issue
Block a user