Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2751
-gerrit
commit e980d34f26874dbef51f948c77a4a09982ff21a3 Author: Aaron Durbin adurbin@chromium.org Date: Sat Jan 12 00:41:44 2013 -0600
rmodule: add rmodules class and new type
Add an rmodules class so that there are default rules for compiling files that will be linked by the rmodule linker. Also, add a new type for SIPI vectors.
Change-Id: Ided9e15577b34aff34dc23e5e16791c607caf399 Signed-off-by: Aaron Durbin adurbin@chromium.org --- Makefile.inc | 2 +- src/include/rmodule.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc index 3fb74e7..da350d1 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -60,7 +60,7 @@ subdirs-y += site-local
####################################################################### # Add source classes and their build options -classes-y := ramstage romstage bootblock smm smmstub cpu_microcode +classes-y := ramstage romstage bootblock smm smmstub cpu_microcode rmodules
####################################################################### # Helper functions for ramstage postprocess diff --git a/src/include/rmodule.h b/src/include/rmodule.h index c81ec17..30eee0e 100644 --- a/src/include/rmodule.h +++ b/src/include/rmodule.h @@ -26,6 +26,7 @@
enum { RMODULE_TYPE_SMM, + RMODULE_TYPE_SIPI_VECTOR, };
struct rmodule;