mirror of
https://xff.cz/git/u-boot/
synced 2025-09-30 06:51:28 +02:00
fdt: Rename existing python libfdt module
Now that this module has been accepted upstream we should stop using the local U-Boot one. In preparation for this, rename it to indicate it is for legacy use. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -22,17 +22,17 @@ else:
|
||||
cflags = None
|
||||
|
||||
libfdt_module = Extension(
|
||||
'_libfdt',
|
||||
'_libfdt_legacy',
|
||||
sources = files,
|
||||
extra_compile_args = cflags
|
||||
)
|
||||
|
||||
sys.argv = [progname, '--quiet', 'build_ext', '--inplace', '--force']
|
||||
|
||||
setup (name = 'libfdt',
|
||||
setup (name = 'libfdt_legaacy',
|
||||
version = '0.1',
|
||||
author = "SWIG Docs",
|
||||
description = """Simple swig libfdt from docs""",
|
||||
ext_modules = [libfdt_module],
|
||||
py_modules = ["libfdt"],
|
||||
py_modules = ["libfdt_legacy"],
|
||||
)
|
||||
|
Reference in New Issue
Block a user