当前位置:网站首页>Kconfig Kbuild
Kconfig Kbuild
2022-07-06 12:01:00 【csdndulala】
In code engineering, we often see some projects called Kconfig Kbuild The file of
The purpose of this document is : Compile oriented script , Shield hardware differences .Kconfig It's not a special script , It's a way to solve the problem , He can do it in any way :python、shell+makfefile(linux kernal、Busybox).
Introduction
For embedded or OS for , Faced with hundreds of hardware types , for instance .
If there are two I2C The hardware needs to be adapted , Common practice :Method 1 ( It is not recommended to abuse this method ,1 The same file will be modified when adding a board , Risk of incorrect modification 2 Not conducive to reading )
One .c Distinguish by macro Then compile the script / Compile macros to distinguish
#ifdef I2C_A_HARDWARE
void i2c_write()
#endif#ifdef I2C_B_HARDWARE
void i2c_write()
#endifMethod 2
Distinguish by file i2c_ahardware.c i2cb_hardware.c Finally, it is also distinguished by compiling scripts
For the second method , When adding a hardware , The built script needs to be modified :
if I2C_A_ chip
i2c_ahardware.c Participate in building
else if I2C_B_ chip
i2cbhardware.c Participate in building
else if I2C_X_ chip
i2cx_hardware.c Participate in building
…
else if chip xxx
…
…
…
endif
You can imagine when there are hundreds of chips ,makefile What will it be like , Let alone if else Nested scenes 、 File path modification 、 File name modification 、 Code integration , The modification of the compiled script caused by , really ....
Think about it
linux kernal How a set of code fits thousands of boards
U-boot How to support thousands of boardsKconfig How it works
Kconfig Working steps of
1) Read... In the current directory .config file ( If not, follow Kconfig File default configuration )
2) according to .config The content of , Display the corresponding interface
3) The programmer selects the components of the board to be built through the interface
4) sign out Kconfig Interface , Two files will be saved :.config、autoconf.hKconfig file :
Kconfig Interface after file operation : Users choose (* For choice )
Generated .config file ( This file can be used to initialize Kconfig Interface , It can also be saved as configuration files of different hardware . Use different configuration files to replace complex if else)Kbuild file : Include and exclude the selected files
When choosing I2C_A, The final obj-y = i2c_a_hardware.o This is the input of the compilation script .autoconf.h ( according to Kconfig The selection result of , It can be used as a method 1 Macro definition file )
Kconfig Of python Implementation code can refer to :
github project ulfalizer/Kconfiglib
The use of this library :
https://blog.csdn.net/u010018991/article/details/81867316summary
- Kconfig It is equivalent to layering the functions of the compiled script , Shielding all kinds of boards 、 Chip differences
- The original if else Branch still " There is ", It is only branched by multiple hardware boards .config Profile substitution
- Kconfig It can also be applied to pure software scenarios , It can support cutting and customization of pure software
There are two ways to use in your own project Kconfig
Linux Kernel Used a bunch of scripts , stay scripts Under the table of contents , Belong to GPL agreement .
Kconfiglib Is another option , It USES Python Script to achieve Kconfig, This library License More friendly to business software .
边栏推荐
猜你喜欢
Wangeditor rich text reference and table usage
Missing value filling in data analysis (focus on multiple interpolation method, miseforest)
R & D thinking 01 ----- classic of embedded intelligent product development process
RT-Thread的main线程“卡死”的一种可能原因及解决方案
STM32型号与Contex m对应关系
IOT system framework learning
Implementation scheme of distributed transaction
Several declarations about pointers [C language]
RT thread API reference manual
Oppo vooc fast charging circuit and protocol
随机推荐
高通&MTK&麒麟 手机平台USB3.0方案对比
IOT system framework learning
FreeRTOS 任务函数里面的死循环
Unit test - unittest framework
RT-Thread API参考手册
Encodermappreduce notes
冒泡排序【C语言】
RT thread API reference manual
[Presto] Presto parameter configuration optimization
inline详细讲解【C语言】
ESP8266通过arduino IED连接巴法云(TCP创客云)
Some concepts often asked in database interview
STM32 如何定位导致发生 hard fault 的代码段
[Flink] Flink learning
Composition des mots (sous - total)
The first simple case of GNN: Cora classification
Nodejs connect mysql
MATLAB学习和实战 随手记
FTP文件上传文件实现,定时扫描文件夹上传指定格式文件文件到服务器,C语言实现FTP文件上传详解及代码案例实现
Internet protocol details