弄乱手工编辑的内核配置
我的一些同事手动编辑我们产品的内核配置。注释或取消注释选项并手动放置“y”或“m”。我将此类配置加载到 menuconfig 和朋友中安全吗?会出现什么问题?
Some of my coworkers edit the kernel configs of our products manually. The comment or uncomment the options and manually put the 'y' or 'm'. Is it safe for me to load such configurations to menuconfig and friends? What can go wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只要您随后运行
make oldconfig
或make menuconfig
等,它就是安全的。 “make”负责处理依赖关系并根据需要激活已被错误禁用的模块。It's safe as long as you run
make oldconfig
ormake menuconfig
, etc. afterwards. "make" takes care of dependencies and activates as needed modules that have been mistakenly disabled.是的,您可以在配置文件中手动编辑内核配置。 “make”负责处理任何依赖关系。
Yes, you can hand-edit the kernel configs in the config file. "make" takes care of any dependencies.