하루의 쉼터

[ERROR] Task (/home/yocto/var-fsl-yocto/sources/poky/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.5.bb:do_configure) failed with exit code '1' (Feat. No package 'xfont2' found) 본문

프로그래밍/Yocto

[ERROR] Task (/home/yocto/var-fsl-yocto/sources/poky/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.5.bb:do_configure) failed with exit code '1' (Feat. No package 'xfont2' found)

Changun An 2021. 10. 29. 14:54
반응형

| No package 'xfont2' found
| ERROR: Task (/home/yocto/var-fsl-yocto/sources/poky/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.5.bb:do_configure) failed with exit code '1'

 

OutLine 

xserver 설치 오류

| No package 'xfont2' found
| 
| Consider adjusting the PKG_CONFIG_PATH environment variable if you
| installed software in a non-standard prefix.
| 
| Alternatively, you may set the environment variables XSERVERCFLAGS_CFLAGS
| and XSERVERCFLAGS_LIBS to avoid the need to call pkg-config.
| See the pkg-config man page for more details.
| WARNING: exit code 1 from a shell command.
| 
ERROR: Task (/home/yocto/var-fsl-yocto/sources/poky/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.5.bb:do_configure) failed with exit code '1'

 

1. apt-get을 통한 install 해결 방법

1.1 search - ubuntu apt 패키지 내 존재 확인

sudo apt-cache search xfont2

 

1.2 apt-get install를 통하여 가져오기

sudo apt-get install xfont2*

1.3 재 bitbake ( 실패 )

 

2. OnpenEmbedded Layer - Recipes를 이용

2.1 검색

https://layers.openembedded.org/layerindex/branch/master/layers/

 

OpenEmbedded Layer Index - layers

 

layers.openembedded.org

2.2 욕토 버전 맞추기

2.3 bitbake xfont2

bitbake libxfont2

2.4 재bitbake ( 실패 )

 

3. 재설치 및 Core 수 증가 ( 해결 )

기존 코어 1 -> 3으로 올림.

패키지를 설치하며 의존성 패키지 문제가 발생 되었는지 오류 발생 했던 것들이 해결 되었음...

다른 작업에 영향에 영향이 올까봐 기존 코어를 1로 해둔게 문제였던 것으로 추정.

반응형
Comments