diff options
author | Aaron Durbin <adurbin@chromium.org> | 2015-03-17 11:43:44 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@google.com> | 2015-03-20 19:25:29 +0100 |
commit | 04654a2eff08f8956734e65946bdbaad87f51d56 (patch) | |
tree | 2b555e36f80cf1a982bc0d9c611aca8fab49ac0d /src/vendorcode | |
parent | 3486d1fbe8deaf2062bd4c0c14b7f96f78dfce8f (diff) | |
download | coreboot-04654a2eff08f8956734e65946bdbaad87f51d56.tar.xz |
loaders: add program_loading.h header file
Instead of two headers for payload and ramstage loading
combine the 2 files into one. This also allows for easier
refactoring by keeping header files consistent.
Change-Id: I4a6dffb78ad84c78e6e96c886d361413f9b4a17d
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/8708
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/vendorcode')
-rw-r--r-- | src/vendorcode/google/chromeos/vboot_handoff.c | 2 | ||||
-rw-r--r-- | src/vendorcode/google/chromeos/vboot_loader.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/vendorcode/google/chromeos/vboot_handoff.c b/src/vendorcode/google/chromeos/vboot_handoff.c index 7ea21ea61b..4fb3338b00 100644 --- a/src/vendorcode/google/chromeos/vboot_handoff.c +++ b/src/vendorcode/google/chromeos/vboot_handoff.c @@ -24,7 +24,7 @@ #include <cbfs.h> #include <cbmem.h> #include <console/console.h> -#include <payload_loader.h> +#include <program_loading.h> #include "vboot_handoff.h" int vboot_enable_developer(void) diff --git a/src/vendorcode/google/chromeos/vboot_loader.c b/src/vendorcode/google/chromeos/vboot_loader.c index daf5260d44..0294ac63ac 100644 --- a/src/vendorcode/google/chromeos/vboot_loader.c +++ b/src/vendorcode/google/chromeos/vboot_loader.c @@ -25,9 +25,9 @@ #include <cbmem.h> #include <console/console.h> #include <console/vtxprintf.h> +#include <program_loading.h> #include <tpm.h> #include <reset.h> -#include <ramstage_loader.h> #include <romstage_handoff.h> #include <rmodule.h> #include <string.h> |