uboot コンパイルエラー

uboot コンパイルエラー

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

これにより、include/asm の「asm」ディレクトリが削除されます。

手動で削除することもできます。

rm -rf include/asm

おすすめ記事