diff options
author | krion <krion@FreeBSD.org> | 2004-01-31 17:29:07 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-01-31 17:29:07 +0800 |
commit | 20238570f9a506d12532b364f1f878ad86bb141d (patch) | |
tree | 2f3e2bbf8b8a6002849d310ab5b818e581a4e65d /sysutils/grub | |
parent | 454e8ce16bd4f2eccd7b32346ccdc34abd0376e1 (diff) | |
download | freebsd-ports-gnome-20238570f9a506d12532b364f1f878ad86bb141d.tar.gz freebsd-ports-gnome-20238570f9a506d12532b364f1f878ad86bb141d.tar.zst freebsd-ports-gnome-20238570f9a506d12532b364f1f878ad86bb141d.zip |
- Add missing manpage
- Fixup working with /dev/fd0
- Add patch from PR/52310 - send a DHCP CLASS_ID tag
- Bump PORTREVISION
PR: ports/62141
Submitted by: maintainer
Diffstat (limited to 'sysutils/grub')
-rw-r--r-- | sysutils/grub/Makefile | 3 | ||||
-rw-r--r-- | sysutils/grub/files/patch-lib_device.c | 48 | ||||
-rw-r--r-- | sysutils/grub/files/patch-netboot_main.c | 18 |
3 files changed, 61 insertions, 8 deletions
diff --git a/sysutils/grub/Makefile b/sysutils/grub/Makefile index 8e0411357f3a..ea86d7c6897f 100644 --- a/sysutils/grub/Makefile +++ b/sysutils/grub/Makefile @@ -7,6 +7,7 @@ PORTNAME= grub PORTVERSION= 0.94 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= ftp://alpha.gnu.org/gnu/grub/ @@ -19,7 +20,7 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-freebsd-freebsd${OSREL} ONLY_FOR_ARCHS= i386 MAN1= mbchk.1 -MAN8= grub.8 grub-install.8 grub-md5-crypt.8 +MAN8= grub.8 grub-install.8 grub-md5-crypt.8 grub-terminfo.8 INFO= grub multiboot #.if defined(WITH_SPLASHIMAGE) diff --git a/sysutils/grub/files/patch-lib_device.c b/sysutils/grub/files/patch-lib_device.c index eb3b072c26c3..ac44ee3ea91f 100644 --- a/sysutils/grub/files/patch-lib_device.c +++ b/sysutils/grub/files/patch-lib_device.c @@ -1,5 +1,5 @@ ---- lib/device.c.orig Sat Jan 24 01:52:56 2004 -+++ lib/device.c Sun Jan 25 00:07:02 2004 +--- lib/device.c.orig Sat Jan 17 18:57:57 2004 ++++ lib/device.c Sat Jan 31 06:32:24 2004 @@ -78,6 +78,12 @@ # include <sys/ioctl.h> /* ioctl */ # include <sys/disklabel.h> @@ -13,7 +13,26 @@ #endif /* __FreeBSD__ || __NetBSD__ || __OpenBSD__ */ #ifdef HAVE_OPENDISK -@@ -123,6 +129,7 @@ +@@ -94,8 +100,16 @@ + { + int fd; + +- fd = open (map[drive], O_RDONLY); +- assert (fd >= 0); ++#if defined(__FreeBSD__) ++ if(geom->flags == -1) ++ { ++#endif ++ fd = open (map[drive], O_RDONLY); ++ assert (fd >= 0); ++#if defined(__FreeBSD__) ++ } else ++ fd = geom->flags; ++#endif + + #if defined(__linux__) + /* Linux */ +@@ -123,6 +137,7 @@ /* FreeBSD, NetBSD or OpenBSD */ { struct disklabel hdg; @@ -21,10 +40,11 @@ if (ioctl (fd, DIOCGDINFO, &hdg)) goto fail; -@@ -131,6 +138,38 @@ +@@ -131,7 +146,40 @@ geom->sectors = hdg.d_nsectors; geom->total_sectors = hdg.d_secperunit; +- close (fd); +#else + u_int u, secsize; + off_t mediasize; @@ -57,10 +77,24 @@ + geom->sectors = hdg.d_nsectors; + geom->total_sectors = hdg.d_secperunit; +#endif - close (fd); ++ if(geom->flags == -1) ++ close (fd); return; } -@@ -233,7 +272,7 @@ + +@@ -203,7 +251,11 @@ + sprintf (name, "/dev/fd%d", unit); + #elif defined(__FreeBSD__) + /* FreeBSD */ ++#if __FreeBSD__ >= 4 ++ sprintf (name, "/dev/fd%d", unit); ++#else + sprintf (name, "/dev/rfd%d", unit); ++#endif + #elif defined(__NetBSD__) + /* NetBSD */ + /* opendisk() doesn't work for floppies. */ +@@ -233,7 +285,7 @@ #elif defined(__FreeBSD__) /* FreeBSD */ # if __FreeBSD__ >= 4 @@ -69,7 +103,7 @@ # else /* __FreeBSD__ <= 3 */ sprintf (name, "/dev/rwd%d", unit); # endif /* __FreeBSD__ <= 3 */ -@@ -274,7 +313,11 @@ +@@ -274,7 +326,11 @@ sprintf (name, "/dev/sd%d", unit); #elif defined(__FreeBSD__) /* FreeBSD */ diff --git a/sysutils/grub/files/patch-netboot_main.c b/sysutils/grub/files/patch-netboot_main.c new file mode 100644 index 000000000000..1feadafd2caf --- /dev/null +++ b/sysutils/grub/files/patch-netboot_main.c @@ -0,0 +1,18 @@ +--- netboot/main.c.orig Sat Jan 18 21:13:02 2003 ++++ netboot/main.c Sat Jan 18 21:13:27 2003 +@@ -82,6 +82,7 @@ + RFC2132_MSG_TYPE, 1, DHCPDISCOVER, + RFC2132_MAX_SIZE,2, /* request as much as we can */ + ETH_MAX_MTU / 256, ETH_MAX_MTU % 256, ++ RFC2132_VENDOR_CLASS_ID,4,'G','R','U','B', + RFC2132_PARAM_LIST, 4, RFC1533_NETMASK, RFC1533_GATEWAY, + RFC1533_HOSTNAME, RFC1533_EXTENSIONPATH + }; +@@ -93,6 +94,7 @@ + RFC2132_REQ_ADDR, 4, 0, 0, 0, 0, + RFC2132_MAX_SIZE, 2, /* request as much as we can */ + ETH_MAX_MTU / 256, ETH_MAX_MTU % 256, ++ RFC2132_VENDOR_CLASS_ID,4,'G','R','U','B', + /* request parameters */ + RFC2132_PARAM_LIST, + /* 4 standard + 2 vendortags */ |