
Hi Tom,
I think this series (v2) is under review now, but I have noticed my big mistake in terms of the license.
In v2, I accidentally added GPL-2.0+ SPDX but it should have been ISC SPDX.
I'd like you to replace it with v3.
On Mon, 1 Sep 2014 19:57:37 +0900 Masahiro Yamada yamada.m@jp.panasonic.com wrote:
Kconfiglib is the flexible Python Kconfig parser and library created by Ulf Magnusson. (https://github.com/ulfalizer/Kconfiglib)
This commit imports kconfiglib.py from commit ce84c22e58fa59cb93679d4ead03c3cd1387965e, with ISC SPDX-License-Identifier.
Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com Signed-off-by: Ulf Magnusson ulfalizer@gmail.com Cc: Ulf Magnusson ulfalizer@gmail.com Cc: Wolfgang Denk wd@denx.de
Changes in v2:
- Newly added
tools/buildman/kconfiglib.py | 3799 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 3799 insertions(+) create mode 100644 tools/buildman/kconfiglib.py
diff --git a/tools/buildman/kconfiglib.py b/tools/buildman/kconfiglib.py new file mode 100644 index 0000000..31fd3c9 --- /dev/null +++ b/tools/buildman/kconfiglib.py @@ -0,0 +1,3799 @@ +# +# SPDX-License-Identifier: GPL-2.0+ +# +# Author: Ulf Magnusson +# https://github.com/ulfalizer/Kconfiglib
This should be
# SPDX-License-Identifier: ISC
Best Regards Masahiro Yamada