Use kconfiglib from $IDF_PATH/tools/kconfig_new

This commit is contained in:
Roland Dobai
2019-09-11 11:18:18 +02:00
parent 76a240d758
commit 37fc00f848

View File

@@ -29,7 +29,13 @@
import os 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 # Indentation to be used in the generated file
INDENT = ' ' INDENT = ' '