From: Simon Glass Date: Wed, 25 Sep 2019 15:00:31 +0000 (-0600) Subject: x86: Reduce resetvec size X-Git-Tag: v2020.01-rc1~27^2~1 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d362a088175778097f5405074cd1445bc64ae201;p=oweals%2Fu-boot.git x86: Reduce resetvec size At present this produces a 16-byte file. It is intended to start 16 bytes before the end of ROM and pads with zeroes to readh the end. But binman sometimes wants to add an image-header at the very end of ROM. Furthermore binman automatically pads the data if it is finishes early. Drop the padding in resetvec and let binman handle it. Signed-off-by: Simon Glass Reviewed-by: Bin Meng Tested-by: Bin Meng --- diff --git a/arch/x86/cpu/resetvec.S b/arch/x86/cpu/resetvec.S index a52225d5ee..cf972738b3 100644 --- a/arch/x86/cpu/resetvec.S +++ b/arch/x86/cpu/resetvec.S @@ -16,6 +16,3 @@ reset_vector: cli cld jmp start16 - - .org 0xf - nop