Yocto Raspberry Pi3에서 Qt 애플리케이션 자동 시작 관련 문제

Yocto Raspberry Pi3에서 Qt 애플리케이션 자동 시작 관련 문제

곧 Pi를 Qt 애플리케이션으로 부팅할 수 있기를 바랍니다.

다음과 같은이 가이드 필요한 Qt 종속성을 사용하여 Yocto Linux를 성공적으로 구축했으며 콘솔이나 SSH에서 바이너리를 실행하여 Qt 애플리케이션을 시작할 수 있습니다.

무엇을 하든 자동으로 시작되도록 할 수 없습니다.

다음과 같은이 가이드: Qt 바이너리를 실행하고 로깅 목적으로 파일에 일부 텍스트를 추가하는 bash 스크립트를 가리키는 /etc/init.d/autostart 실행 프로그램을 만들었습니다.

/etc/init.d/autostart는 다음과 같습니다

#!/bin/sh
# https://wiki.debian.org/LSBInitScripts
### BEGIN INIT INFO
# Provides:          autostart
# Required-Start:    $all
# Required-Stop:
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Autostart
### END INIT INFO

# http://www.tldp.org/HOWTO/Path-4.html
#PATH=$PATH:/usr/local/bin

case "$1" in
  start)
    logger "Starting autostart scripts"

    # your scripts here
    /home/root/bootScript.sh

    logger $?
    exit 0
    ;;
  *)
    echo "It's just a startup script and has no arguments or commands"
    exit 1
    ;;
esac

/home/root/bootScript.sh는 다음과 같습니다

#!/bin/sh
/home/root/testProject_01/testProject_01
echo "howdy" >> /home/root/some.txt

update-rc.d autostart를 실행하면 기본적으로 시스템에 등록됩니다.

또한 루트로 시스템에 자동으로 로그인하고 /etc/inittab 맨 아래에 1:2345:respawn:/bin/login -f root tty1 /dev/tty1 2>&1 줄을 추가했습니다.

완전한 /etc/inittab은 다음과 같습니다

# /etc/inittab: init(8) configuration.
# $Id: inittab,v 1.91 2002/01/25 13:35:21 miquels Exp $

# The default runlevel.
id:5:initdefault:

# Boot-time system configuration/initialization script.
# This is run first except when booting in emergency (-b) mode.
si::sysinit:/etc/init.d/rcS

# What to do in single-user mode.
~~:S:wait:/sbin/sulogin

# /etc/init.d executes the S and K scripts upon change
# of runlevel.
#
# Runlevel 0 is halt.
# Runlevel 1 is single-user.
# Runlevels 2-5 are multi-user.
# Runlevel 6 is reboot.

l0:0:wait:/etc/init.d/rc 0
l1:1:wait:/etc/init.d/rc 1
l2:2:wait:/etc/init.d/rc 2
l3:3:wait:/etc/init.d/rc 3
l4:4:wait:/etc/init.d/rc 4
l5:5:wait:/etc/init.d/rc 5
l6:6:wait:/etc/init.d/rc 6
# Normally not reached, but fallthrough in case of emergency.
z6:6:respawn:/sbin/sulogin
AMA0:12345:respawn:/bin/start_getty 115200 ttyAMA0 vt102
# /sbin/getty invocations for the runlevels.
#
# The "id" field MUST be the same as the last
# characters of the device (after "tty").
#
# Format:
#  <id>:<runlevels>:<action>:<process>
#

#1:12345:respawn:/sbin/getty 38400 tty1

1:2345:respawn:/bin/login -f root tty1 </dev/tty1 >/dev/tty1 2>&1

재부팅하면 /home/root/some.txt에 또 다른 "안녕하세요"가 있지만 Qt 애플리케이션은 자동으로 시작되지 않고 콘솔에만 표시됩니다.

/etc/init.d/autostart start를 수동으로 호출하면 올바르게 시작됩니다.

똑똑한 사람들은 왜 이런 일이 일어나는지 알아낼 수 있습니까? 이것은 실행 순서와 관련이 있습니까? 루트가 아직 로그인되지 않았기 때문에 Qt 응용 프로그램이 시작되지 않습니까?

  • 응답지수 3
  • 공식 7인치 정전식 터치 DPI TFT를 사용합니다.

어떤 포인터에도 적합합니다. 감사해요

답변1

나는 같은 문제를 가지고있다. 작동하는 솔루션을 찾았지만 그것이 올바른지 확실하지 않습니다. :)

vi /etc/init.d/autostart

내가 이 코드를 추가하는 것보다 버크하르트 스튜베르트

#!/bin/sh

. /etc/init.d/functions

do_start() {
    /usr/local/bin/cuteradio -platform eglfs &
}

do_stop() {
    killproc cuteradio
}

case "$1" in
  start)
    echo "Starting cuteradio app"
    do_start
    ;;
  stop)
    echo "Stopping cuteradio app"
    do_stop
    ;;
  restart|force-reload)
    echo "Restarting cuteradio app"
    do_stop
    sleep 1
    do_start
    ;;
  *)
    echo "Usage: $0 {start|stop|restart|force-reload}" >&2
    exit 1
    ;;
esac

exit 0

응용 프로그램의 경로와 프로세스 이름을 변경하는 것보다

chmod +x /etc/init.d/autostart
update-rc.d autostart defaults 70

이것은 나에게 효과적입니다. 그것이 당신에게 도움이 되기를 바랍니다

관련 정보