[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH] remove plip support
- From: Bill Nottingham <notting redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH] remove plip support
- Date: Thu, 26 Jul 2007 11:26:25 -0400
I strongly suspect that this does not work, as we haven't even included the
modules in forever.
Bill
Index: loader2/moduleinfo.c
===================================================================
RCS file: /usr/local/CVS/anaconda/loader2/moduleinfo.c,v
retrieving revision 1.6
diff -u -r1.6 moduleinfo.c
--- loader2/moduleinfo.c 5 Dec 2005 19:05:38 -0000 1.6
+++ loader2/moduleinfo.c 26 Jul 2007 15:15:40 -0000
@@ -189,9 +189,6 @@
} else if (!strcmp(chptr, "tr")) {
nextModule->major = DRIVER_NET;
nextModule->minor = DRIVER_MINOR_TR;
- } else if (!strcmp(chptr, "plip")) {
- nextModule->major = DRIVER_NET;
- nextModule->minor = DRIVER_MINOR_PLIP;
} else if (!strcmp(chptr, "scsi_hostadapter") ||
!strcmp(chptr, "scsi")) {
nextModule->major = DRIVER_SCSI;
Index: loader2/moduleinfo.h
===================================================================
RCS file: /usr/local/CVS/anaconda/loader2/moduleinfo.h,v
retrieving revision 1.4
diff -u -r1.4 moduleinfo.h
--- loader2/moduleinfo.h 13 Jun 2005 19:09:24 -0000 1.4
+++ loader2/moduleinfo.h 26 Jul 2007 15:15:40 -0000
@@ -5,7 +5,7 @@
DRIVER_PCMCIA, DRIVER_FS, DRIVER_IDE, DRIVER_OTHER = 1000,
DRIVER_ANY = 5000 };
enum driverMinor { DRIVER_MINOR_NONE = 0, DRIVER_MINOR_ETHERNET,
- DRIVER_MINOR_PLIP, DRIVER_MINOR_TR };
+ DRIVER_MINOR_TR };
struct moduleArg {
char * arg;
Index: utils/modlist.c
===================================================================
RCS file: /usr/local/CVS/anaconda/utils/modlist.c,v
retrieving revision 1.12
diff -u -r1.12 modlist.c
--- utils/modlist.c 22 Jan 2003 05:45:03 -0000 1.12
+++ utils/modlist.c 26 Jul 2007 15:15:40 -0000
@@ -61,7 +61,6 @@
switch (mi->minor) {
case DRIVER_MINOR_ETHERNET: printf("\teth\n"); break;
case DRIVER_MINOR_TR: printf("\ttr\n"); break;
- case DRIVER_MINOR_PLIP: printf("\tplip\n"); break;
default:
fprintf(stderr, "unknown net minor type for %s\n",
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]