diff options
| author | Peter Jones <pjones@redhat.com> | 2013-06-10 17:35:33 -0400 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2013-06-10 17:35:33 -0400 |
| commit | 6b4255de1203320a5a71f27b08e8e782d04c461c (patch) | |
| tree | 05966fd3080e92096a749692b98402c68f0aa358 | |
| parent | 1de10962e795d09981007a582fdaf1b859c368fe (diff) | |
| download | efi-boot-shim-6b4255de1203320a5a71f27b08e8e782d04c461c.tar.gz efi-boot-shim-6b4255de1203320a5a71f27b08e8e782d04c461c.zip | |
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>
| -rw-r--r-- | cert.S | 2 | ||||
| -rw-r--r-- | dbx.S | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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: @@ -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: |
