diff options
| author | Leah Rowe <leah@libreboot.org> | 2023-03-24 07:10:44 +0000 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2023-03-24 07:10:44 +0000 | 
| commit | da6bf57a3f57f2625a4903cafb5cfd10ea4a1dae (patch) | |
| tree | ed2e9f2153ad24527fee18af5ed38269440049e7 | |
| parent | bd4a954ff4234aa69c6eee47edc54726cdef385a (diff) | |
blobs/inject: use correct offset for haswell mrc
| -rwxr-xr-x | resources/scripts/blobs/inject | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/resources/scripts/blobs/inject b/resources/scripts/blobs/inject index 125a5481..153dd6cc 100755 --- a/resources/scripts/blobs/inject +++ b/resources/scripts/blobs/inject @@ -77,7 +77,7 @@ set -- "resources/coreboot/${board}/config/*"  	if [ "$CONFIG_HAVE_MRC" = "y" ]; then  		printf 'adding mrc\n' -		./coreboot/default/util/cbfstool/cbfstool ${rom} add -f mrc/haswell/mrc.bin -n mrc.bin -t mrc || exit 1 +		./coreboot/default/util/cbfstool/cbfstool ${rom} add -f mrc/haswell/mrc.bin -n mrc.bin -t mrc -b 0x78fe00 || exit 1  	fi  	if [ "${CONFIG_HAVE_ME_BIN}" = "y" ]; then | 
