vendor_cert_size's size in the binary should be 4, not -4.

The thing about subtraction is that the minuend needs to be before the
subtrahend in the text.

Signed-off-by: Peter Jones <pjones@redhat.com>
This commit is contained in:
Peter Jones 2013-06-10 17:35:33 -04:00
parent 1de10962e7
commit 6b4255de12
2 changed files with 2 additions and 2 deletions

2
cert.S
View File

@ -10,7 +10,7 @@ vendor_cert_size:
.data .data
.align 1 .align 1
.type vendor_cert, @object .type vendor_cert, @object
.size vendor_cert_size, vendor_cert_size-vendor_cert .size vendor_cert, .L0-vendor_cert
vendor_cert: vendor_cert:
.incbin VENDOR_CERT_FILE .incbin VENDOR_CERT_FILE
.L0: .L0:

2
dbx.S
View File

@ -10,7 +10,7 @@ vendor_dbx_size:
.data .data
.align 1 .align 1
.type vendor_dbx, @object .type vendor_dbx, @object
.size vendor_dbx_size, vendor_dbx_size-vendor_dbx .size vendor_dbx, .L0-vendor_dbx
vendor_dbx: vendor_dbx:
.incbin VENDOR_DBX_FILE .incbin VENDOR_DBX_FILE
.L0: .L0: