diff options
author | 2005-05-08 02:55:53 +0000 | |
---|---|---|
committer | 2005-05-08 02:55:53 +0000 | |
commit | 385e23729ed064ef1246926dd3ae4510b5c030e4 (patch) | |
tree | b6f3d2c07ca8de7996754af76513cabaef92f074 /sys-boot/grub/files | |
parent | stable on ia64 (diff) | |
download | historical-385e23729ed064ef1246926dd3ae4510b5c030e4.tar.gz historical-385e23729ed064ef1246926dd3ae4510b5c030e4.tar.bz2 historical-385e23729ed064ef1246926dd3ae4510b5c030e4.zip |
Revision bump to pull in my writable-string patch I submitted to upstream. Closes bug #90845.
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'sys-boot/grub/files')
-rw-r--r-- | sys-boot/grub/files/digest-grub-0.96-r2 | 2 | ||||
-rw-r--r-- | sys-boot/grub/files/grub-0.96-xfs-writable-string.patch | 17 |
2 files changed, 19 insertions, 0 deletions
diff --git a/sys-boot/grub/files/digest-grub-0.96-r2 b/sys-boot/grub/files/digest-grub-0.96-r2 new file mode 100644 index 000000000000..b43ad3d90a05 --- /dev/null +++ b/sys-boot/grub/files/digest-grub-0.96-r2 @@ -0,0 +1,2 @@ +MD5 47c228c88f848873288ad1cd04cc93f0 grub-0.96.tar.gz 985761 +MD5 7d0c1f5a474a8877a6f38edc4599030a grub-0.95.20040823-splash.patch.bz2 40226 diff --git a/sys-boot/grub/files/grub-0.96-xfs-writable-string.patch b/sys-boot/grub/files/grub-0.96-xfs-writable-string.patch new file mode 100644 index 000000000000..c46362598e83 --- /dev/null +++ b/sys-boot/grub/files/grub-0.96-xfs-writable-string.patch @@ -0,0 +1,17 @@ +Index: stage2/fsys_xfs.c +=================================================================== +RCS file: /cvsroot/grub/grub/stage2/fsys_xfs.c,v +retrieving revision 1.4 +retrieving revision 1.5 +diff -u -b -B -r1.4 -r1.5 +--- stage2/fsys_xfs.c 18 Jan 2004 19:47:18 -0000 1.4 ++++ stage2/fsys_xfs.c 8 May 2005 02:18:14 -0000 1.5 +@@ -334,7 +334,7 @@ + { + int namelen = 1; + int toread; +- static char *usual[2] = {".", ".."}; ++ static char usual[2][3] = {".", ".."}; + static xfs_dir2_sf_entry_t *sfe; + char *name = usual[0]; + |