我正在尝试构建一个core-image-minimal
Build Configuration:
BB_VERSION = "1.24.0"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING = "Fedora-21"
TARGET_SYS = "arm-poky-linux-gnueabi"
MACHINE = "qemuarm"
DISTRO = "poky"
DISTRO_VERSION = "1.7.1"
TUNE_FEATURES = "arm armv5 thumb dsp"
TARGET_FPU = "soft"
meta
meta-yocto
meta-yocto-bsp = "dizzy:c59e3bd26d863723af7ba5e16570b091ef7cdc13"我做了一个git测试,发现这个版本也有同样的问题:
Build Configuration:
BB_VERSION = "1.24.0"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING = "Fedora-21"
TARGET_SYS = "arm-poky-linux-gnueabi"
MACHINE = "qemuarm"
DISTRO = "poky"
DISTRO_VERSION = "1.7.2"
TUNE_FEATURES = "arm armv5 thumb dsp"
TARGET_FPU = "soft"
meta
meta-yocto
meta-yocto-bsp = "dizzy:9fd145d27ec479668fac490a9f1078089f22bf59"我总是会有这样的错误:
| DEBUG: Executing shell function do_patch
| Deleted branch meta-temp (was d36a7ef).
| [INFO] validating against known patches (qemuarm-standard-meta)
ERROR. could not update git tree################## ] (\)(94 %))
| ERROR: Could not apply patches for qemuarm.
| ERROR: Patch failures can be resolved in the devshell (bitbake -c devshell linux-yocto)我试着使用"bitbake -c devshell linux-yocto",但是在我得到一个shell之前,它以同样的错误告终。
我不知道如何调试这个问题。
发布于 2015-05-12 00:45:40
我自己在这个问题上花了很多时间,当我得到以下结果时:
error: could not apply zp39187... my message
When you have resolved this problem, run "git rebase --continue".这似乎是因为(在我的例子中)提交'zp39187‘会导致冲突。
一般的想法是通过使用以下命令来修复冲突或跳过冲突:
git rebase --skip然而,这个错误似乎也出现在挑剔的时候。
看看cherry picking a commit that deletes files可能会有用,它当时对我很有帮助。
https://stackoverflow.com/questions/30173135
复制相似问题