Features/Kconfig (GSoC 2013): Difference between revisions
Akoskovacs (talk | contribs) (adding topics and progress) |
Akoskovacs (talk | contribs) No edit summary |
||
Line 14: | Line 14: | ||
== Implementation == | == Implementation == | ||
=== Main topics === | === Main topics === | ||
# Importing [http://ymorin.is-a-geek.org/projects/kconfig-frontends kconfig-frontends] to | # Importing [http://ymorin.is-a-geek.org/projects/kconfig-frontends kconfig-frontends] to Qemu (at scripts/kconfig) | ||
# New syntactical structures in the Kconfig files (with writing the actual Kconfig files) | # New syntactical structures in the Kconfig files (with writing the actual Kconfig files) | ||
# Integrating kconfig to the existing build infrastructure | # Integrating kconfig to the existing build infrastructure |
Revision as of 03:31, 1 July 2013
Summary
The aim of this Google Summer of Code 2013 project is to bring the Linux kernel's Kconfig facility to Qemu, making it much easier to configure at build-time.
Owner
- Name: Ákos Kovács
- Email: akoskovacs@gmx.com
Implementation
Main topics
- Importing kconfig-frontends to Qemu (at scripts/kconfig)
- New syntactical structures in the Kconfig files (with writing the actual Kconfig files)
- Integrating kconfig to the existing build infrastructure
Progress
At the time, the first and the second topic is in progress. This means, that the kconfig-frontends can be built from the top-level directory (with 'make menuconfig/xconfig/gconfig/...') and has a new syntactical structure. This will enable the user to manage all targets from one root Kconfig file. The current syntax consist a 'symbol' token and the actual symbol itself, which can be written this way:
config TEST
prompt "A foo-bar feature"
symbol TARGET_FOO
default n
However, this is not a fixed syntax and there could be other ways.