etc/rc.local에서 시스템 부팅시에 제가 만들어놓은 .py파일과 .c파일을 자동으로 실행시키고 싶은데

/usr/bin/python /home/pi/aoap/accessory.py 파일만 실행이되고

그밑에 ./home/pi/framebuffer/fb1 은실행이 되지않습니다.

~


근데 두개의 쉘스크립트의 위아래 순서가 바뀌면 위에있는 쉘스크립트만 실행이 됩니다.

즉 ./home/pi/framebuffer/fb1 이 위에있다면 이것만실행이 됩니다


원래이런건가요???


#!/bin/sh -e

#

# rc.local

#

# This script is executed at the end of each multiuser runlevel.

# Make sure that the script will "exit 0" on success or any other

# value on error.

#

# In order to enable or disable this script just change the execution

# bits.

#

# By default this script does nothing.


# Print the IP address

_IP=$(hostname -I) || true

if [ "$_IP" ]; then

  printf "My IP address is %s\n" "$_IP"

fi


/usr/bin/python /home/pi/aoap/accessory.py

./home/pi/frameBuffer/fb1

#/usr/bin/python /home/pi/aoap/accessory.py


exit 0