Summary: | sys-apps/pcmcia-cs-3.2.8-r2 fails to build with KBUILD_OUTPUT | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Olivier Crete (RETIRED) <tester> |
Component: | [OLD] Core system | Assignee: | Mobile Herd (OBSOLETE) <mobile+disabled> |
Status: | RESOLVED WONTFIX | ||
Severity: | normal | ||
Priority: | High | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Olivier Crete (RETIRED)
![]() Turns out that pcmcia-cs should NOT be used against kernel 2.6. Users should instead use pcmciautils. Suggested patch: iff -u -p -r1.18 pcmcia-cs-3.2.8-r2.ebuild --- pcmcia-cs-3.2.8-r2.ebuild 10 Jan 2010 01:19:49 -0000 1.18 +++ pcmcia-cs-3.2.8-r2.ebuild 23 Feb 2010 02:54:37 -0000 @@ -36,12 +36,9 @@ pkg_setup() { ewarn "CONFIG_PCMCIA in the kernel and use the drivers from" ewarn "sys-apps/pcmcia-cs-modules." ewarn - elif kernel_is gt 2 4 && ! (linux_chkconfig_present PCMCIA || linux_chkconfig_present PCCARD); then - eerror - eerror "The package requires the in-kernel PCMCIA drivers to be enabled" - eerror "for kernel 2.6.x." - eerror - die "linux-${KV_FULL} without PCMCIA support detected" + elif kernel_is gt 2 5; then + + die "Use sys-apps/pcmciautils with 2.6.x kernels" fi } i added the suggested change. thanks |