mirror of
https://github.com/apache/nuttx.git
synced 2025-12-11 21:20:26 +08:00
Rename LIB_ to LIBC_ for all libc Kconfig
follow other libc component naming convention Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
committed by
Abdelatif Guettouche
parent
a3986eeba3
commit
5025fbef8d
@@ -193,7 +193,7 @@ Also sets the previous working directory environment variable
|
||||
``cd -`` sets the current working directory to the previous
|
||||
working directory ($OLDPWD). Equivalent to cd $OLDPWD.
|
||||
``cd`` or ``cd ~`` set the current working directory to the 'home' directory.
|
||||
The home directory can be configured by setting CONFIG_LIB_HOMEDIR
|
||||
The home directory can be configured by setting CONFIG_LIBC_HOMEDIR
|
||||
in the configuration file. The default home directory is /.
|
||||
``cd ..`` sets the current working directory to the parent directory.
|
||||
================== =====================================
|
||||
|
||||
@@ -180,7 +180,7 @@ Basic module management
|
||||
The ``filename`` field will be used
|
||||
in order to locate the module to be loaded from the file system.
|
||||
The filename must be the full, absolute path to the file to be executed
|
||||
unless ``CONFIG_LIB_ENVPATH`` is defined. In that case, filename may be
|
||||
unless ``CONFIG_LIBC_ENVPATH`` is defined. In that case, filename may be
|
||||
a relative path; a set of candidate absolute paths will be generated using
|
||||
the ``PATH`` environment variable and ``load_module()`` will attempt to load each
|
||||
file that is found at those absolute paths.
|
||||
|
||||
@@ -159,11 +159,11 @@ depend on internal, kernel-space facilities.
|
||||
|
||||
**Configuration Options**.
|
||||
|
||||
- ``CONFIG_LIB_USRWORK``. If CONFIG_LIB_USRWORK is also defined
|
||||
- ``CONFIG_LIBC_USRWORK``. If CONFIG_LIBC_USRWORK is also defined
|
||||
then the user-mode work queue will be enabled.
|
||||
- ``CONFIG_LIB_USRWORKPRIORITY``. The execution priority of the
|
||||
- ``CONFIG_LIBC_USRWORKPRIORITY``. The execution priority of the
|
||||
user-mode priority worker thread. Default: 100
|
||||
- ``CONFIG_LIB_USRWORKSTACKSIZE``. The stack size allocated for
|
||||
- ``CONFIG_LIBC_USRWORKSTACKSIZE``. The stack size allocated for
|
||||
the lower priority worker thread. Default: 2048.
|
||||
|
||||
|
||||
|
||||
@@ -405,7 +405,7 @@ Functions
|
||||
exits.
|
||||
|
||||
:param filename: The path to the program to be executed. If
|
||||
``CONFIG_LIB_ENVPATH`` is defined in the configuration, then this may
|
||||
``CONFIG_LIBC_ENVPATH`` is defined in the configuration, then this may
|
||||
be a relative path from the current working directory. Otherwise,
|
||||
``path`` must be the absolute path to the program.
|
||||
:param argv: A pointer to an array of string arguments. The end of the
|
||||
@@ -469,7 +469,7 @@ Functions
|
||||
task.
|
||||
|
||||
:param path: The path to the program to be executed. If
|
||||
``CONFIG_LIB_ENVPATH`` is defined in the configuration, then this may
|
||||
``CONFIG_LIBC_ENVPATH`` is defined in the configuration, then this may
|
||||
be a relative path from the current working directory. Otherwise,
|
||||
:param path: must be the absolute path to the program.
|
||||
|
||||
@@ -489,7 +489,7 @@ Functions
|
||||
information.
|
||||
|
||||
:param path: The path to the program to be executed. If
|
||||
``CONFIG_LIB_ENVPATH`` is defined in the configuration, then this may
|
||||
``CONFIG_LIBC_ENVPATH`` is defined in the configuration, then this may
|
||||
be a relative path from the current working directory. Otherwise,
|
||||
:param path: must be the absolute path to the program.
|
||||
|
||||
@@ -530,7 +530,7 @@ Functions
|
||||
variable PATH.
|
||||
|
||||
NOTE: NuttX provides only one implementation: If
|
||||
``CONFIG_LIB_ENVPATH`` is defined, then only ``posix_spawnp()``
|
||||
``CONFIG_LIBC_ENVPATH`` is defined, then only ``posix_spawnp()``
|
||||
behavior is supported; otherwise, only ``posix_spawn`` behavior is
|
||||
supported.
|
||||
|
||||
@@ -584,8 +584,8 @@ Functions
|
||||
**Assumptions/Limitations:**
|
||||
|
||||
- NuttX provides only ``posix_spawn()`` or ``posix_spawnp()`` behavior
|
||||
depending upon the setting of ``CONFIG_LIB_ENVPATH``: If
|
||||
``CONFIG_LIB_ENVPATH`` is defined, then only ``posix_spawnp()``
|
||||
depending upon the setting of ``CONFIG_LIBC_ENVPATH``: If
|
||||
``CONFIG_LIBC_ENVPATH`` is defined, then only ``posix_spawnp()``
|
||||
behavior is supported; otherwise, only ``posix_spawn()`` behavior is
|
||||
supported.
|
||||
- The ``envp`` argument is not used and the ``environ`` variable is not
|
||||
|
||||
@@ -19705,7 +19705,7 @@ Additional new features and extended functionality:
|
||||
stack info is very useful to find the backtrace From Xiang Xiao.
|
||||
- binfmt/ and libs/libc: Make exepath_*() more common: Move
|
||||
exepath_*() related code to libc/misc, rename exepath_ to envpath_,
|
||||
and rename BINFMT_EXEPATH to LIB_ENVPATH. From nchao.
|
||||
and rename BINFMT_EXEPATH to LIBC_ENVPATH. From nchao.
|
||||
- CLOCK: Support CLOCK_MONOTONIC in clock_getres.c. From Xiang Xiao.
|
||||
- Clock Timekeeping: Use clock_basetime() to initialize
|
||||
g_clock_wall_time to get the best initial RTC value and initialize
|
||||
@@ -22222,7 +22222,7 @@ Additional new features and extended functionality:
|
||||
- strsep(): Add strsep BSD/Linux function. From Xiang Xiao.
|
||||
- netdb: Hostname support no longer depends on CONFIG_NET since the
|
||||
host name is also useful in the non-network environment.
|
||||
CONFIG_NET_HOSTNAME changed to CONFIG_LIB_HOSTNAME. From Xiang Xiao.
|
||||
CONFIG_NET_HOSTNAME changed to CONFIG_LIBC_HOSTNAME. From Xiang Xiao.
|
||||
- netdb: Support the nameserver change notification then we can pass
|
||||
DNS info from server to client in usrsock case. From Xiang Xiao.
|
||||
- include/fixedmath.h: Add macros for conversion between types
|
||||
|
||||
@@ -15,7 +15,7 @@ if !BINFMT_DISABLE
|
||||
config PATH_INITIAL
|
||||
string "Initial PATH Value"
|
||||
default ""
|
||||
depends on LIB_ENVPATH
|
||||
depends on LIBC_ENVPATH
|
||||
---help---
|
||||
The initial value of the PATH variable. This is the colon-separated
|
||||
list of absolute paths. E.g., "/bin:/usr/bin:/sbin"
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
*
|
||||
* Input Parameters:
|
||||
* filename - The path to the program to be executed. If
|
||||
* CONFIG_LIB_ENVPATH is defined in the configuration, then
|
||||
* CONFIG_LIBC_ENVPATH is defined in the configuration, then
|
||||
* this may be a relative path from the current working
|
||||
* directory. Otherwise, path must be the absolute path to the
|
||||
* program.
|
||||
@@ -204,7 +204,7 @@ errout:
|
||||
*
|
||||
* Input Parameters:
|
||||
* filename - The path to the program to be executed. If
|
||||
* CONFIG_LIB_ENVPATH is defined in the configuration, then
|
||||
* CONFIG_LIBC_ENVPATH is defined in the configuration, then
|
||||
* this may be a relative path from the current working
|
||||
* directory. Otherwise, path must be the absolute path to the
|
||||
* program.
|
||||
|
||||
@@ -178,7 +178,7 @@ int load_module(FAR struct binary_s *bin, FAR const char *filename,
|
||||
* be loaded? Absolute paths start with '/'.
|
||||
*/
|
||||
|
||||
#ifdef CONFIG_LIB_ENVPATH
|
||||
#ifdef CONFIG_LIBC_ENVPATH
|
||||
if (filename[0] != '/')
|
||||
{
|
||||
FAR char *fullpath;
|
||||
|
||||
@@ -33,8 +33,8 @@ CONFIG_FS_PROCFS=y
|
||||
CONFIG_FS_PROCFS_REGISTER=y
|
||||
CONFIG_FS_ROMFS=y
|
||||
CONFIG_HAVE_CXX=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_PATH_INITIAL="/mnt/romfs"
|
||||
CONFIG_PREALLOC_TIMERS=4
|
||||
CONFIG_RAM_SIZE=1572864
|
||||
|
||||
@@ -31,9 +31,9 @@ CONFIG_FS_PROCFS=y
|
||||
CONFIG_FS_PROCFS_REGISTER=y
|
||||
CONFIG_FS_ROMFS=y
|
||||
CONFIG_HAVE_CXX=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_MODULE=y
|
||||
CONFIG_PATH_INITIAL="/mnt/romfs"
|
||||
CONFIG_PREALLOC_TIMERS=4
|
||||
|
||||
@@ -35,9 +35,9 @@ CONFIG_FS_PROCFS_REGISTER=y
|
||||
CONFIG_FS_ROMFS=y
|
||||
CONFIG_HAVE_CXX=y
|
||||
CONFIG_HAVE_CXXINITIALIZE=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_PATH_INITIAL="/mnt/romfs"
|
||||
CONFIG_PREALLOC_TIMERS=4
|
||||
CONFIG_RAM_SIZE=1572864
|
||||
|
||||
@@ -60,8 +60,8 @@ CONFIG_HAVE_CXX=y
|
||||
CONFIG_HAVE_CXXINITIALIZE=y
|
||||
CONFIG_I2C=y
|
||||
CONFIG_IOB_NBUFFERS=128
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_MEMCPY_VIK=y
|
||||
CONFIG_MEMSET_64BIT=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
|
||||
@@ -62,8 +62,8 @@ CONFIG_HAVE_CXX=y
|
||||
CONFIG_HAVE_CXXINITIALIZE=y
|
||||
CONFIG_I2C=y
|
||||
CONFIG_IOB_NBUFFERS=128
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_MEMCPY_VIK=y
|
||||
CONFIG_MEMSET_64BIT=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
|
||||
@@ -74,8 +74,8 @@ CONFIG_I2C=y
|
||||
CONFIG_LCD=y
|
||||
CONFIG_LCD_ILI9340=y
|
||||
CONFIG_LCD_ILI9340_IFACE0=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_MEMCPY_VIK=y
|
||||
CONFIG_MEMSET_64BIT=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
|
||||
@@ -77,8 +77,8 @@ CONFIG_I2C=y
|
||||
CONFIG_LCD=y
|
||||
CONFIG_LCD_ILI9340=y
|
||||
CONFIG_LCD_ILI9340_IFACE0=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_MEMCPY_VIK=y
|
||||
CONFIG_MEMSET_64BIT=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
|
||||
@@ -42,8 +42,8 @@ CONFIG_IMX6_UART1=y
|
||||
CONFIG_IMX_DDR_SIZE=1073741824
|
||||
CONFIG_IMX_ENET_NTXBUFFERS=1
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_NET=y
|
||||
CONFIG_NETDB_DNSCLIENT=y
|
||||
CONFIG_NETDB_DNSCLIENT_ENTRIES=4
|
||||
|
||||
@@ -42,8 +42,8 @@ CONFIG_IMX6_UART1=y
|
||||
CONFIG_IMX_DDR_SIZE=1073741824
|
||||
CONFIG_IMX_ENET_NTXBUFFERS=1
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_NET=y
|
||||
CONFIG_NETDB_DNSCLIENT=y
|
||||
CONFIG_NETDB_DNSCLIENT_ENTRIES=4
|
||||
|
||||
@@ -39,9 +39,9 @@ CONFIG_HAVE_CXXINITIALIZE=y
|
||||
CONFIG_IMX6_UART1=y
|
||||
CONFIG_IMX_DDR_SIZE=1073741824
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_PATH_INITIAL="/mnt/romfs"
|
||||
CONFIG_PL310_LOCKDOWN_BY_LINE=y
|
||||
CONFIG_PL310_LOCKDOWN_BY_MASTER=y
|
||||
|
||||
@@ -25,7 +25,7 @@ CONFIG_IDLETHREAD_STACKSIZE=2048
|
||||
CONFIG_IMXRT_ENET=y
|
||||
CONFIG_IMXRT_LPUART1=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_LIB_HOSTNAME="i.MXRT1050 EVK"
|
||||
CONFIG_LIBC_HOSTNAME="i.MXRT1050 EVK"
|
||||
CONFIG_LPUART1_SERIAL_CONSOLE=y
|
||||
CONFIG_NET=y
|
||||
CONFIG_NETDEV_STATISTICS=y
|
||||
|
||||
@@ -101,7 +101,7 @@ const struct userspace_s userspace locate_data(".userspace") =
|
||||
|
||||
/* User-space work queue support (declared in include/nuttx/wqueue.h) */
|
||||
|
||||
#ifdef CONFIG_LIB_USRWORK
|
||||
#ifdef CONFIG_LIBC_USRWORK
|
||||
.work_usrstart = work_usrstart,
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -26,7 +26,7 @@ CONFIG_IMXRT_ENET=y
|
||||
CONFIG_IMXRT_LPUART1=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_IOB_NBUFFERS=128
|
||||
CONFIG_LIB_HOSTNAME="i.MXRT1060 EVK"
|
||||
CONFIG_LIBC_HOSTNAME="i.MXRT1060 EVK"
|
||||
CONFIG_LPUART1_SERIAL_CONSOLE=y
|
||||
CONFIG_NET=y
|
||||
CONFIG_NETDB_DNSCLIENT=y
|
||||
|
||||
@@ -101,7 +101,7 @@ const struct userspace_s userspace locate_data(".userspace") =
|
||||
|
||||
/* User-space work queue support (declared in include/nuttx/wqueue.h) */
|
||||
|
||||
#ifdef CONFIG_LIB_USRWORK
|
||||
#ifdef CONFIG_LIBC_USRWORK
|
||||
.work_usrstart = work_usrstart,
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -26,7 +26,7 @@ CONFIG_IMXRT_ENET=y
|
||||
CONFIG_IMXRT_LPUART1=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_IOB_NBUFFERS=128
|
||||
CONFIG_LIB_HOSTNAME="i.MXRT1060 EVK"
|
||||
CONFIG_LIBC_HOSTNAME="i.MXRT1060 EVK"
|
||||
CONFIG_LPUART1_SERIAL_CONSOLE=y
|
||||
CONFIG_NET=y
|
||||
CONFIG_NETDB_DNSCLIENT=y
|
||||
|
||||
@@ -104,7 +104,7 @@ const struct userspace_s userspace locate_data(".userspace") =
|
||||
|
||||
/* User-space work queue support (declared in include/nuttx/wqueue.h) */
|
||||
|
||||
#ifdef CONFIG_LIB_USRWORK
|
||||
#ifdef CONFIG_LIBC_USRWORK
|
||||
.work_usrstart = work_usrstart,
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -28,7 +28,7 @@ CONFIG_IMXRT_ENET=y
|
||||
CONFIG_IMXRT_LPUART1=y
|
||||
CONFIG_IMXRT_USBDEV=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_LIB_HOSTNAME="Teensy 4.x"
|
||||
CONFIG_LIBC_HOSTNAME="Teensy 4.x"
|
||||
CONFIG_NET=y
|
||||
CONFIG_NETDB_DNSCLIENT=y
|
||||
CONFIG_NETDEV_STATISTICS=y
|
||||
|
||||
@@ -68,10 +68,10 @@ CONFIG_LCD_FRAMEBUFFER=y
|
||||
CONFIG_LCD_PORTRAIT=y
|
||||
CONFIG_LCD_ST7789=y
|
||||
CONFIG_LIBC_DLFCN=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIBC_HOSTNAME="Teensy 4.x"
|
||||
CONFIG_LIBC_STRERROR=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_LIB_HOSTNAME="Teensy 4.x"
|
||||
CONFIG_LPUART1_SERIAL_CONSOLE=y
|
||||
CONFIG_NET=y
|
||||
CONFIG_NETDB_DNSCLIENT=y
|
||||
|
||||
@@ -104,7 +104,7 @@ const struct userspace_s userspace locate_data(".userspace") =
|
||||
|
||||
/* User-space work queue support (declared in include/nuttx/wqueue.h) */
|
||||
|
||||
#ifdef CONFIG_LIB_USRWORK
|
||||
#ifdef CONFIG_LIBC_USRWORK
|
||||
.work_usrstart = work_usrstart,
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -25,7 +25,7 @@ CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_KINETIS_ENET=y
|
||||
CONFIG_KINETIS_ENET_MDIOPULLUP=y
|
||||
CONFIG_KINETIS_UART0=y
|
||||
CONFIG_LIB_HOSTNAME="Freedom-K64F"
|
||||
CONFIG_LIBC_HOSTNAME="Freedom-K64F"
|
||||
CONFIG_MOTOROLA_SREC=y
|
||||
CONFIG_NETDB_DNSCLIENT=y
|
||||
CONFIG_NETDEV_PHY_IOCTL=y
|
||||
|
||||
@@ -35,7 +35,7 @@ CONFIG_KINETIS_PORTAINTS=y
|
||||
CONFIG_KINETIS_PORTDINTS=y
|
||||
CONFIG_KINETIS_UART1=y
|
||||
CONFIG_KINETIS_UART4=y
|
||||
CONFIG_LIB_HOSTNAME="Freedom-K66F"
|
||||
CONFIG_LIBC_HOSTNAME="Freedom-K66F"
|
||||
CONFIG_NETDB_DNSCLIENT=y
|
||||
CONFIG_NETDEV_PHY_IOCTL=y
|
||||
CONFIG_NETDEV_STATISTICS=y
|
||||
|
||||
@@ -26,7 +26,7 @@ CONFIG_KINETIS_GPIOIRQ=y
|
||||
CONFIG_KINETIS_PORTBINTS=y
|
||||
CONFIG_KINETIS_SDHC=y
|
||||
CONFIG_KINETIS_UART1=y
|
||||
CONFIG_LIB_HOSTNAME="TWRK64"
|
||||
CONFIG_LIBC_HOSTNAME="TWRK64"
|
||||
CONFIG_MMCSD=y
|
||||
CONFIG_MMCSD_SDIO=y
|
||||
CONFIG_NETINIT_DRIPADDR=0xc0a800fe
|
||||
|
||||
@@ -63,8 +63,8 @@ CONFIG_LC823450_SPI_DMA=y
|
||||
CONFIG_LC823450_UART0=y
|
||||
CONFIG_LCD=y
|
||||
CONFIG_LCD_ST7565=y
|
||||
CONFIG_LIBC_KBDCODEC=y
|
||||
CONFIG_LIBM=y
|
||||
CONFIG_LIB_KBDCODEC=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
CONFIG_MQ_MAXMSGSIZE=64
|
||||
CONFIG_MTD=y
|
||||
|
||||
@@ -70,8 +70,8 @@ CONFIG_LC823450_UART1=y
|
||||
CONFIG_LC823450_XGEVK_BTPOWER=y
|
||||
CONFIG_LCD=y
|
||||
CONFIG_LCD_ST7565=y
|
||||
CONFIG_LIBC_KBDCODEC=y
|
||||
CONFIG_LIBM=y
|
||||
CONFIG_LIB_KBDCODEC=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
CONFIG_MQ_MAXMSGSIZE=64
|
||||
CONFIG_MTD=y
|
||||
|
||||
@@ -31,10 +31,10 @@ CONFIG_FS_ROMFS=y
|
||||
CONFIG_HAVE_CXX=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_LC823450_UART0=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_KBDCODEC=y
|
||||
CONFIG_LIBM=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_LIB_KBDCODEC=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
CONFIG_NAME_MAX=765
|
||||
CONFIG_NETUTILS_CODECS=y
|
||||
|
||||
@@ -45,8 +45,8 @@ CONFIG_LC823450_UART0=y
|
||||
CONFIG_LC823450_WDT=y
|
||||
CONFIG_LCD=y
|
||||
CONFIG_LCD_ST7565=y
|
||||
CONFIG_LIBC_KBDCODEC=y
|
||||
CONFIG_LIBM=y
|
||||
CONFIG_LIB_KBDCODEC=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
CONFIG_MQ_MAXMSGSIZE=64
|
||||
CONFIG_NAME_MAX=765
|
||||
|
||||
@@ -74,10 +74,10 @@ CONFIG_LC823450_SPI_DMA=y
|
||||
CONFIG_LC823450_UART0=y
|
||||
CONFIG_LCD=y
|
||||
CONFIG_LCD_ST7565=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIBC_KBDCODEC=y
|
||||
CONFIG_LIBM=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_LIB_KBDCODEC=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
CONFIG_MQ_MAXMSGSIZE=64
|
||||
CONFIG_MTD=y
|
||||
|
||||
@@ -50,8 +50,8 @@ CONFIG_LC823450_UART0=y
|
||||
CONFIG_LC823450_WDT=y
|
||||
CONFIG_LCD=y
|
||||
CONFIG_LCD_ST7565=y
|
||||
CONFIG_LIBC_KBDCODEC=y
|
||||
CONFIG_LIBM=y
|
||||
CONFIG_LIB_KBDCODEC=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
CONFIG_MQ_MAXMSGSIZE=64
|
||||
CONFIG_NAME_MAX=765
|
||||
|
||||
@@ -29,11 +29,11 @@ CONFIG_FS_PROCFS=y
|
||||
CONFIG_FS_ROMFS=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_LC823450_UART0=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIBC_KBDCODEC=y
|
||||
CONFIG_LIBM=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_LIB_KBDCODEC=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
CONFIG_NAME_MAX=765
|
||||
CONFIG_NETUTILS_CODECS=y
|
||||
|
||||
@@ -70,10 +70,10 @@ CONFIG_LC823450_SPI_DMA=y
|
||||
CONFIG_LC823450_UART0=y
|
||||
CONFIG_LCD=y
|
||||
CONFIG_LCD_ST7565=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_EXECFUNCS=y
|
||||
CONFIG_LIBC_KBDCODEC=y
|
||||
CONFIG_LIBM=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_LIB_KBDCODEC=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
CONFIG_MQ_MAXMSGSIZE=64
|
||||
CONFIG_MTD=y
|
||||
|
||||
@@ -59,8 +59,8 @@ CONFIG_LC823450_UART1=y
|
||||
CONFIG_LC823450_WDT=y
|
||||
CONFIG_LCD=y
|
||||
CONFIG_LCD_ST7565=y
|
||||
CONFIG_LIBC_KBDCODEC=y
|
||||
CONFIG_LIBM=y
|
||||
CONFIG_LIB_KBDCODEC=y
|
||||
CONFIG_MEMSET_OPTSPEED=y
|
||||
CONFIG_MQ_MAXMSGSIZE=64
|
||||
CONFIG_MTD=y
|
||||
|
||||
@@ -102,7 +102,7 @@ const struct userspace_s userspace locate_data(".userspace") =
|
||||
|
||||
/* User-space work queue support (declared in include/nuttx/wqueue.h) */
|
||||
|
||||
#ifdef CONFIG_LIB_USRWORK
|
||||
#ifdef CONFIG_LIBC_USRWORK
|
||||
.work_usrstart = work_usrstart,
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -101,7 +101,7 @@ const struct userspace_s userspace locate_data(".userspace") =
|
||||
|
||||
/* User-space work queue support (declared in include/nuttx/wqueue.h) */
|
||||
|
||||
#ifdef CONFIG_LIB_USRWORK
|
||||
#ifdef CONFIG_LIBC_USRWORK
|
||||
.work_usrstart = work_usrstart,
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -101,7 +101,7 @@ const struct userspace_s userspace locate_data(".userspace") =
|
||||
|
||||
/* User-space work queue support (declared in include/nuttx/wqueue.h) */
|
||||
|
||||
#ifdef CONFIG_LIB_USRWORK
|
||||
#ifdef CONFIG_LIBC_USRWORK
|
||||
.work_usrstart = work_usrstart,
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -65,8 +65,8 @@ CONFIG_FS_UNIONFS=y
|
||||
CONFIG_I2C=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_LIBC_DLFCN=y
|
||||
CONFIG_LIBC_ENVPATH=y
|
||||
CONFIG_LIBC_STRERROR=y
|
||||
CONFIG_LIB_ENVPATH=y
|
||||
CONFIG_LPC17_40_CAN2=y
|
||||
CONFIG_LPC17_40_CAN2_BAUD=1000000
|
||||
CONFIG_LPC17_40_CAN2_DIVISOR=2
|
||||
|
||||
@@ -101,7 +101,7 @@ const struct userspace_s userspace locate_data(".userspace") =
|
||||
|
||||
/* User-space work queue support (declared in include/nuttx/wqueue.h) */
|
||||
|
||||
#ifdef CONFIG_LIB_USRWORK
|
||||
#ifdef CONFIG_LIBC_USRWORK
|
||||
.work_usrstart = work_usrstart,
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -101,7 +101,7 @@ const struct userspace_s userspace locate_data(".userspace") =
|
||||
|
||||
/* User-space work queue support (declared in include/nuttx/wqueue.h) */
|
||||
|
||||
#ifdef CONFIG_LIB_USRWORK
|
||||
#ifdef CONFIG_LIBC_USRWORK
|
||||
.work_usrstart = work_usrstart,
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -34,9 +34,9 @@ CONFIG_FS_FAT=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_IOB_NBUFFERS=24
|
||||
CONFIG_LIBC_HOSTNAME="c027"
|
||||
CONFIG_LIBC_STRERROR=y
|
||||
CONFIG_LIBC_STRERROR_SHORT=y
|
||||
CONFIG_LIB_HOSTNAME="c027"
|
||||
CONFIG_LPC17_40_EMACRAM_SIZE=7296
|
||||
CONFIG_LPC17_40_ETHERNET=y
|
||||
CONFIG_LPC17_40_ETH_NRXDESC=6
|
||||
|
||||
@@ -18,8 +18,8 @@ CONFIG_BOARD_LOOPSPERMSEC=18535
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISCOVER_DESCR="BAMBINO"
|
||||
CONFIG_FS_PROCFS=y
|
||||
CONFIG_LIBC_HOSTNAME="Bambino-200E"
|
||||
CONFIG_LIBM=y
|
||||
CONFIG_LIB_HOSTNAME="Bambino-200E"
|
||||
CONFIG_LPC43_BOOT_SPIFI=y
|
||||
CONFIG_LPC43_ETHERNET=y
|
||||
CONFIG_LPC43_PHYADDR=0
|
||||
|
||||
@@ -102,7 +102,7 @@ const struct userspace_s userspace locate_data(".userspace") =
|
||||
|
||||
/* User-space work queue support (declared in include/nuttx/wqueue.h) */
|
||||
|
||||
#ifdef CONFIG_LIB_USRWORK
|
||||
#ifdef CONFIG_LIBC_USRWORK
|
||||
.work_usrstart = work_usrstart,
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -23,7 +23,7 @@ CONFIG_FS_PROCFS=y
|
||||
CONFIG_INPUT=y
|
||||
CONFIG_INPUT_BUTTONS=y
|
||||
CONFIG_INPUT_BUTTONS_LOWER=y
|
||||
CONFIG_LIB_HOSTNAME="LpcXpresso-Lpc54628"
|
||||
CONFIG_LIBC_HOSTNAME="LpcXpresso-Lpc54628"
|
||||
CONFIG_LPC54_EMC=y
|
||||
CONFIG_LPC54_EMC_DYNAMIC_CS0=y
|
||||
CONFIG_LPC54_EMC_DYNAMIC_CS0_SIZE=0x01000000
|
||||
|
||||
@@ -31,7 +31,7 @@ CONFIG_HAVE_CXX=y
|
||||
CONFIG_HAVE_CXXINITIALIZE=y
|
||||
CONFIG_INPUT=y
|
||||
CONFIG_INPUT_FT5X06=y
|
||||
CONFIG_LIB_HOSTNAME="LPCXpresso-LPC54628"
|
||||
CONFIG_LIBC_HOSTNAME="LPCXpresso-LPC54628"
|
||||
CONFIG_LPC54_EMC=y
|
||||
CONFIG_LPC54_EMC_DYNAMIC_CS0=y
|
||||
CONFIG_LPC54_EMC_DYNAMIC_CS0_OFFSET=0x00080000
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user