diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 01:27:23 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 09:43:08 -0700 |
commit | d83d2aa9485d996cfd89f04389b419c6727faacb (patch) | |
tree | 261bd8162d132ae1855127314bf33de7c130511d /arch/um/Kconfig | |
parent | 78a26e25ce4837a03ac3b6c32cdae1958e547639 (diff) |
uml: GENERIC_TIME support
Enable CONFIG_GENERIC_TIME.
As a side-effect of this, the UML implementations of do_gettimeofday and
do_settimeofday go away, as these are provided by generic code. set_time also
goes away since it was only used by do_settimeofday.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/Kconfig')
-rw-r--r-- | arch/um/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/um/Kconfig b/arch/um/Kconfig index 4aabb334a84..53597bbcd7b 100644 --- a/arch/um/Kconfig +++ b/arch/um/Kconfig @@ -55,6 +55,10 @@ config GENERIC_BUG default y depends on BUG +config GENERIC_TIME + bool + default y + # Used in kernel/irq/manage.c and include/linux/irq.h config IRQ_RELEASE_METHOD bool @@ -75,6 +79,7 @@ config STATIC_LINK source "arch/um/Kconfig.arch" source "mm/Kconfig" +source "kernel/time/Kconfig" config LD_SCRIPT_STATIC bool |