diff options
| author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2026-02-01 14:21:23 +0000 |
|---|---|---|
| committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2026-02-01 21:52:13 +0000 |
| commit | 7a815f711c566fb6376192d253212c42b62ff93a (patch) | |
| tree | b45b02079733a01762b54d26ac8218b799e8499f /kernel/Makefile | |
| parent | 76449920e50a105a81bf8957622b191d6397dae8 (diff) | |
| download | drakx-7a815f711c566fb6376192d253212c42b62ff93a.tar drakx-7a815f711c566fb6376192d253212c42b62ff93a.tar.gz drakx-7a815f711c566fb6376192d253212c42b62ff93a.tar.bz2 drakx-7a815f711c566fb6376192d253212c42b62ff93a.tar.xz drakx-7a815f711c566fb6376192d253212c42b62ff93a.zip | |
kernel: remove broken check for pcitable modules from Makefile
This searched for module names that appeared in pcitable.gz but not
in list_modules.pm, but didn't account for the difference between
module names (used in pcitable.gz) and module file names (used in
list_modules.pm). Now 'modules.pl check' is fixed, this extra check
is redundant.
Diffstat (limited to 'kernel/Makefile')
| -rw-r--r-- | kernel/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 819173f76..8af08bbcc 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -2,7 +2,4 @@ clean: rm -rf *~ check: - perl -I. modules.pl check > /dev/null - @echo "unlisted drivers: " - @for i in $$(zcat /usr/share/ldetect-lst/pcitable.gz|cut -f 2 -d \" | grep -E -v '^#|ADSL:|Bad:|Card:|H[cs]f:|ISDN:|LT:'|sort|uniq|less);do grep -F -q $$i list_modules.pm|| echo -n "$$i ";done - @echo + perl -I. modules.pl check |
