summaryrefslogtreecommitdiffstats
path: root/kernel/check_mar.pl
diff options
context:
space:
mode:
authorGwenolé Beauchesne <gbeauchesne@mandriva.org>2002-07-31 17:34:01 +0000
committerGwenolé Beauchesne <gbeauchesne@mandriva.org>2002-07-31 17:34:01 +0000
commit13555b04bf30617f0a7e2cda9265b37112799d9e (patch)
tree56cb6d2faa3eec0be32f6d307e4d183c1895dfdd /kernel/check_mar.pl
parent0d547c9740b5bddcc9c72974e3cc890a8ec9f479 (diff)
downloaddrakx-backup-do-not-use-13555b04bf30617f0a7e2cda9265b37112799d9e.tar
drakx-backup-do-not-use-13555b04bf30617f0a7e2cda9265b37112799d9e.tar.gz
drakx-backup-do-not-use-13555b04bf30617f0a7e2cda9265b37112799d9e.tar.bz2
drakx-backup-do-not-use-13555b04bf30617f0a7e2cda9265b37112799d9e.tar.xz
drakx-backup-do-not-use-13555b04bf30617f0a7e2cda9265b37112799d9e.zip
Exclude some modules (e100, aic7xxx) on x86_64 for now.
Diffstat (limited to 'kernel/check_mar.pl')
-rwxr-xr-xkernel/check_mar.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/kernel/check_mar.pl b/kernel/check_mar.pl
index a26795a13..d29e65088 100755
--- a/kernel/check_mar.pl
+++ b/kernel/check_mar.pl
@@ -7,12 +7,13 @@ my $mar = '../mdk-stage1/mar/mar';
my %sanity_check = (
hd => [
- qw(aic7xxx sym53c8xx initio),
+ if_(arch() !~ /x86_64/, 'aic7xxx'),
+ qw(sym53c8xx initio),
if_(arch() !~ /ppc/, 'advansys'),
],
network => [
qw(3c59x eepro100 tulip via-rhine ne2k-pci 8139too),
- if_(arch() !~ /ppc/, 'e100'),
+ if_(arch() !~ /ppc|x86_64/, 'e100'),
if_(arch() !~ /ppc|ia64/, 'tlan'),
],
);