Forum
  • Search
  • Member List
  • Calendar
Hello There, Guest! Login Register — Login with Facebook

[PROBLEM] /boot is not mounted automatically
Thank you for your donation

Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Threaded Mode | Linear Mode
Problem: /boot is not mounted automatically
10th Aug, 2019, 08:07 PM
Post: #3
Nachteule Offline
Administrator
******
Posts: 2,406
Joined: Dec 2014
Reputation: 122
RE: /boot is not mounted automatically
To your second minor issue:

i don't know what you want to achieve with the kernel parameter 'boot_delay=5', if I look into the kernel parameter documentation,

Code:
boot_delay=     Milliseconds to delay each printk during boot.
                        Values larger than 10 seconds (10000) are changed to
                        no delay (0).
                        Format: integer

this parameter really doesn't make any sense to me

If Kodi is working correctly despite the error message, you can safely ignore it, if not, you could use the user-run.sh script to explicitly wait until the media is mounted

See file /etc/default/xbmc and template of user-run.sh script is in /usr/local/share/doc/xbmc/user-run.sh

For example, this script could look like this:

Code:
#!/bin/sh

echo "-----------------------------------"
echo "$(date) $0 $@"
echo "-----------------------------------"

case $1 in

        preload)                # Invoked by /etc/init/xbmc-preload.conf
                case $2 in
                        start)
                                for i in 1 2 3 4 5 6 7 8 9 10; do
                                        if mountpoint -q /media/64GB_ULTRAF/; then
                                                break
                                        fi
                                        sleep 1
                                done
                                ;;
                        stop)
                                # This should never happen
                                ;;
                esac
                ;;

        xbmc)                   # Invoked by /etc/init/xbmc.conf
                case $2 in
                        start)
                                ;;
                        stop)
                                ;;
                esac
                ;;
                
        screensaver)            # Invoked by /etc/init/xbmc-screensaver.conf
                case $2 in
                        start)
                                ;;
                        stop)
                                ;;
                esac
                ;;

esac

exit 0
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


Messages In This Thread
/boot is not mounted automatically - jakenl - 10th Aug, 2019, 06:56 AM
RE: /boot is not mounted automatically - Nachteule - 10th Aug, 2019, 08:04 AM
RE: /boot is not mounted automatically - Nachteule - 10th Aug, 2019 08:07 PM
RE: /boot is not mounted automatically - jakenl - 11th Aug, 2019, 01:21 AM
RE: /boot is not mounted automatically - rezasamir - 12th Jan, 2020, 08:54 PM
RE: /boot is not mounted automatically - Nachteule - 12th Jan, 2020, 11:46 PM

  • View a Printable Version
  • Send this Thread to a Friend
  • Subscribe to this thread
Forum Jump:

Current time: 2nd Jun, 2025, 06:57 AM Powered By MyBB, © 2002-2025 MyBB Group.