mirror of
https://github.com/apache/nuttx.git
synced 2026-06-05 07:12:54 +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
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user