Monday 30 November 2015

Re: Xenial/grub2: Changes for Xen

On Mon, Nov 30, 2015 at 04:01:44PM +0100, Stefan Bader wrote:
> 20_linux_xen:
> xen_list=`for i in /boot/xen*; do
> + if echo "$i" | grep -q '\.efi$'; then continue; fi
> if grub_file_is_not_garbage "$i" && file_is_not_sym "$i" ; then echo -n
> "$i " ; fi
> done`

Could this be changesd to use the same xen-*.gz you used in the
descriptive text?

xen_list=`for i in /boot/xen-*.gz; do
if grub_file_is_not_garbage "$i" && file_is_not_sym "$i" ; then echo -n
"$i " ; fi
done`

Thanks