If you want to automatically mount your Windows share when Audrey boots, follow these instructions:
The file /kojak/go is called at startup. In turn it calls boot.sh (where we
try to mount our Window shares. In case there is a problem we don't want Audrey
to hang, so call boot.sh as a background process.
To do this, in /kojak/go modify the below line from
sh boot.sh
to
sh boot.sh &
Next, add your Windows mount calls to the bottom of boot.sh. Preceed the calls
with the "if_up" command to loop until the Ethernet adaptor is available. So in
/kojak/boot.sh add the following (modified for your application):
#Wait for Ethernet to go up
if_up -r 60 usbenet0
fs-cifs //SUGARSMACK:192.168.0.2:/music /music username pwd
"usbenet0" is the name of your ethernet adapter device. This may be different on your Audrey.
See the man page for fs-cifs for more details.