diff options
Diffstat (limited to 'util/scripts/dts-to-fmd.sh')
-rwxr-xr-x | util/scripts/dts-to-fmd.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util/scripts/dts-to-fmd.sh b/util/scripts/dts-to-fmd.sh index 3b87eee737..f1262fc317 100755 --- a/util/scripts/dts-to-fmd.sh +++ b/util/scripts/dts-to-fmd.sh @@ -86,6 +86,11 @@ for region in $FMAP_REGIONS; do IS_CBFS="(CBFS)" fi + # also mark RW_LEGACY (seabios et al) as CBFS + if [ "${REGION_NAME}" = "RW_LEGACY" ]; then + IS_CBFS="(CBFS)" + fi + # special handling: COREBOOT region at 0, inject a 128K bootblock # The size may need changes to accomodate the chipsets, # but should work for now. |