diff options
| author | Peter Jones <pjones@redhat.com> | 2021-02-22 11:16:11 -0500 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2021-02-25 10:34:14 -0500 |
| commit | eb67bf2ad8adfa8fef12a5b336991a92d68f74b0 (patch) | |
| tree | 5f23d740b0b937e5e1f71c6b33d266aad5eea60e | |
| parent | f4ac97b4732935cdb6b7b0b05d4c0fe4df77ed2d (diff) | |
| download | efi-boot-shim-eb67bf2ad8adfa8fef12a5b336991a92d68f74b0.tar.gz efi-boot-shim-eb67bf2ad8adfa8fef12a5b336991a92d68f74b0.zip | |
Fix two errant 'shim,0' outdated sbat cases.
Two places we missed still have 0 for an sbat version - one doc and one
in our data csv.
This fixes those.
Signed-off-by: Peter Jones <pjones@redhat.com>
| -rw-r--r-- | SBAT.md | 2 | ||||
| -rwxr-xr-x | data/sbat.csv | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -323,7 +323,7 @@ At the same time, we're all shipping the same `shim-16` codebase, and in our `shim` builds, we all have the following in `.sbat`: ``` sbat,1,SBAT Version,sbat,1,https://github.com/rhboot/shim/blob/main/SBAT.md -shim,0,UEFI shim,shim,16,https://github.com/rhboot/shim +shim,1,UEFI shim,shim,16,https://github.com/rhboot/shim ``` How to add .sbat sections diff --git a/data/sbat.csv b/data/sbat.csv index 08a24590..ad838f2a 100755 --- a/data/sbat.csv +++ b/data/sbat.csv @@ -1,2 +1,2 @@ sbat,1,SBAT Version,sbat,1,https://github.com/rhboot/shim/blob/main/SBAT.md -shim,0,UEFI shim,shim,0,https://github.com/rhboot/shim +shim,1,UEFI shim,shim,1,https://github.com/rhboot/shim |
