Tagged Questions
The kconfig tag has no wiki summary.
1
vote
1answer
87 views
Kconfig and LKM
I'm working with LKM outside the kernel tree and I want to use some compiling options for my module like MYLKM_CONFIG_{something}. I know that this can be done using the C preprocessing (#define // ...
1
vote
1answer
430 views
Alternative to Kconfig (kernel config language) to configure/describe large C software
I'm interested in the configuration/building of large C systems...
The Linux kernel uses the Kconfig language to describe the various configuration options (macros defined as CONFIG_X) and their ...
0
votes
1answer
147 views
Why isn't my Kconfig entry appearing in menuconfig?
I have the following entry in drivers/media/video/Kconfig:
config VIDEO_OMAP3
tristate "OMAP 3 Camera support"
select VIDEOBUF_GEN
select VIDEOBUF_DMA_SG
select OMAP_IOMMU
depends on VIDEO_V4L2 ...
0
votes
2answers
513 views
How to load default settings with KConfig on kdelib?
I've a question about KConfig usage. I'm able to write and read settings in my .kde4/share/config/_appname_rc configuration file like that
KConfig basicconf;
KConfigGroup conf = ...