From 6b4255de1203320a5a71f27b08e8e782d04c461c Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Mon, 10 Jun 2013 17:35:33 -0400 Subject: [PATCH] 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 --- cert.S | 2 +- dbx.S | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cert.S b/cert.S index 7f89029..70b9c3f 100644 --- a/cert.S +++ b/cert.S @@ -10,7 +10,7 @@ vendor_cert_size: .data .align 1 .type vendor_cert, @object - .size vendor_cert_size, vendor_cert_size-vendor_cert + .size vendor_cert, .L0-vendor_cert vendor_cert: .incbin VENDOR_CERT_FILE .L0: diff --git a/dbx.S b/dbx.S index a26fc38..03db1ae 100644 --- a/dbx.S +++ b/dbx.S @@ -10,7 +10,7 @@ vendor_dbx_size: .data .align 1 .type vendor_dbx, @object - .size vendor_dbx_size, vendor_dbx_size-vendor_dbx + .size vendor_dbx, .L0-vendor_dbx vendor_dbx: .incbin VENDOR_DBX_FILE .L0: