aboutsummaryrefslogtreecommitdiff
path: root/src/lib/selfboot.c
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2013-08-31 08:16:27 +0200
committerPatrick Georgi <patrick@georgi-clan.de>2013-08-31 08:58:37 +0200
commit2f39eae41d750817143f9372f67de6b1ee96b4a6 (patch)
tree08335656481528b7d55f17bbddc0953e10ddefe6 /src/lib/selfboot.c
parentde36d333c27c258bc05ecc0b6649fbdafcae619f (diff)
Remove NRV2B compression support
It wasn't even hooked up to the build system anymore. Change-Id: I4b962ffd945b39451e19da3ec2f7b8e0eecf2e53 Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/3892 Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/lib/selfboot.c')
-rw-r--r--src/lib/selfboot.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/lib/selfboot.c b/src/lib/selfboot.c
index d8c7392038..f69ad1435b 100644
--- a/src/lib/selfboot.c
+++ b/src/lib/selfboot.c
@@ -454,15 +454,6 @@ static int load_self_segments(
return 0;
break;
}
-#if CONFIG_COMPRESSED_PAYLOAD_NRV2B
- case CBFS_COMPRESS_NRV2B: {
- printk(BIOS_DEBUG, "using NRV2B\n");
- unsigned long unrv2b(u8 *src, u8 *dst, unsigned long *ilen_p);
- unsigned long tmp;
- len = unrv2b(src, dest, &tmp);
- break;
- }
-#endif
case CBFS_COMPRESS_NONE: {
printk(BIOS_DEBUG, "it's not compressed!\n");
memcpy(dest, src, len);