kconfig: fix menuconfig
"depends on" cannot use expressions as arguments, this statement didn't actually do anything for kconfiglib.py and caused an error with menuconfig. There's currently no way to depend on a system heap being present, however forthcoming patches move this feature away from using the system heap anyway. For now, if the user enables dynamic objects without defining a system heap, they will get a build error. Fixes #7266. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
33d87efda5
commit
de7f40acfb
1 changed files with 0 additions and 1 deletions
|
@ -110,7 +110,6 @@ config DYNAMIC_OBJECTS
|
||||||
bool "Allow kernel objects to be requested on system heap"
|
bool "Allow kernel objects to be requested on system heap"
|
||||||
default n
|
default n
|
||||||
depends on USERSPACE
|
depends on USERSPACE
|
||||||
depends on HEAP_MEM_POOL_SIZE > 0
|
|
||||||
help
|
help
|
||||||
Enabling this option allows for kernel objects to be requested from
|
Enabling this option allows for kernel objects to be requested from
|
||||||
the system heap, at a cost in performance and additional memory.
|
the system heap, at a cost in performance and additional memory.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue