我有一个问题,需要很长时间来解释,所以我要把它分解为有趣的部分。我尝试使用kconfiglib.py解析一些kconfigs。这是我的代码(config.in
)
[intro_code]
source "b.in"
我的代码完全按照[intro_code]的要求进行操作。我不确定source
是否是python关键字,但它是关于输入/包含不同的文件(此处名称为b.in
,与执行的脚本位于同一文件夹中)
错误消息:现在,在运行脚本时,会出现以下错误消息:
IOError: config.in:51: sourced file "b.in" (expands to
"b.in") not found. Perhaps base_dir
(argument to Config.__init__(), currently
"$srctree") is set to the wrong value.
我要解决的问题:我尝试将工作目录更改为Sourcecodes
(config.in
和b.in
所在的位置) config.in
:
os.chdir("/home/fedor/Sourcecodes")
retval = os.getcwd()
print "Directory changed successfully %s" % retval
在执行期间返回:
目录已成功更改/ home / fedor / Sourcecodes
因此该目录似乎没问题,但无论如何都会出现相同的错误消息。
正在使用:使用b.in
的绝对路径(如source "/home/fedor/Sourcecodes/b.in")
然后它正在运行,但这不是我可以使用该脚本的方式。
有人知道如何告诉python查看与执行脚本相同的目录吗?
[编辑:]如愿,完整代码:
我致电python /home/fedor/Sourcecodes/Kconfiglib/examples/print_tree.py /home/fedor/Sourcecodes/config.in
来自kconfiglib-examples的print_tree.py
:
# Prints a tree of all items in the configuration
import kconfiglib
import sys
import os
os.chdir("/home/fedor/BR1311")
retval = os.getcwd()
print "Directory changed successfully %s" % retval
def print_with_indent(s, indent):
print (" " * indent) + s
def print_items(items, indent):
for item in items:
if item.is_symbol():
print_with_indent("config {0}".format(item.get_name()), indent)
elif item.is_menu():
print_with_indent('menu "{0}"'.format(item.get_title()), indent)
print_items(item.get_items(), indent + 2)
elif item.is_choice():
print_with_indent('choice', indent)
print_items(item.get_items(), indent + 2)
elif item.is_comment():
print_with_indent('comment "{0}"'.format(item.get_text()), indent)
conf = kconfiglib.Config(sys.argv[1])
print_items(conf.get_top_level_items(), 0)
config.in
menu "Audio and video applications"
config BR2_PACKAGE_WIPE
bool "wipe"
help
Wipe is a little command for securely erasing files
from magnetic media. It compiles under various unix platforms.
http://wipe.sourceforge.net
config BR2_PACKAGE_BONNIE
bool "bonnie++"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_USE_MMU # fork()
help
Filesystem tester
http://www.coker.com.au/bonnie++/
comment "bonnie++ needs a toolchain w/ C++"
depends on BR2_USE_MMU
depends on !BR2_INSTALL_LIBSTDCPP
endmenu
source "b.in"
和b.in
(与config.in
完全相同,但最后缺少source
命令):
menu "Audio and video applications"
config BR2_PACKAGE_WIPE
bool "wipe"
help
Wipe is a little command for securely erasing files
from magnetic media. It compiles under various unix platforms.
http://wipe.sourceforge.net
config BR2_PACKAGE_BONNIE
bool "bonnie++"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_USE_MMU # fork()
help
Filesystem tester
http://www.coker.com.au/bonnie++/
comment "bonnie++ needs a toolchain w/ C++"
depends on BR2_USE_MMU
depends on !BR2_INSTALL_LIBSTDCPP
endmenu
答案 0 :(得分:1)
答案就在您发布的错误消息中:
Perhaps base_dir (argument to Config.__init__(), currently "$srctree")
is set to the wrong value.
查看github上的source,__init__
类的Config
采用多个参数,均为默认值。
def __init__(self,
filename = "Kconfig",
base_dir = "$srctree",
print_warnings = True,
print_undef_assign = False):
...在类的docstring中,解释了base_dir
参数:
base_dir (default: "$srctree") -- The base directory relative to which
'source' statements within Kconfig files will work. For the
Linux kernel this should be the top-level directory of the
kernel tree. $-references to environment variables will be
expanded.
The environment variable 'srctree' is set by the Linux makefiles
to the top-level kernel directory. A default of "." would not
work if an alternative build directory is used.
我怀疑如果您将'/home/fedor/BR1311'
传递给此__init__
而不是更改为它,例如:
conf = kconfiglib.Config(sys.argv[1], '/home/fedor/BR1311')
事情会好得多。