Feedback for the patch "kbuild: Add new Kbuild variable EXTRA_SYMBOLS", requested the variable to be renamed from EXTRA_SYMBOLS to KBUILD_EXTRA_SYMBOLS. The patch was resubmitted and committed but not all the variables were renamed. This patch fixes that and applies to 2.6.27-rc5-git10 original patch that conatined the bug can be found at: http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0d96fb20b7ed757fc936bb35e26c22251a75b734 Please Apply. Signed-off-by: Jonathan Lynch <jonathan.lynch@xxxxxxxxx> ---
--- linux-2.6.27-rc5/scripts/Makefile.modpost.orig 2008-09-09 14:59:20.000000000 +0100 +++ linux-2.6.27-rc5/scripts/Makefile.modpost 2008-09-09 15:00:31.000000000 +0100 @@ -82,7 +82,7 @@ modpost = scripts/mod/modpost $(if $(CONFIG_MODULE_SRCVERSION_ALL),-a,) \ $(if $(KBUILD_EXTMOD),-i,-o) $(kernelsymfile) \ $(if $(KBUILD_EXTMOD),-I $(modulesymfile)) \ - $(if $(KBUILD_EXTRA_SYMBOLS), $(patsubst %, -e %,$(EXTRA_SYMBOLS))) \ + $(if $(KBUILD_EXTRA_SYMBOLS), $(patsubst %, -e %,$(KBUILD_EXTRA_SYMBOLS))) \ $(if $(KBUILD_EXTMOD),-o $(modulesymfile)) \ $(if $(CONFIG_DEBUG_SECTION_MISMATCH),,-S) \ $(if $(CONFIG_MARKERS),-K $(kernelmarkersfile)) \