* [PATCH] Remove/adjust erroneous references to CONFIG_MODULE.
@ 2009-12-21 12:07 Robert P. J. Day
2009-12-21 13:22 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Robert P. J. Day @ 2009-12-21 12:07 UTC (permalink / raw)
To: U-Boot Version 2 (barebox)
The correct config variable is CONFIG_MODULES, so tweak any references
to the incorrect CONFIG_MODULE.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
---
can someone verify that this looks correct, as there are only three
references to CONFIG_MODULE throughout the tree:
* a superfluous one in common/Makefile that's already covered by
a test to CONFIG_MODULES
* a test in arch/ppc/Makefile
* a comment in include/module.h
so i want to make sure i tweaked all that appropriately.
diff --git a/arch/ppc/Makefile b/arch/ppc/Makefile
index 2c9c535..c24d3c3 100644
--- a/arch/ppc/Makefile
+++ b/arch/ppc/Makefile
@@ -17,7 +17,7 @@ TEXT_BASE = $(CONFIG_TEXT_BASE)
CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) -P
# Add cleanup flags
-ifndef CONFIG_MODULE
+ifndef CONFIG_MODULES
CPPFLAGS += -fdata-sections -ffunction-sections
endif
diff --git a/common/Makefile b/common/Makefile
index d7a024b..0c075a9 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -2,7 +2,6 @@ obj-$(CONFIG_SHELL_HUSH) += hush.o
obj-$(CONFIG_SHELL_SIMPLE) += parser.o
obj-$(CONFIG_GREGORIAN_CALENDER) += date.o
obj-$(CONFIG_OF_FLAT_TREE) += ft_build.o
-obj-$(CONFIG_MODULE) += module.o
obj-$(CONFIG_KALLSYMS) += kallsyms.o
obj-$(CONFIG_ENV_HANDLING) += environment.o
obj-$(CONFIG_AUTO_COMPLETE) += complete.o
diff --git a/include/module.h b/include/module.h
index 03b226a..9d0e803 100644
--- a/include/module.h
+++ b/include/module.h
@@ -71,7 +71,7 @@ int apply_relocate_add(Elf_Shdr *sechdrs,
struct module *mod);
#else
#define EXPORT_SYMBOL(sym)
-#endif /* CONFIG_MODULE */
+#endif /* CONFIG_MODULES */
extern struct list_head module_list;
========================================================================
Robert P. J. Day Waterloo, Ontario, CANADA
Linux Consulting, Training and Kernel Pedantry.
Web page: http://crashcourse.ca
Twitter: http://twitter.com/rpjday
========================================================================
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Remove/adjust erroneous references to CONFIG_MODULE.
2009-12-21 12:07 [PATCH] Remove/adjust erroneous references to CONFIG_MODULE Robert P. J. Day
@ 2009-12-21 13:22 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2009-12-21 13:22 UTC (permalink / raw)
To: Robert P. J. Day; +Cc: U-Boot Version 2 (barebox)
On Mon, Dec 21, 2009 at 07:07:04AM -0500, Robert P. J. Day wrote:
>
> The correct config variable is CONFIG_MODULES, so tweak any references
> to the incorrect CONFIG_MODULE.
>
> Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Ok, applied
Sascha
>
> ---
>
> can someone verify that this looks correct, as there are only three
> references to CONFIG_MODULE throughout the tree:
>
> * a superfluous one in common/Makefile that's already covered by
> a test to CONFIG_MODULES
> * a test in arch/ppc/Makefile
> * a comment in include/module.h
>
> so i want to make sure i tweaked all that appropriately.
>
>
> diff --git a/arch/ppc/Makefile b/arch/ppc/Makefile
> index 2c9c535..c24d3c3 100644
> --- a/arch/ppc/Makefile
> +++ b/arch/ppc/Makefile
> @@ -17,7 +17,7 @@ TEXT_BASE = $(CONFIG_TEXT_BASE)
> CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) -P
>
> # Add cleanup flags
> -ifndef CONFIG_MODULE
> +ifndef CONFIG_MODULES
> CPPFLAGS += -fdata-sections -ffunction-sections
> endif
>
> diff --git a/common/Makefile b/common/Makefile
> index d7a024b..0c075a9 100644
> --- a/common/Makefile
> +++ b/common/Makefile
> @@ -2,7 +2,6 @@ obj-$(CONFIG_SHELL_HUSH) += hush.o
> obj-$(CONFIG_SHELL_SIMPLE) += parser.o
> obj-$(CONFIG_GREGORIAN_CALENDER) += date.o
> obj-$(CONFIG_OF_FLAT_TREE) += ft_build.o
> -obj-$(CONFIG_MODULE) += module.o
> obj-$(CONFIG_KALLSYMS) += kallsyms.o
> obj-$(CONFIG_ENV_HANDLING) += environment.o
> obj-$(CONFIG_AUTO_COMPLETE) += complete.o
> diff --git a/include/module.h b/include/module.h
> index 03b226a..9d0e803 100644
> --- a/include/module.h
> +++ b/include/module.h
> @@ -71,7 +71,7 @@ int apply_relocate_add(Elf_Shdr *sechdrs,
> struct module *mod);
> #else
> #define EXPORT_SYMBOL(sym)
> -#endif /* CONFIG_MODULE */
> +#endif /* CONFIG_MODULES */
>
> extern struct list_head module_list;
>
>
> ========================================================================
> Robert P. J. Day Waterloo, Ontario, CANADA
>
> Linux Consulting, Training and Kernel Pedantry.
>
> Web page: http://crashcourse.ca
> Twitter: http://twitter.com/rpjday
> ========================================================================
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-12-21 13:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-12-21 12:07 [PATCH] Remove/adjust erroneous references to CONFIG_MODULE Robert P. J. Day
2009-12-21 13:22 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox