diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-05-17 11:49:20 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-05-18 11:42:58 +0000 |
commit | b79d0a17992886d1e8558a9ebe536f12fcf336b1 (patch) | |
tree | 6f39c712052397b161eb57c2dd20e24411c8e2d0 /Makefile.inc | |
parent | c56c723deb98d4e97dd55b32aac6fc44a31462b3 (diff) |
Makefile.inc: Drop unused `cbfs-files-processor-vsa`
VSA (Virtual System Architecture) is specific to AMD Geode CPUs, which
are no longer supported in current coreboot. Drop this remnant.
Change-Id: I28bf61cb953e3352b59aa91059341e4de8f84f23
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54360
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Makefile.inc b/Makefile.inc index ce70a30c0f..da54e3b46e 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -308,16 +308,6 @@ cbfs-files-processor-nvramtool= \ mv $(2).tmp $(2)) ####################################################################### -# Link VSA binary to ELF-ish stage -# arg1: source file -# arg2: binary file name -cbfs-files-processor-vsa= \ - $(eval $(2): $(1) ; \ - printf " CREATE $(2) (from $(1))\n"; \ - $(OBJCOPY_ramstage) --set-start 0x20 --adjust-vma 0x60000 -I binary -O elf32-i386 -B i386 $(1) $(2).tmp && \ - $(LD_ramstage) -m elf_i386 -e 0x60020 --section-start .data=0x60000 $(2).tmp -o $(2)) - -####################################################################### # Reduce a .config file to its minimal representation # arg1: input # arg2: output |