diff options
author | Isaac David <isacdaavid@isacdaavid.info> | 2017-07-17 16:37:56 -0500 |
---|---|---|
committer | Isaac David <isacdaavid@isacdaavid.info> | 2017-07-17 16:40:11 -0500 |
commit | 50702b51a47ee4021f985fef887d3fd0acf79cd9 (patch) | |
tree | b12f072e30015ca3cdf135945472e961b8ae72ba /pcr | |
parent | 6c9ab7b9cfc99bea015e360df5f514c96c11ea0b (diff) | |
download | abslibre-50702b51a47ee4021f985fef887d3fd0acf79cd9.tar.gz abslibre-50702b51a47ee4021f985fef887d3fd0acf79cd9.tar.bz2 abslibre-50702b51a47ee4021f985fef887d3fd0acf79cd9.zip |
pcr/xen: adjust grub configuration
Diffstat (limited to 'pcr')
-rwxr-xr-x | pcr/xen/21_linux_xen_multiboot_arch | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pcr/xen/21_linux_xen_multiboot_arch b/pcr/xen/21_linux_xen_multiboot_arch index 2c7d457a0..ef3a39b54 100755 --- a/pcr/xen/21_linux_xen_multiboot_arch +++ b/pcr/xen/21_linux_xen_multiboot_arch @@ -94,9 +94,9 @@ linux_entry () fi if [ x$type != xsimple ] ; then if [ x$type = xrecovery ] ; then - title="$(gettext_printf "%s, with Xen %s and Linux-libre %s (recovery mode)" "${os}" "${xen_version}" "${version}")" + title="$(gettext_printf "%s, with Xen %s and Linux-%s (recovery mode)" "${os}" "${xen_version}" "${version}")" else - title="$(gettext_printf "%s, with Xen %s and Linux-libre %s" "${os}" "${xen_version}" "${version}")" + title="$(gettext_printf "%s, with Xen %s and Linux-%s" "${os}" "${xen_version}" "${version}")" fi replacement_title="$(echo "Advanced options for ${OS}" | sed 's,>,>>,g')>$(echo "$title" | sed 's,>,>>,g')" if [ x"Xen ${xen_version}>$title" = x"$GRUB_ACTUAL_DEFAULT" ]; then @@ -235,7 +235,9 @@ while [ "x${xen_list}" != "x" ] ; do linux_root_device_thisversion="${LINUX_ROOT_DEVICE}" initrd= - for i in "initrd.img-${version}" "initrd-${version}.img" "initrd-${version}.gz" \ + for i in "initramfs-linux-${version}.img" \ + "initrd.img-${version}" "initrd-${version}.img" \ + "initrd-${version}.gz" \ "initrd-${version}" "initramfs-${version}.img" \ "initrd.img-${alt_version}" "initrd-${alt_version}.img" \ "initrd-${alt_version}" "initramfs-${alt_version}.img" \ |