Use kconfiglib from $IDF_PATH/tools/kconfig_new
This commit is contained in:
parent
76a240d758
commit
37fc00f848
1 changed files with 7 additions and 1 deletions
|
@ -29,7 +29,13 @@
|
|||
|
||||
|
||||
import os
|
||||
import kconfiglib
|
||||
import sys
|
||||
|
||||
try:
|
||||
from . import kconfiglib
|
||||
except Exception:
|
||||
sys.path.insert(0, os.path.dirname(os.path.realpath(__file__)))
|
||||
import kconfiglib
|
||||
|
||||
# Indentation to be used in the generated file
|
||||
INDENT = ' '
|
||||
|
|
Loading…
Reference in a new issue