Bug 19729
| Summary: | 2.2.16-22's adm9240.o won't make (Makefile typo) | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Luno <luno> |
| Component: | kernel | Assignee: | Arjan van de Ven <arjanv> |
| Status: | CLOSED WONTFIX | QA Contact: | Brian Brock <bbrock> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 7.0 | CC: | peter |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2002-12-16 04:14:19 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Also note that due to this (pardon the afterthought), the module isn't included in the standard distro's collection in /lib/modules/2.2.16-22/whatever. Note that after this change, using the stock kernel config (non-enterprise, non-smp), make_modules DID make the module, so I can only assume that you had intended for it to be included. - luno AT luno.org |
Here's the diff, from the released 2.2.16-22 kernel sources... --- drivers/sensors/Makefile~ Tue Aug 22 14:24:01 2000 +++ drivers/sensors/Makefile Tue Oct 24 14:49:35 2000 @@ -33,10 +33,10 @@ endif endif -ifeq ($(CONFIG_SENSORS_ADM9024),y) +ifeq ($(CONFIG_SENSORS_ADM9240),y) L_OBJS += adm9240.o else - ifeq ($(CONFIG_SENSORS_ADM9024),m) + ifeq ($(CONFIG_SENSORS_ADM9240),m) M_OBJS += adm9240.o endif endif