diff options
author | sem <sem@FreeBSD.org> | 2008-12-13 02:11:25 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2008-12-13 02:11:25 +0800 |
commit | 69cb99ca86d2a4e5602a3593254303fc40d4e710 (patch) | |
tree | 4c693d60e3db9eaa452d6f40abd82578a4144dff /sysutils/grub | |
parent | 7586382915c8a1bc75099e4255b2b127acca35ef (diff) | |
download | freebsd-ports-gnome-69cb99ca86d2a4e5602a3593254303fc40d4e710.tar.gz freebsd-ports-gnome-69cb99ca86d2a4e5602a3593254303fc40d4e710.tar.zst freebsd-ports-gnome-69cb99ca86d2a4e5602a3593254303fc40d4e710.zip |
- Give a change to use more than 8 disks.
Submitted by: Jens Schweikhardt <schweikh_at_schweikhardt.net>
Diffstat (limited to 'sysutils/grub')
-rw-r--r-- | sysutils/grub/Makefile | 2 | ||||
-rw-r--r-- | sysutils/grub/files/patch-lib-device.c | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/sysutils/grub/Makefile b/sysutils/grub/Makefile index b5e4dc5ab134..68087453f949 100644 --- a/sysutils/grub/Makefile +++ b/sysutils/grub/Makefile @@ -7,7 +7,7 @@ PORTNAME= grub PORTVERSION= 0.97 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= ftp://alpha.gnu.org/gnu/grub/ diff --git a/sysutils/grub/files/patch-lib-device.c b/sysutils/grub/files/patch-lib-device.c new file mode 100644 index 000000000000..324ecef13c53 --- /dev/null +++ b/sysutils/grub/files/patch-lib-device.c @@ -0,0 +1,11 @@ +--- lib/device.c.orig 2008-12-09 22:44:39.000000000 +0100 ++++ lib/device.c 2008-12-09 22:45:41.000000000 +0100 +@@ -713,7 +713,7 @@ + #endif /* __linux__ */ + + /* IDE disks. */ +- for (i = 0; i < 8; i++) ++ for (i = 0; i < 20; i++) + { + char name[16]; + |