我正在尝试构建 u-boot 并收到这些错误
No private recovery resources for TARGET_DEVICE G0
Building U-boot
make -C u-boot ARCH=arm fio-om3xxx_config
make[1]: Entering directory `/home/mrigendra/GingerBread_2_3_4_FIO/u-boot'
Configuring for fio-om3xxx board...
rm: cannot remove `asm': Is a directory
make[1]: *** [fio-om3xxx_config] Error 1
make[1]: Leaving directory `/home/mrigendra/GingerBread_2_3_4_FIO/u-boot'
make: *** [uboot] Error 2
我不知道为什么它要删除 asm 目录。有谁知道我应该从哪里开始..
答案1
首先尝试运行这个:
make -C u-boot distclean
这应该删除“asm”目录,该目录可能位于 include/asm。
我想你也可以手动删除它:
rm -rf include/asm