aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/kconfig/fuzz.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/kconfig: accept target when parsing KconfigDmitry Vyukov2020-10-291-1/+5
| | | | | | Kconfig depends on the target arch. Add target argument for Kconfig parsing. Resolve $(SRCARCH) properly (previously we always assumed x86_64).
* pkg/kconfig: add .config parsingDmitry Vyukov2020-10-211-0/+5
| | | | Update #2171
* pkg/kconfig: add Kconfig parsingDmitry Vyukov2020-10-211-0/+5
| | | | Update #2171
* pkg/kconfig: add packageDmitry Vyukov2020-10-211-0/+13
kconfig package is supposed to parse Kconfig/.config files and provide some algorithms on top. This commit includes only parser helper and expression parsing for starters. Update #2171