Changeset 2901
Legend:
- Unmodified
- Added
- Removed
-
pcbsd/branches/7.0/system-overlay/usr/share/skel/.kde4/Autostart/checksounderror.sh
r2340 r2901 10 10 rm /tmp/unknownSound 11 11 12 # Make sure we aren't using osscore 13 kldstat | grep osscore >/dev/null 2>/dev/null 14 OSSCORE="$?" 15 12 16 # Check if the user wants to ignore this warning 13 17 IGNORE="`pbreg get /PC-BSD/SoundErrorDisable`" 14 if [ "${IGNORE}" != "Y" ]18 if [ "${IGNORE}" != "Y" -a "${OSSCORE}" != "0" ] 15 19 then 16 20 # Start the SoundError program to warn the user of missing sound module -
pcbsd/trunk/system-overlay/usr/share/skel/.kde4/Autostart/checksounderror.sh
r2340 r2901 10 10 rm /tmp/unknownSound 11 11 12 # Make sure we aren't using osscore 13 kldstat | grep osscore >/dev/null 2>/dev/null 14 OSSCORE="$?" 15 12 16 # Check if the user wants to ignore this warning 13 17 IGNORE="`pbreg get /PC-BSD/SoundErrorDisable`" 14 if [ "${IGNORE}" != "Y" ]18 if [ "${IGNORE}" != "Y" -a "${OSSCORE}" != "0" ] 15 19 then 16 20 # Start the SoundError program to warn the user of missing sound module
