From: Pete P. <pp...@us...> - 2001-08-28 07:23:56
|
Update of /cvsroot/linux-mips/linux/arch/mips In directory usw-pr-cvs1:/tmp/cvs-serv14591/arch/mips Modified Files: config.in Log Message: Added preliminary power management supuport: * turn off the clocks to the uarts when not used * turn off the clocks to the ethernets when not used * adhoc /proc interface for putting the cpu to sleep and dynamically scaling the cpu frequency. * fixed a pci compile problem Index: config.in =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/config.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** config.in 2001/08/25 11:20:20 1.17 --- config.in 2001/08/28 07:23:53 1.18 *************** *** 231,236 **** define_bool CONFIG_PCI y define_bool CONFIG_PC_KEYB y - define_bool CONFIG_PCI_AUTO y define_bool CONFIG_NEW_PCI y fi if [ "$CONFIG_COBALT_MICRO_SERVER" = "y" ]; then --- 231,236 ---- define_bool CONFIG_PCI y define_bool CONFIG_PC_KEYB y define_bool CONFIG_NEW_PCI y + define_bool CONFIG_PCI_AUTO y fi if [ "$CONFIG_COBALT_MICRO_SERVER" = "y" ]; then *************** *** 357,360 **** --- 357,363 ---- define_bool CONFIG_BINFMT_ELF y tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC + if [ "$CONFIG_MIPS_AU1000" = "y" ]; then + dep_bool 'Power Management support (experimental)' CONFIG_PM $CONFIG_EXPERIMENTAL + fi bool 'Networking support' CONFIG_NET |