diff options
author | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-04-15 14:39:29 +0000 |
---|---|---|
committer | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-04-15 14:39:29 +0000 |
commit | 85ec0da03ec0dd50725cdfdce9c4d158e503ee22 (patch) | |
tree | 31b034cb2fc5d7ee1b04345ec818aa4537743c9c | |
parent | 441a9c895569ed485fabf24c6fc3c7d3aff4df77 (diff) | |
download | drakx-85ec0da03ec0dd50725cdfdce9c4d158e503ee22.tar drakx-85ec0da03ec0dd50725cdfdce9c4d158e503ee22.tar.gz drakx-85ec0da03ec0dd50725cdfdce9c4d158e503ee22.tar.bz2 drakx-85ec0da03ec0dd50725cdfdce9c4d158e503ee22.tar.xz drakx-85ec0da03ec0dd50725cdfdce9c4d158e503ee22.zip |
Don't care about obsolete things on moderns arches like x86-64
-rwxr-xr-x | kernel/check_mar.pl | 5 | ||||
-rw-r--r-- | kernel/modules.pl | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/kernel/check_mar.pl b/kernel/check_mar.pl index 7a8db526e..19225410a 100755 --- a/kernel/check_mar.pl +++ b/kernel/check_mar.pl @@ -7,8 +7,9 @@ my $mar = '../mdk-stage1/mar/mar'; my %sanity_check = ( hd => [ - qw(aic7xxx sym53c8xx initio), - if_(arch() !~ /ppc/, 'advansys'), + qw(aic7xxx sym53c8xx), + if_(arch() !~ /x86_64/, 'initio'), + if_(arch() !~ /ppc|x86_64/, 'advansys'), ], network => [ qw(3c59x eepro100 tulip via-rhine ne2k-pci 8139too), diff --git a/kernel/modules.pl b/kernel/modules.pl index b8d712187..45d05ec6c 100644 --- a/kernel/modules.pl +++ b/kernel/modules.pl @@ -28,7 +28,7 @@ my @skip_modules_on_stage1 = ( qw(sktr tmspci ibmtr abyss), # alt token ring qw(old_tulip rtl8139), if_(arch() =~ /alpha|ppc/, qw(sb1000)), - if_(arch() !~ /x86_64|ia64/, qw(tg3 bcm5700)), + if_(arch() !~ /x86_64|ia64/, qw(tg3 bcm5700)), #- important gigabit cards qw( r8169 apa1480_cb @@ -38,6 +38,7 @@ my @skip_modules_on_stage1 = ( qla2200 qla2300 iph5526 ), + if_(arch() =~ /x86_64/, qw(53c7,8xx initio ataraid advansys atp870u)), #- old 'AM53C974', # deprecated by tmscsim qw(ac3200 at1700 atp ni5010 ni52 ni65), #- unused from Jeff "u14-34f", #- duplicate from ultrastor.o |