서비스 추가 실패 - 이미 사용 중 오류

서비스 추가 실패 - 이미 사용 중 오류

이 튜토리얼을 사용하여 Raspbian에서 SFML 라이브러리와 애플리케이션을 컴파일했습니다.https://github.com/oomek/sfml-pi. 그 후 공유 객체와 애플리케이션을 Raspberry Pi 4의 빌드 루트 시스템으로 옮겼습니다. 버전을 선택했는데 DISPMANX목표는 X 서버 없이 애플리케이션을 실행하는 것입니다.

애플리케이션을 실행하려고 하면 오류가 발생합니다 failed to add service - already in use?. 비슷한 주제가 많다는 것을 알고 있으므로 다음 해결 방법을 시도했습니다.

  1. 설명 dtoverlay=vc4-kms-v3d- config.txt> 이 줄은 내 구성에 존재하지 않습니다.
  2. -> 개선 사항 gpu_mem으로 변경128

내 거 config.txt:

# Please note that this is only a sample, we recommend you to change it to fit
# your needs.
# You should override this file using a post-build script.
# See http://buildroot.org/manual.html#rootfs-custom
# and http://elinux.org/RPiconfig for a description of config.txt syntax

# We always use the same names, the real used variant is selected by
# BR2_PACKAGE_RPI_FIRMWARE_{DEFAULT,X,CD} choice
start_file=start.elf
fixup_file=fixup.dat

kernel=zImage

# To use an external initramfs file
#initramfs rootfs.cpio.gz

# Disable overscan assuming the display supports displaying the full resolution
# If the text shown on the screen disappears off the edge, comment this out
disable_overscan=1

# How much memory in MB to assign to the GPU on Pi models having
# 256, 512 or 1024 MB total memory
gpu_mem_256=128
gpu_mem_512=128
gpu_mem_1024=128
gpu_mem_1024=192
gpu_mem=128

# fixes rpi (3B, 3B+, 3A+, 4B and Zero W) ttyAMA0 serial console
dtoverlay=miniuart-bt

opengl빌드 루트에서는 , 및 에서 설정했습니다 gst1-plugins-base. 나는 그것을 설정하지 않았습니다.dispmanxgles2eglwaylandmesa-3d

내 앱을 실행하는 방법을 아시나요? 내 것 에 뭔가 를 추가 해야 합니까 config.txt?

답변1

나는 같은 문제에 직면하고 있습니다. 이것이 여전히 귀하에게 해당되는지는 확실하지 않지만, 그렇다면 이 단계가 저에게 효과적이었습니다.

  1. mesa3d가 필요하고 mesa3d에서 v3d 및 vc4를 선택하면 됩니다.
  2. config.txt에 추가

dtoverlay=vc4-fkms-v3d

Raspberry Pi를 부팅한 후:

  1. 모드프로브 vc4
  2. 모드프로브 v3d

나중에도 확인해 주세요

/dev/dri/카드0

존재하다

관련 정보