April 1, 201313 yr Hi, I'm struggling to mount an external USB drive at boot. Initially I just added the mount command to the go script, however I have now found out that the drive assignment changes on each boot... I'm pretty sure I'm being stupid here, and there is a quick and easy way to do this
April 1, 201313 yr Hi, I'm struggling to mount an external USB drive at boot. Initially I just added the mount command to the go script, however I have now found out that the drive assignment changes on each boot... I'm pretty sure I'm being stupid here, and there is a quick and easy way to do this yes, use the /dev/disk/by-id name
April 1, 201313 yr Author Cool, and I could still add it to the go script to launch before the plugins ?
April 1, 201313 yr Author Really ? Because my go looks like below, so I assumed I could do mounts before packages are installed on boot... root@Tower:~# cat /boot/config/go #!/bin/bash # Start the Management Utility ulimit -n 20000;/usr/local/sbin/emhttp & /boot/unmenu/uu cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c
April 1, 201313 yr Plugins are loaded before go runs Tapatalk from CM10.1 Kindle Slight Correction... plugins are installed prior to the config/go script being run, but it is up to the person who wrote the plugin to decide when they are actually "started" It could be when installed, OR it could be when an "event" is called in the startup up sequence from within emhttp. Look in /etc/rc.d/rc.local for the specific sequence(, and in your specific plugin.plg file )
April 2, 201313 yr Really ? Because my go looks like below, so I assumed I could do mounts before packages are installed on boot... Plugins are installed before the go script runs, packages are installed under control of the go script.
April 2, 201313 yr Really ? Because my go looks like below, so I assumed I could do mounts before packages are installed on boot... Plugins are installed before the go script runs, packages are installed under control of the go script. I have seen it mentioned that packages in /boot/extra are installed before go runs also.
April 2, 201313 yr Really ? Because my go looks like below, so I assumed I could do mounts before packages are installed on boot... Plugins are installed before the go script runs, packages are installed under control of the go script. I have seen it mentioned that packages in /boot/extra are installed before go runs also. true. any packages in /boot/extra are indeed installed first, before the system plugins in /boot/plugins and before user-plugins in /boot/config/plugins. See /etc/rc.d/rc.local for details.
Archived
This topic is now archived and is closed to further replies.