grub: update to 1.99rc2.
This commit is contained in:
parent
f4b36e5790
commit
97b9f99b55
2 changed files with 2 additions and 19 deletions
|
@ -1,16 +0,0 @@
|
|||
Only process xen image files with .gz extension and regular files
|
||||
not symlinks.
|
||||
|
||||
--- util/grub.d/20_linux_xen.in.orig 2011-02-09 14:34:45.239824080 +0100
|
||||
+++ util/grub.d/20_linux_xen.in 2011-02-09 14:36:26.760493023 +0100
|
||||
@@ -98,8 +98,8 @@ linux_list=`for i in /boot/vmlinu[xz]-*
|
||||
version=$(echo $basename | sed -e "s,^[^0-9]*-,,g")
|
||||
if grub_file_is_not_garbage "$i" && grep -qx "CONFIG_XEN_DOM0=y" /boot/config-${version} 2> /dev/null ; then echo -n "$i " ; fi
|
||||
done`
|
||||
-xen_list=`for i in /boot/xen*; do
|
||||
- if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi
|
||||
+xen_list=`for i in /boot/xen*.gz; do
|
||||
+ if grub_file_is_not_garbage "$i" && ! test -h "$i"; then echo -n "$i " ; fi
|
||||
done`
|
||||
prepare_boot_cache=
|
||||
|
|
@ -1,15 +1,14 @@
|
|||
# Template file for 'grub'
|
||||
pkgname=grub
|
||||
_distver=1.99
|
||||
_patchver=rc1
|
||||
_patchver=rc2
|
||||
version=${_distver}${_patchver}
|
||||
revision=2
|
||||
wrksrc="grub-${_distver}~${_patchver}"
|
||||
distfiles="ftp://alpha.gnu.org/gnu/grub/grub-${_distver}~${_patchver}.tar.gz"
|
||||
build_style=gnu_configure
|
||||
short_desc="GRand Unified Bootloader 2"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
checksum=f0333efa6c5e3198f658b8124eebcf613b916b7873d647abb009169d1ff39d52
|
||||
checksum=ea8f243c95851d58d34ac04910929395790e9b9383d6deb2bb6750435bc3e7bd
|
||||
long_desc="
|
||||
This is GRUB 2, the second version of the GRand Unified Bootloader.
|
||||
GRUB 2 is rewritten from scratch to make GNU GRUB cleaner, safer, more
|
||||
|
|
Loading…
Reference in a new issue