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> Reviewed-on: http://review.coreboot.org/2751 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
parent
7542fc7dd2
commit
9be4c470bc
|
@ -60,7 +60,7 @@ subdirs-y += site-local
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
# Add source classes and their build options
|
# 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
|
# Helper functions for ramstage postprocess
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
RMODULE_TYPE_SMM,
|
RMODULE_TYPE_SMM,
|
||||||
|
RMODULE_TYPE_SIPI_VECTOR,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rmodule;
|
struct rmodule;
|
||||||
|
|
Loading…
Reference in New Issue