From: James S. <jsi...@us...> - 2001-10-26 17:37:00
|
Update of /cvsroot/linux-mips/linux/drivers/char In directory usw-pr-cvs1:/tmp/cvs-serv5605 Modified Files: Config.in Makefile Log Message: Added Dallas RTC style chip supprot as a option. Some devices using new devices don't have a Dallas chipset. Index: Config.in =================================================================== RCS file: /cvsroot/linux-mips/linux/drivers/char/Config.in,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- Config.in 2001/10/25 17:27:56 1.14 +++ Config.in 2001/10/26 17:36:56 1.15 @@ -180,6 +180,9 @@ dep_tristate 'Intel i8x0 Random Number Generator support' CONFIG_INTEL_RNG $CONFIG_PCI tristate '/dev/nvram support' CONFIG_NVRAM tristate 'Enhanced Real Time Clock Support' CONFIG_RTC +if [ "$CONFIG_RTC" = "y" -a "$CONFIG_NEW_TIME_C" = "y" ]; then + bool 'Generic Dallas PC style RTC chip support' CONFIG_DALLAS_RTC +fi if [ "$CONFIG_IA64" = "y" ]; then bool 'EFI Real Time Clock Services' CONFIG_EFI_RTC fi Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/drivers/char/Makefile,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- Makefile 2001/10/26 16:47:44 1.13 +++ Makefile 2001/10/26 17:36:56 1.14 @@ -192,7 +192,7 @@ obj-$(CONFIG_ADBMOUSE) += adbmouse.o obj-$(CONFIG_PC110_PAD) += pc110pad.o obj-$(CONFIG_RTC) += rtc.o -obj-$(CONFIG_NEW_TIME_C) += rtc_dallas.o +obj-$(CONFIG_DALLAS_RTC) += rtc_dallas.o obj-$(CONFIG_EFI_RTC) += efirtc.o ifeq ($(CONFIG_PPC),) obj-$(CONFIG_NVRAM) += nvram.o |