Przeglądaj źródła

[Libc] Disable ENV when disable DFS.

Bernard Xiong 6 lat temu
rodzic
commit
ad42abb933
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      components/libc/compilers/newlib/libc.c

+ 1 - 1
components/libc/compilers/newlib/libc.c

@@ -35,11 +35,11 @@ int libc_system_init(void)
         libc_stdio_set_console(dev_console->parent.name, O_WRONLY);
         libc_stdio_set_console(dev_console->parent.name, O_WRONLY);
     #endif
     #endif
     }
     }
-#endif
 
 
     /* set PATH and HOME */
     /* set PATH and HOME */
     putenv("PATH=/bin");
     putenv("PATH=/bin");
     putenv("HOME=/home");
     putenv("HOME=/home");
+#endif
 
 
 #if defined RT_USING_PTHREADS && !defined RT_USING_COMPONENTS_INIT
 #if defined RT_USING_PTHREADS && !defined RT_USING_COMPONENTS_INIT
     pthread_system_init();
     pthread_system_init();