소스 검색

Add module feature in KConfig.

bernard 8 년 전
부모
커밋
53f042b44b
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 3
      src/KConfig

+ 4 - 3
src/KConfig

@@ -118,14 +118,11 @@ menu "Memory Management"
 
     if RT_USING_HEAP
 
-        choice USING_HEAP
-
         config RT_USING_SMALL_MEM
             bool "The memory management for small memory"
 
         config RT_USING_SLAB
             bool "Using SLAB memory management for large memory"
-        endchoice
 
     endif
 
@@ -153,4 +150,8 @@ menu "Kernel Device Object"
 
 endmenu
 
+config RT_USING_MODULE
+    bool "The dynamic module feature"
+    default n
+
 endmenu