[U-Boot] Kconfiglib documentation generation

2018-07-11 Thread Ulf Magnusson
Hello, Just as an FYI, Kconfiglib 2 (https://github.com/ulfalizer/kconfiglib) can generate nice Kconfig docs. See http://docs.zephyrproject.org/reference/kconfig/index.html for example output (warning: heavy page, lots of symbols). The script that generates the RST output for those docs is at htt

Re: [U-Boot] [PATCH] arm64: zynqmp: Fix misspelled choice default

2018-01-30 Thread Ulf Magnusson
On Tue, Jan 30, 2018 at 2:58 PM, Michal Simek wrote: > On 30.1.2018 14:38, Ulf Magnusson wrote: >> On Tue, Jan 30, 2018 at 2:25 PM, Michal Simek >> wrote: >>> On 30.1.2018 14:02, Ulf Magnusson wrote: >>>> There is no JTAG symbol in the "Boot mode"

Re: [U-Boot] [PATCH] arm64: zynqmp: Fix misspelled choice default

2018-01-30 Thread Ulf Magnusson
On Tue, Jan 30, 2018 at 2:38 PM, Ulf Magnusson wrote: > On Tue, Jan 30, 2018 at 2:25 PM, Michal Simek wrote: >> On 30.1.2018 14:02, Ulf Magnusson wrote: >>> There is no JTAG symbol in the "Boot mode" choice. JTAG_MODE was >>> probably intended. >>> &

Re: [U-Boot] [PATCH] arm64: zynqmp: Fix misspelled choice default

2018-01-30 Thread Ulf Magnusson
On Tue, Jan 30, 2018 at 2:25 PM, Michal Simek wrote: > On 30.1.2018 14:02, Ulf Magnusson wrote: >> There is no JTAG symbol in the "Boot mode" choice. JTAG_MODE was >> probably intended. >> >> No functional changes. Kconfig choices fall back on using the first

[U-Boot] [PATCH] usb: ulpi: kconfig: Remove meaningless choice default

2018-01-30 Thread Ulf Magnusson
ntly in linux-next: https://patchwork.kernel.org/patch/9983667/ Signed-off-by: Ulf Magnusson --- drivers/usb/ulpi/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/usb/ulpi/Kconfig b/drivers/usb/ulpi/Kconfig index 329d2df3ed..001564d40c 100644 --- a/drivers/usb/ulpi/Kconfig +++ b/drivers/usb/

[U-Boot] [PATCH] am335x, shc: kconfig: Fix misspelled choice default

2018-01-30 Thread Ulf Magnusson
rently in linux-next: https://patchwork.kernel.org/patch/9983667/ Signed-off-by: Ulf Magnusson --- board/bosch/shc/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/bosch/shc/Kconfig b/board/bosch/shc/Kconfig index c71af11c1c..e0e56e6bfd 100644 --- a/board/bosch/sh

[U-Boot] [PATCH] arm64: zynqmp: Fix misspelled choice default

2018-01-30 Thread Ulf Magnusson
nux-next: https://patchwork.kernel.org/patch/9983667/ Signed-off-by: Ulf Magnusson --- arch/arm/cpu/armv8/zynqmp/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/cpu/armv8/zynqmp/Kconfig b/arch/arm/cpu/armv8/zynqmp/Kconfig index 3f922b4097..56b7846f63 100644 --- a/arch/arm/c

[U-Boot] [PATCH] x86: kconfig: Remove meaningless 'select n'

2018-01-30 Thread Ulf Magnusson
strict checking here: kconfiglib.KconfigSyntaxError: board/google/Kconfig:34: Couldn't parse 'select n': expected nonconstant symbol Signed-off-by: Ulf Magnusson --- board/google/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/board/google/Kconfig b/bo

Re: [U-Boot] [U-Boot, v2, 1/1] kconfiglib: update with 'imply' support

2017-10-02 Thread Ulf Magnusson
On Fri, Sep 29, 2017 at 10:25 PM, Tom Rini wrote: > On Tue, Sep 19, 2017 at 12:52:55PM +0200, Ulf Magnusson wrote: > >> Corresponds to 375506d (File writing nit) from upstream >> (https://github.com/ulfalizer/Kconfiglib). >> >> Adds proper 'imply' supp

[U-Boot] [PATCH v2 1/1] kconfiglib: update with 'imply' support

2017-09-19 Thread Ulf Magnusson
imply's. It was modified to look at the union of Symbol.get_selected_symbols() and Symbol.get_implied_symbols(), which should give the same behavior. tools/genboardscfg.py was verified to produce identical board.cfg's before and after the change. Signed-off-by:

[U-Boot] [PATCH v2 0/1] Update Kconfiglib with 'imply' support

2017-09-19 Thread Ulf Magnusson
Changes for v2: tools/moveconfig.py previously depended on a hack that merged 'select's with 'imply's. Update it to look at both so that it will work the same way with the new kconfiglib version. Ulf Magnusson (1): kconfiglib: update with 'imply' support tool

[U-Boot] [PATCH 1/1] kconfiglib: update with 'imply' support

2017-09-19 Thread Ulf Magnusson
ignment to SPL_LDSCRIPT changes mode of containing choice from "arch/$(ARCH)/cpu/u-boot-spl.lds" to "y" The change in 8639f69 (genconfig.py: Print defconfig next to warnings) has been reapplied. tools/genboardscfg.py was verified to produce identical board.cfg's before and af

Re: [U-Boot] [PATCH v2] kconfiglib: update to the latest version

2015-08-13 Thread Ulf Magnusson
Signed-off-by: Ulf Magnusson ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v2] kconfiglib: update to the latest version

2015-08-13 Thread Ulf Magnusson
Changes to v1: - Based on a newer Kconfiglib version. Fixes a problem with line numbers and continuation lines. - The patch should hopefully apply now. :P Ulf Magnusson (1): kconfiglib: update to the latest version tools/buildman/kconfiglib.py | 4226

Re: [U-Boot] kconfiglib: update to the latest version

2015-08-13 Thread Ulf Magnusson
On Thu, Aug 13, 2015 at 2:13 PM, Tom Rini wrote: > On Fri, Jun 12, 2015 at 06:56:19PM +0200, Ulf Magnusson wrote: > >> Corresponds to 2f319b8 in https://github.com/ulfalizer/Kconfiglib. >> >> Fixes: >> >> - Unset user values when loading a zero-byte .conf

Re: [U-Boot] [PATCH] kconfiglib: update to the latest version

2015-06-13 Thread Ulf Magnusson
On Fri, Jun 12, 2015 at 6:56 PM, Ulf Magnusson wrote: > Corresponds to 2f319b8 in https://github.com/ulfalizer/Kconfiglib. > > Fixes: > > - Unset user values when loading a zero-byte .config. (5e54e2c) > - Ignore indented .config assignments. (f8a7510) > - Do not requi

[U-Boot] Kconfiglib updates

2015-06-09 Thread Ulf Magnusson
Hello, I've done lots of internal cleanup and optimization and fixed a few small bugs/incompatibilities in https://github.com/ulfalizer/Kconfiglib: - Unset user values when loading a zero-byte .config. (5e54e2c) - Ignore indented .config assignments. (f8a7510) - Do not require $srctree to be s

Re: [U-Boot] [PATCH] kconfiglib: sync with the latest in Kconfiglib project

2015-05-28 Thread Ulf Magnusson
rit menu/if deps > - Add Symbol.is_allnoconfig_y() > - Hint that modules are still supported despite warnings. > - Add warning related to get_defconfig_filename(). > - Fix typo in docs. > - Allow digits in $-references to symbols. > > Signed-off-by: Ulf Magnusson > Signed-off-by: Philip Cra

Re: [U-Boot] [PATCH v2 2/3] tools: Import Kconfiglib (Superseded !!!)

2014-09-17 Thread Ulf Magnusson
I personally mostly care about Kconfiglib being useful to people. I'm open to suggestions if the current license in any way gets in the way of that. :) (I'm not subscribed to the mailing list, so you might have to forward the reply there.) /Ulf On Wed, Sep 17, 2014 at 2:48 AM, Tom Rini wrote: