当前位置:网站首页>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 .
边栏推荐
猜你喜欢

RT-Thread 线程的时间片轮询调度

【ESP32学习-2】esp32地址映射

Word排版(小計)

STM32 how to locate the code segment that causes hard fault

FTP文件上传文件实现,定时扫描文件夹上传指定格式文件文件到服务器,C语言实现FTP文件上传详解及代码案例实现

MySQL realizes read-write separation

Comparison of solutions of Qualcomm & MTK & Kirin mobile platform USB3.0

RT-Thread API参考手册

机器学习--线性回归(sklearn)

RT-Thread的main线程“卡死”的一种可能原因及解决方案
随机推荐
数据库面试常问的一些概念
数据分析之缺失值填充(重点讲解多重插值法Miceforest)
列表的使用
FTP file upload file implementation, regularly scan folders to upload files in the specified format to the server, C language to realize FTP file upload details and code case implementation
SQL time injection
ESP8266通过Arduino IDE连接Onenet云平台(MQTT)
Basic use of pytest
Détails du Protocole Internet
[yarn] yarn container log cleaning
嵌入式启动流程
Matlab learning and actual combat notes
共用体(union)详解【C语言】
[CDH] modify the default port 7180 of cloudera manager in cdh/cdp environment
C语言,log打印文件名、函数名、行号、日期时间
Correspondence between STM32 model and contex M
RuntimeError: cuDNN error: CUDNN_STATUS_NOT_INITIALIZED
[NPUCTF2020]ReadlezPHP
Detailed explanation of express framework
[Kerberos] deeply understand the Kerberos ticket life cycle
[template] KMP string matching