From 16516c3a8eac5c4e351f1973fd1db7130646525a Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Thu, 18 Jan 2024 21:45:21 +0100 Subject: [PATCH] Disable 8139too driver by default From now on, if you want 8139too support you must explicitly pass `--enable-8139too` to `./configure`. --- .gitlab-ci.yml | 4 ++-- Makefile.am | 1 - configure.ac | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2e22718c..15d1e5db 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ build: script: - ./bootstrap - - ./configure --with-linux-dir=/usr/src/linux-obj/$(uname -i)/default --disable-8139too --enable-tty --with-devices=2 --enable-ccat + - ./configure --with-linux-dir=/usr/src/linux-obj/$(uname -i)/default --enable-tty --with-devices=2 --enable-ccat - make -j8 all modules - make DISTCHECK_CONFIGURE_FLAGS="--with-linux-dir=/usr/src/linux-obj/$(uname -i)/default" distcheck @@ -48,7 +48,7 @@ doxygen: GIT_SUBMODULE_STRATEGY: recursive script: - ./bootstrap - - ./configure --with-linux-dir=/usr/src/linux-obj/$(uname -i)/default --disable-8139too --enable-tty --with-devices=2 --enable-ccat + - ./configure --with-linux-dir=/usr/src/linux-obj/$(uname -i)/default --enable-tty --with-devices=2 --enable-ccat - doxygen - mv doxygen-output/html/ html/ artifacts: diff --git a/Makefile.am b/Makefile.am index 8cd553a4..4d08b180 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,7 +30,6 @@ include $(top_srcdir)/Makefile.kbuild ACLOCAL_AMFLAGS = -I m4 AM_DISTCHECK_CONFIGURE_FLAGS = \ - --disable-8139too \ --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir) SUBDIRS = \ diff --git a/configure.ac b/configure.ac index 6759356b..7d9a5a1f 100644 --- a/configure.ac +++ b/configure.ac @@ -208,7 +208,7 @@ AC_ARG_ENABLE([8139too], ;; esac ], - [enable8139too=$enablekernel] + [enable8139too=0] # disabled by default ) AM_CONDITIONAL(ENABLE_8139TOO, test "x$enable8139too" = "x1")