diff --git a/ChangeLog b/ChangeLog index bc698f6ad4d..2762faf6655 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3859,4 +3859,6 @@ Fix a counting bug plus change interface to use either relative or absolut FLASH addressing (from Freddie Chopin). * libc/misc/Make.defs: Fix error in conditional for KBD CODEC. + * libc/Kconfig and configs/*/defconfig (several): The default + setting should be CONFIG_LIB_KBDCODEC=n diff --git a/configs/lm3s6965-ek/nsh/defconfig b/configs/lm3s6965-ek/nsh/defconfig index 1213797a77d..64f4397cb54 100755 --- a/configs/lm3s6965-ek/nsh/defconfig +++ b/configs/lm3s6965-ek/nsh/defconfig @@ -424,7 +424,7 @@ CONFIG_LIB_SENDFILE_BUFSIZE=512 # # Non-standard Helper Functions # -CONFIG_LIB_KBDCODEC=y +# CONFIG_LIB_KBDCODEC is not set # # Basic CXX Support diff --git a/configs/lm3s6965-ek/nx/defconfig b/configs/lm3s6965-ek/nx/defconfig index 7fca4d73578..be75c287559 100755 --- a/configs/lm3s6965-ek/nx/defconfig +++ b/configs/lm3s6965-ek/nx/defconfig @@ -431,7 +431,7 @@ CONFIG_LIB_SENDFILE_BUFSIZE=512 # # Non-standard Helper Functions # -CONFIG_LIB_KBDCODEC=y +# CONFIG_LIB_KBDCODEC is not set # # Basic CXX Support diff --git a/configs/lm3s6965-ek/ostest/defconfig b/configs/lm3s6965-ek/ostest/defconfig index abfdcc251fb..83e89a6ae77 100755 --- a/configs/lm3s6965-ek/ostest/defconfig +++ b/configs/lm3s6965-ek/ostest/defconfig @@ -363,7 +363,7 @@ CONFIG_LIB_SENDFILE_BUFSIZE=512 # # Non-standard Helper Functions # -CONFIG_LIB_KBDCODEC=y +# CONFIG_LIB_KBDCODEC is not set # # Basic CXX Support diff --git a/configs/mcu123-lpc214x/nsh/defconfig b/configs/mcu123-lpc214x/nsh/defconfig index 6ae163386aa..e065ef3fb22 100644 --- a/configs/mcu123-lpc214x/nsh/defconfig +++ b/configs/mcu123-lpc214x/nsh/defconfig @@ -381,7 +381,7 @@ CONFIG_LIB_SENDFILE_BUFSIZE=512 # # Non-standard Helper Functions # -CONFIG_LIB_KBDCODEC=y +# CONFIG_LIB_KBDCODEC is not set # # Basic CXX Support diff --git a/configs/sim/nxlines/defconfig b/configs/sim/nxlines/defconfig index c023af67439..c798b175fd1 100644 --- a/configs/sim/nxlines/defconfig +++ b/configs/sim/nxlines/defconfig @@ -347,7 +347,7 @@ CONFIG_LIB_SENDFILE_BUFSIZE=512 # # Non-standard Helper Functions # -CONFIG_LIB_KBDCODEC=y +# CONFIG_LIB_KBDCODEC is not set # # Basic CXX Support diff --git a/configs/zp214xpa/nsh/defconfig b/configs/zp214xpa/nsh/defconfig index 7c7d9d06cfa..7f8ddc19b92 100644 --- a/configs/zp214xpa/nsh/defconfig +++ b/configs/zp214xpa/nsh/defconfig @@ -358,7 +358,7 @@ CONFIG_LIB_SENDFILE_BUFSIZE=512 # # Non-standard Helper Functions # -CONFIG_LIB_KBDCODEC=y +# CONFIG_LIB_KBDCODEC is not set # # Basic CXX Support diff --git a/configs/zp214xpa/nxlines/defconfig b/configs/zp214xpa/nxlines/defconfig index 03a6bf72cd1..209b4a5e4f6 100644 --- a/configs/zp214xpa/nxlines/defconfig +++ b/configs/zp214xpa/nxlines/defconfig @@ -433,7 +433,7 @@ CONFIG_LIB_SENDFILE_BUFSIZE=512 # # Non-standard Helper Functions # -CONFIG_LIB_KBDCODEC=y +# CONFIG_LIB_KBDCODEC is not set # # Basic CXX Support diff --git a/libc/Kconfig b/libc/Kconfig index a5ff7fd4387..0ae56ac57e3 100644 --- a/libc/Kconfig +++ b/libc/Kconfig @@ -280,7 +280,7 @@ comment "Non-standard Helper Functions" config LIB_KBDCODEC bool "Keyboard CODEC" - default y + default n ---help--- In NuttX, a keyboard/keypad driver is simply a character driver that may have an (optional) encoding/decoding layer on the data returned