如何使用DevTool修复过时的补丁
我正在将一层移植到kirkstone
,它是无法再应用的过时的补丁程序(u-boot
)。 devtool
可以用于修复该补丁吗?问题在于,默认情况下devtool修改
应用了补丁程序,因此无法加载工作区。
I'm porting a layer to kirkstone
which as an outdated patch which cannot be applied anymore (to u-boot
). Can devtool
be used to fix that patch? The problem is that per default devtool modify
applies the patches and therefore fails to load the workspace.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 DevTool修改 可以用偏移量应用补丁。当
DevTool修改
无法应用补丁时,更新补丁程序的一种方法是:src_uri
DevTool修改< coppipe> gt; gt;
as当然,如果补丁程序不应用,因为它是在上游集成的,则正确的解决方案就是仅从
src_uri
中将其删除。The patch refresh is indeed the best method if
devtool modify
can apply the patches with an offset. Whendevtool modify
fails to apply the patches, one way to update the patches is:SRC_URI
devtool modify <recipe>
as usualdevtool finish <recipe> <destination>
Of course, if a patch does not apply because it was integrated upstream, the right solution is to just remove it from
SRC_URI
.