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:
Xiang Xiao
2021-08-01 15:27:08 +08:00
committed by Abdelatif Guettouche
parent a3986eeba3
commit 5025fbef8d
222 changed files with 327 additions and 327 deletions
+1 -1
View File
@@ -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"
+2 -2
View File
@@ -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.
+1 -1
View File
@@ -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;