diff options
author | Irina Gomez <irinagomez@us.es> | 2018-05-15 11:29:49 +0000 |
---|---|---|
committer | Irina Gomez <irinagomez@us.es> | 2018-05-15 11:29:49 +0000 |
commit | 59ce41961ffbbaac3217a5ee03df018fefb1f3e1 (patch) | |
tree | 2ab071b89f1a8eb49f020e9a5fe54d21a21a11ef | |
parent | beebc198fca5c11b9b6b2dbc867976268944a385 (diff) | |
parent | d2a274a1bb380be346d15d2fd9457ee3bd5362c5 (diff) |
Merge branch 'version1.1' of opengnsys.es:/opt/git/opengnsys into version1.1
842 Consola: se revisan todos los ficheros de idioma en inglés.
-rwxr-xr-x | client/engine/Boot.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/engine/Boot.lib b/client/engine/Boot.lib index 71a3688b..217980d1 100755 --- a/client/engine/Boot.lib +++ b/client/engine/Boot.lib @@ -83,7 +83,7 @@ case "$TYPE" in read -e EFIDISK EFIPART <<<"$(ogGetEsp)" [ -n "$EFIPART" ] || ogRaiseError $OG_ERR_PARTITION "ESP" || return $? # Comprobar si el Kernel está firmado. - if ! sbverify --no-verify "$MNTDIR/$KERNEL" &>/dev/null; then + if ! file -k "$MNTDIR/$KERNEL" | grep -q "EFI app"; then ogRaiseError $OG_ERR_NOTOS "$1 $2 ($TYPE, EFI)" return $? fi |