diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-06-16 18:22:39 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-06-16 18:22:39 +0000 |
commit | 4191950d20da3be60a7d55e6719acbb1e9050ce7 (patch) | |
tree | bc57f037c487039b537e42f42961804b5891c67b | |
parent | df0ca840cea193a8f4d5f219a85b128eb7c9af86 (diff) |
1999-06-16 Thomas Bushnell, BSG <tb@mit.edu>
* Drivers.macros (AC_DRIVER): Only turn on driver if $enableval is
not `no'. Reported by Kalle Olavi Niemitalo <tosi@ees2.oulu.fi>.
-rw-r--r-- | ChangeLog | 16 | ||||
-rw-r--r-- | Drivers.macros | 2 |
2 files changed, 18 insertions, 0 deletions
@@ -1,3 +1,19 @@ +1999-06-16 Thomas Bushnell, BSG <tb@mit.edu> + + * linux/dev/drivers/net/Space.c (ethif_probe): Probe tc59x_probe + (CONFIG_VORTEX) after el3_probe (CONFIG_EL3), because the latter + card matches the former probe, but the driver doesn't work with + it. Reported by Marcus Brinkmann <brinkmd@debian.org>. + + * Drivers.macros (AC_DRIVER): Only turn on driver if $enableval is + not `no'. Reported by Kalle Olavi Niemitalo <tosi@ees2.oulu.fi>. + +1999-06-15 Thomas Bushnell, BSG <tb@mit.edu> + + * ipc/ipc_init.c (ipc_bootstrap): Don't make the IOT_PORT zone + exhaustible, because allocation of ports for internal objects + panics if zalloc fails. + 1999-06-07 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp> * linux/dev/drivers/block/genhd.c [MACH] (mach_minor): New variable. diff --git a/Drivers.macros b/Drivers.macros index fe0e216..c215a52 100644 --- a/Drivers.macros +++ b/Drivers.macros @@ -43,6 +43,7 @@ dnl `class'; see the comments on AC_DRIVER_CLASS for more information. AC_DEFUN(AC_DRIVER, [ [#] Checking for device driver option [$1] AC_ARG_ENABLE([$1],, +if [ "x$enableval" != xno ]; then AC_DEFINE([$2]) device_drivers="$device_drivers [$3]" if test "${driver_class_[$4]_selected+set}" != set; then @@ -50,6 +51,7 @@ if test "${driver_class_[$4]_selected+set}" != set; then AC_DEFINE_UNQUOTED($driver_class_[$4]_option) device_drivers="$device_drivers $driver_class_[$4]_files" fi +fi )]) |