diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-06-29 17:43:37 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-06-29 17:43:37 +0200 |
commit | c878362f24064566562ad149a1e40d444b97d598 (patch) | |
tree | 1a84197fbc8c1da96566e217881395cb8909320e | |
parent | b72bf24f4aaa5f6ec14e668e013819b66e173080 (diff) | |
download | imagefish-c878362f24064566562ad149a1e40d444b97d598.tar.gz |
add efibootmgr
-rwxr-xr-x | CentOS7-efi.sh | 2 | ||||
-rwxr-xr-x | Fedora-efi-grub2.sh | 2 | ||||
-rwxr-xr-x | Fedora-efi-systemd.sh | 2 | ||||
-rwxr-xr-x | RHEL73-efi.sh | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/CentOS7-efi.sh b/CentOS7-efi.sh index cdb47ec..59af667 100755 --- a/CentOS7-efi.sh +++ b/CentOS7-efi.sh @@ -2,7 +2,7 @@ name="centos-7-efi" repo="repos/centos-7.repo" -rpms="grub2-efi shim -dracut-config-rescue dracut-config-generic" +rpms="grub2-efi shim efibootmgr -dracut-config-rescue dracut-config-generic" arch="$(uname -m)" tar="${IMAGEFISH_DESTDIR-.}/${name}-${arch}.tar.gz" diff --git a/Fedora-efi-grub2.sh b/Fedora-efi-grub2.sh index 63dc0d0..3e12249 100755 --- a/Fedora-efi-grub2.sh +++ b/Fedora-efi-grub2.sh @@ -3,7 +3,7 @@ vers="${1-25}" name="fedora-${vers}-efi-grub2" repo="repos/fedora-${vers}.repo" -rpms="grub2-efi shim -dracut-config-rescue dracut-config-generic" +rpms="grub2-efi shim efibootmgr -dracut-config-rescue dracut-config-generic" arch="$(uname -m)" tar="${IMAGEFISH_DESTDIR-.}/${name}-${arch}.tar.gz" diff --git a/Fedora-efi-systemd.sh b/Fedora-efi-systemd.sh index 490ee56..c48375c 100755 --- a/Fedora-efi-systemd.sh +++ b/Fedora-efi-systemd.sh @@ -3,7 +3,7 @@ vers="${1-25}" name="fedora-${vers}-efi-systemd" repo="repos/fedora-${vers}.repo" -rpms="-grubby -dracut-config-rescue dracut-config-generic" +rpms="efibootmgr -grubby -dracut-config-rescue dracut-config-generic" arch="$(uname -m)" tar="${IMAGEFISH_DESTDIR-.}/${name}-${arch}.tar.gz" diff --git a/RHEL73-efi.sh b/RHEL73-efi.sh index 501ef32..960452f 100755 --- a/RHEL73-efi.sh +++ b/RHEL73-efi.sh @@ -2,7 +2,7 @@ name="rhel-73-efi" repo="repos/rhel-73.repo" -rpms="grub2-efi shim -dracut-config-rescue dracut-config-generic" +rpms="grub2-efi shim efibootmgr -dracut-config-rescue dracut-config-generic" arch="$(uname -m)" tar="${IMAGEFISH_DESTDIR-.}/${name}-${arch}.tar.gz" |