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

관련 정보