diff options
author | Guillem Jover <guillem@debian.org> | 2006-08-28 23:55:27 +0000 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2006-08-28 23:55:27 +0000 |
commit | 49581781918082f84d95ac99b87d7241dc37e2b8 (patch) | |
tree | f9a83f6594d821053b7b3200a526733867e31be9 | |
parent | 6233b4652f706a8221875fcba04e129465d08c98 (diff) |
Enable all PCMCIA options.
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/rules.options | 15 |
2 files changed, 15 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 8bba5e8..090697f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -28,6 +28,7 @@ gnumach (1:20060826.dfsg.1-1) UNRELEASED; urgency=low * Enable PCMCIA ISA support. - debian/patches/47_pcmcia_isa.patch: New file. Thanks to Stefan Siegl <stesie@brokenpipe.de>. + * Enable all PCMCIA options. -- Guillem Jover <guillem@debian.org> Sat, 26 Aug 2006 16:52:37 +0300 diff --git a/debian/rules.options b/debian/rules.options index 9e8a0c8..4ce8a02 100644 --- a/debian/rules.options +++ b/debian/rules.options @@ -91,5 +91,18 @@ drivers_net := \ --enable-lance \ --enable-tlan -drivers := $(drivers_block) $(drivers_scsi) $(drivers_net) +drivers_pcmcia := \ + --enable-pcmcia-isa \ + --enable-i82365 \ + --enable-3c574_cs \ + --enable-3c589_cs \ + --enable-axnet_cs \ + --enable-fmvj18x_cs \ + --enable-nmclan_cs \ + --enable-pcnet_cs \ + --enable-smc91c92_cs \ + --enable-xirc2ps_cs \ + --enable-orinoco_cs + +drivers := $(drivers_block) $(drivers_scsi) $(drivers_net) $(drivers_pcmcia) |