Hi GRUB hackers.
Yersterday (2000-04-09) I have reported a bug concerning the type
'signed char' for the ethernet address in 'struct nic'. I did a fix
in at home to cast the type to unsigned in the cs89x0.c file.
But on the etherboot mailing list, Ken Yap reports the error and does
following fix (for version 4.5.8):
--- etherboot-4.5.7/src/nic.h Mon Mar 13 22:38:01 2000
+++ etherboot-4.5.8/src/nic.h Mon Apr 10 10:52:06 2000
@@ -21,7 +21,7 @@
unsigned int t, unsigned int s, const
char *p));
void (*disable)P((struct nic *));
char aui;
- char *node_addr;
+ unsigned char *node_addr;
char *packet;
unsigned int packetlen;
void *priv_data; /* driver can hang private data
here */
With friendly regards
Christoph Plattner
--
+--------V--------+ [EMAIL PROTECTED]
| A L C A T E L | -----------------------------
+-----------------+ Phone: +43 1 27722 3706
T A S Fax: +43 1 27722 3955
This will appear in the next release, but in case you are using the
Crystal Semi driver...
--- etherboot-4.5.7/src/nic.h Mon Mar 13 22:38:01 2000
+++ etherboot-4.5.8/src/nic.h Mon Apr 10 10:52:06 2000
@@ -21,7 +21,7 @@
unsigned int t, unsigned int s, const char *p));
void (*disable)P((struct nic *));
char aui;
- char *node_addr;
+ unsigned char *node_addr;
char *packet;
unsigned int packetlen;
void *priv_data; /* driver can hang private data here */
===========================================================================
This Mail was sent to netboot mailing list by:
Ken Yap <[EMAIL PROTECTED]>
To get help about this list, send a mail with 'help' as the only string in
it's body to [EMAIL PROTECTED] If you have problems with this list,
send a mail to [EMAIL PROTECTED]