diff options
author | Aaron Durbin <adurbin@chromium.org> | 2013-03-01 17:10:28 -0600 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-03-22 00:14:50 +0100 |
commit | c0650894f8ca50a7609971418e8eaa4c674f36a9 (patch) | |
tree | 17d9f1152738060298f57b13312efa2616c76516 | |
parent | 22919ce62ce110b351133cd4c18d5229291beef3 (diff) |
rmodule: add vboot rmodule type
For completeness add a vboot rmodule type since vboot will be
built as an rmodule.
Change-Id: I4b9b1e6f6077f811cafbb81effd4d082c91d4300
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/2853
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
-rw-r--r-- | src/include/rmodule.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/rmodule.h b/src/include/rmodule.h index 631c63d219..35a82c159d 100644 --- a/src/include/rmodule.h +++ b/src/include/rmodule.h @@ -29,6 +29,7 @@ enum { RMODULE_TYPE_SMM, RMODULE_TYPE_SIPI_VECTOR, RMODULE_TYPE_STAGE, + RMODULE_TYPE_VBOOT, }; struct rmodule; |