On Wed, 21 Sep 2011 13:18:10 +0100, Peter Humphrey wrote about
"[gentoo-user] Missing kernel config parameter":
>What am I supposed to do about this? Ignore it?
Yes.
--
Regards,
Dave [RLU #314465]
================================================== ====================
dwnoon@ntlworld.com (David W Noon)
================================================== ====================
09-21-2011, 12:35 PM
Alex Schuster
Missing kernel config parameter
Peter Humphrey writes:
> Having just upgraded gcc from 4/4/5 to 4.5.3-r1 I recompiled
> binutils-2.21.1-r1. Then, while emerging -e system, I got this:
>
> * Messages for package sys-fs/udisks-1.0.3-r1:
>
> * CONFIG_USB_SUSPEND: is not set when it should be.
>
> But:
>
> $ grep SUSPEND /usr/src/linux/.config
> CONFIG_ARCH_SUSPEND_POSSIBLE=y
> CONFIG_SUSPEND=y
> CONFIG_SUSPEND_FREEZER=y
> # CONFIG_PM_TEST_SUSPEND is not set
>
> No trace of USB_SUSPEND.
It depends on CONFIG_PM_RUNTIME, in Power management and ACPI options.
You have to enable this first, then it will show up. The help in make
menuconfig ('/' + 'USB_SUSPEND') will show this:
Symbol: USB_SUSPEND [=n]
Type : boolean
Prompt: USB runtime power management (autosuspend) and wakeup
Defined at drivers/usb/core/Kconfig:93
Depends on: USB_SUPPORT [=y] && USB [=m] && PM_RUNTIME [=n]
Location:
-> Device Drivers
-> USB support (USB_SUPPORT [=y])
-> Support for Host-side USB (USB [=m])
Wonko
09-21-2011, 12:36 PM
Adam Carter
Missing kernel config parameter
> * CONFIG_USB_SUSPEND: is not set when it should be.
>
> But:
>
> $ grep SUSPEND /usr/src/linux/.config
>
> CONFIG_ARCH_SUSPEND_POSSIBLE=y
>
> CONFIG_SUSPEND=y
>
> CONFIG_SUSPEND_FREEZER=y
>
> # CONFIG_PM_TEST_SUSPEND is not set
>
> No trace of USB_SUSPEND.
You cant search that way. Use the search in make menuconfig/xconfig.
It will require something else to be enabled before it is possible to
enable it.
09-21-2011, 12:54 PM
Peter Humphrey
Missing kernel config parameter
On Wednesday 21 September 2011 13:35:15 Alex Schuster wrote:
> It depends on CONFIG_PM_RUNTIME, in Power management and ACPI options.
> You have to enable this first, then it will show up.