当前位置: 技术问答>linux和unix
嵌入式系统中,应用程序和内核编译到一起的吗?
来源: 互联网 发布时间:2016-11-21
本文导语: 嵌入式系统开发中,内核配置好以后,是和应用程序一起编译连接成镜像文件下载到目标板的flash中吗?还是单独编译,各自存在flash中? | 单独。 | 单独too | ...
嵌入式系统开发中,内核配置好以后,是和应用程序一起编译连接成镜像文件下载到目标板的flash中吗?还是单独编译,各自存在flash中?
|
单独。
|
单独too
|
You can choose to create two sections in your flash. One section is for kernel image. The other is for application. The kernel image can be created with CRAMFS file system while the application can reside in a JFFS2 or YAFFS2 file system. So that you can replace your application easily while keeping the kernel largely untouched.