[prev in list] [next in list] [prev in thread] [next in thread] 

List:       freebsd-ports
Subject:    ports/15173: Update Etherboot 4.2.11
From:       Doug Ambrisko <ambrisko () whistle ! com>
Date:       1999-11-30 0:00:59
[Download RAW message or body]


>Number:         15173
>Category:       ports
>Synopsis:       Update Etherboot 4.2.11
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Nov 29 16:10:00 PST 1999
>Closed-Date:
>Last-Modified:
>Originator:     Doug Ambrisko
>Release:        FreeBSD 4.0-CURRENT i386
>Organization:
Whistle
>Environment:


>Description:

	New release of Etherboot 4.2.11 which for one compiles out of
	the box on FreeBSD except for the binutil issue.
	Fixup an issue in which NASM wasn't being used to build some of the 
	x86 code.
	Point the backup archive site to my site, since binutils has
	disappeared from the Linux master sites.

>How-To-Repeat:

>Fix:
	
Note this patch nukes patch-ac (makes is a zero length file).

Index: Makefile
===================================================================
RCS file: /cvs/freebsd/ports/net/etherboot/Makefile,v
retrieving revision 1.7
diff -c -r1.7 Makefile
*** Makefile	1999/11/26 18:17:03	1.7
--- Makefile	1999/11/30 00:01:16
***************
*** 1,16 ****
  # New ports collection makefile for:   etherboot
! # Version required:    4.2.9
  # Date created:        16 April 1999
  # Whom:                Doug Ambrisko <ambrisko@whistle.com>
  #
  # $FreeBSD: ports/net/etherboot/Makefile,v 1.6 1999/09/27 02:23:47 steve Exp $
  #
  
! DISTNAME=	etherboot-4.2.9
  PKGNAME=	etherboot-4.2
  CATEGORIES=	net
  MASTER_SITES=	http://www.slug.org.au/etherboot/ \
! 		http://www.us.kernel.org/pub/linux/devel/gcc/
  DISTFILES=	${DISTNAME}.tar.gz ${BINUTILS_VER}.tar.gz
  
  MAINTAINER=	ambrisko@whistle.com
--- 1,17 ----
  # New ports collection makefile for:   etherboot
! # Version required:    4.2.11
  # Date created:        16 April 1999
  # Whom:                Doug Ambrisko <ambrisko@whistle.com>
  #
  # $FreeBSD: ports/net/etherboot/Makefile,v 1.6 1999/09/27 02:23:47 steve Exp $
  #
  
! DISTNAME=	etherboot-4.2.11
  PKGNAME=	etherboot-4.2
  CATEGORIES=	net
  MASTER_SITES=	http://www.slug.org.au/etherboot/ \
! 		http://www.us.kernel.org/pub/linux/devel/gcc/ \
! 		http://www.ambrisko.com/doug/
  DISTFILES=	${DISTNAME}.tar.gz ${BINUTILS_VER}.tar.gz
  
  MAINTAINER=	ambrisko@whistle.com
Index: files/md5
===================================================================
RCS file: /cvs/freebsd/ports/net/etherboot/files/md5,v
retrieving revision 1.3
diff -c -r1.3 md5
*** md5	1999/11/26 18:17:09	1.3
--- md5	1999/11/30 00:01:16
***************
*** 1,2 ****
! MD5 (etherboot-4.2.9.tar.gz) = 3af0e7dbd0e094ebfd287f9639b60722
  MD5 (binutils-2.9.1.0.25.tar.gz) = 2350a282f8fd53b409f523e77fccb904
--- 1,2 ----
! MD5 (etherboot-4.2.11.tar.gz) = 9fe7c9a689dfbb7f90b7afa453922598
  MD5 (binutils-2.9.1.0.25.tar.gz) = 2350a282f8fd53b409f523e77fccb904
Index: patches/patch-aa
===================================================================
RCS file: /cvs/freebsd/ports/net/etherboot/patches/patch-aa,v
retrieving revision 1.3
diff -c -r1.3 patch-aa
*** patch-aa	1999/11/26 18:17:11	1.3
--- patch-aa	1999/11/30 00:01:16
***************
*** 1,5 ****
! *** Makefile.orig	Fri Oct 22 09:17:37 1999
! --- Makefile	Fri Oct 22 09:18:27 1999
  ***************
  *** 74,79 ****
  --- 74,80 ----
--- 1,5 ----
! *** Makefile.orig	Thu Nov 25 00:34:35 1999
! --- Makefile	Mon Nov 29 14:25:36 1999
  ***************
  *** 74,79 ****
  --- 74,80 ----
***************
*** 10,12 ****
--- 10,46 ----
    
    IDENT=		'Etherboot/$(BITS) $(VERSION) (GPL) $@'
    # Stack must be below 640kb so we have real memory there
+ ***************
+ *** 102,108 ****
+   
+   # Exactly one of the following definitions for AS86 should be uncommented
+   # If you have not made any changes to the *.asm files (most people)
+ ! AS86=		none
+   # If you have made changes to the *.asm files
+   # and you want to rebuild *loader.bin and floppyload.bin and you have as86
+   # from the ELKS Dev86 package (not the one that normally comes with Linux)
+ --- 103,109 ----
+   
+   # Exactly one of the following definitions for AS86 should be uncommented
+   # If you have not made any changes to the *.asm files (most people)
+ ! #AS86=		none
+   # If you have made changes to the *.asm files
+   # and you want to rebuild *loader.bin and floppyload.bin and you have as86
+   # from the ELKS Dev86 package (not the one that normally comes with Linux)
+ ***************
+ *** 111,117 ****
+   # If you have made changes to the *.asm files
+   # and you want to rebuild *loader.bin and floppyload.bin and you have nasm
+   # (not most people)
+ ! #AS86=		nasm
+   
+   # if your as has trouble with the data32 directive, uncomment this
+   # but note that the premade start*.o will be larger than necessary because it
+ --- 112,118 ----
+   # If you have made changes to the *.asm files
+   # and you want to rebuild *loader.bin and floppyload.bin and you have nasm
+   # (not most people)
+ ! AS86=		nasm
+   
+   # if your as has trouble with the data32 directive, uncomment this
+   # but note that the premade start*.o will be larger than necessary because it
Index: patches/patch-ac
===================================================================
RCS file: /cvs/freebsd/ports/net/etherboot/patches/patch-ac,v
retrieving revision 1.2
diff -c -r1.2 patch-ac
*** patch-ac	1999/11/26 18:17:11	1.2
--- patch-ac	1999/11/30 00:01:16
***************
*** 1,14 ****
- *** 3c90x.c.orig	Fri Oct 22 09:27:33 1999
- --- 3c90x.c	Fri Oct 22 09:28:23 1999
- ***************
- *** 36,42 ****
- --- 36,44 ----
-   
-   #include "etherboot.h"
-   #include "nic.h"
- + #ifndef __FreeBSD__
-   #include <linux/pci.h>
- + #endif
-   
-   #define	TIME_OUT	60000
-   #define	XCVR_MAGIC	(0x5A00)
--- 0 ----

>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic