#!/bin/sh

start()
{
    # Add your custom board initialization here.
    # This will be called early on the boot process, don't count on things like
    # network to be operational.
    
    # Don't trust the PATH, it is not guaranteed to be set at this point.
    /usr/bin/amixer -c 2 sset "Line Out" 100%
    /usr/bin/amixer -c 2 sset "DAC" 100%

}

stop()
{
    # Add your custom board shutdown commands here.
    # This is called shortly before the system shuts down
    /bin/true
}


case "$1" in

"start")
    start
    ;;
    
"stop")
    stop
    ;;
    
esac
