Re: [PATCH 01/13] RTC Subsystem, library functions

From: Adrian Bunk
Date: Sat Mar 04 2006 - 11:56:17 EST


On Sat, Mar 04, 2006 at 05:42:48PM +0100, Alessandro Zummo wrote:
>...
> --- /dev/null 1970-01-01 00:00:00.000000000 +0000
> +++ linux-rtc/drivers/rtc/Makefile 2006-02-28 13:16:36.000000000 +0100
> @@ -0,0 +1,7 @@
> +#
> +# Makefile for RTC class/drivers.
> +#
> +
> +ifneq ($(CONFIG_RTC_LIB), n)
> +obj-y += rtc-lib.o
> +endif
> --- /dev/null 1970-01-01 00:00:00.000000000 +0000
> +++ linux-rtc/drivers/rtc/Kconfig 2006-02-28 13:16:36.000000000 +0100
> @@ -0,0 +1,6 @@
> +#
> +# RTC class/drivers configuration
> +#
> +
> +config RTC_LIB
> + bool
>...

What about

config RTC_LIB
tristate

and

obj-$(CONFIG_RTC_LIB) += rtc-lib.o

?


IOW:
Is there anything besides adding a MODULE_LICENSE("GPL"); required for
allowing an rtc-lib module?


> --- linux-rtc.orig/drivers/Makefile 2006-02-28 13:16:34.000000000 +0100
> +++ linux-rtc/drivers/Makefile 2006-02-28 13:16:36.000000000 +0100
> @@ -56,6 +56,7 @@ obj-$(CONFIG_USB_GADGET) += usb/gadget/
> obj-$(CONFIG_GAMEPORT) += input/gameport/
> obj-$(CONFIG_INPUT) += input/
> obj-$(CONFIG_I2O) += message/
> +obj-y += rtc/
>...

obj-$(CONFIG_RTC_LIB) += rtc/

should be possible since RTC_CLASS select's RTC_LIB.

cu
Adrian

--

"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/