aboutsummaryrefslogtreecommitdiff
path: root/src/lib/cbfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/cbfs.c')
-rw-r--r--src/lib/cbfs.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/lib/cbfs.c b/src/lib/cbfs.c
index c712f76be8..7acfc224e5 100644
--- a/src/lib/cbfs.c
+++ b/src/lib/cbfs.c
@@ -179,24 +179,6 @@ void *cbfs_boot_map_optionrom(uint16_t vendor, uint16_t device)
return cbfs_boot_map_with_leak(name, CBFS_TYPE_OPTIONROM, NULL);
}
-void *cbfs_boot_load_stage_by_name(const char *name)
-{
- struct cbfsf fh;
- struct prog stage = PROG_INIT(PROG_UNKNOWN, name);
- uint32_t type = CBFS_TYPE_STAGE;
-
- if (cbfs_boot_locate(&fh, name, &type))
- return NULL;
-
- /* Chain data portion in the prog. */
- cbfs_file_data(prog_rdev(&stage), &fh);
-
- if (cbfs_prog_stage_load(&stage))
- return NULL;
-
- return prog_entry(&stage);
-}
-
size_t cbfs_boot_load_file(const char *name, void *buf, size_t buf_size,
uint32_t type)
{
@@ -217,18 +199,6 @@ size_t cbfs_boot_load_file(const char *name, void *buf, size_t buf_size,
buf, buf_size, compression_algo);
}
-size_t cbfs_prog_stage_section(struct prog *pstage, uintptr_t *base)
-{
- struct cbfs_stage stage;
- const struct region_device *fh = prog_rdev(pstage);
-
- if (rdev_readat(fh, &stage, 0, sizeof(stage)) != sizeof(stage))
- return 0;
-
- *base = (uintptr_t)stage.load;
- return stage.memlen;
-}
-
int cbfs_prog_stage_load(struct prog *pstage)
{
struct cbfs_stage stage;