I was looking at the TOY (time of year stuff) in arch/mips/au1000/common/time.c and noticed that it depends on CONFIG_PM, but I couldn't select the CONFIG_PM with xconfig. It seems that PM depends on MACH_AU1X00. It seems that MACH_AU1X00 was replaced with SOC_AU1X00 but not updated for the PM line in Kconfig. Here is a patch: RCS file: /home/cvs/linux/arch/mips/Kconfig,v retrieving revision 1.126 diff -U3 -r1.126 Kconfig --- Kconfig 27 Dec 2004 18:23:53 -0000 1.126 +++ Kconfig 21 Jan 2005 17:47:09 -0000 @@ -1575,7 +1575,7 @@ config PM bool "Power Management support (EXPERIMENTAL)" - depends on EXPERIMENTAL && MACH_AU1X00 + depends on EXPERIMENTAL && SOC_AU1X00 endmenu --Clem