#!/bin/bash

# Configuration file for the PowerManagement Control Scripts

# Section for general options
general_HDDevice="/dev/hda"	# hdsetup
general_FreqBase=100		# bdflush
general_PCMCIAShutdown=suspend	# pcmcia

# Section for power policy 'performance'
performance_HDTimeOff=0		# hdsetup - timeout in seconds
performance_HDOptions="-p"	# hdsetup
performance_BufferAge=		# bdflush - kernel defaults

# Section for power policy 'custom'
custom_HDTimeOff=60		# hdsetup - timeout in seconds
custom_HDOptions="-p"		# hdsetup
custom_BufferAge=600		# bdflush

# Section for power policy 'powersave'
powersave_HDTimeOff=60		# hdsetup - timeout in seconds
powersave_HDOptions="-p"	# hdsetup
powersave_BufferAge=600		# bdflush
