* [gentoo-user] Kernel Config Manager
@ 2006-12-23 1:07 Trenton Adams
2006-12-23 3:25 ` Dale
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Trenton Adams @ 2006-12-23 1:07 UTC (permalink / raw
To: gentoo-user
Hi guys,
Does anyone know of a kernel config manager that manages the kernel
configuration settings that I want? For instance, I want this network
driver, and that driver, and the other driver.
Want this to be managed outside the standard menu config because it
will make it easier to switch to a new kernel, such as xen-sources, or
vanilla-sources. I can then keep the default settings of that
particular kernel, and enable all the *extra* stuff that I need.
Any help would be much appreciated.
Thanks.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] Kernel Config Manager
2006-12-23 1:07 [gentoo-user] Kernel Config Manager Trenton Adams
@ 2006-12-23 3:25 ` Dale
2006-12-23 3:55 ` [gentoo-user] " Harm Geerts
` (2 subsequent siblings)
3 siblings, 0 replies; 8+ messages in thread
From: Dale @ 2006-12-23 3:25 UTC (permalink / raw
To: gentoo-user
Trenton Adams wrote:
> Hi guys,
>
> Does anyone know of a kernel config manager that manages the kernel
> configuration settings that I want? For instance, I want this network
> driver, and that driver, and the other driver.
>
> Want this to be managed outside the standard menu config because it
> will make it easier to switch to a new kernel, such as xen-sources, or
> vanilla-sources. I can then keep the default settings of that
> particular kernel, and enable all the *extra* stuff that I need.
>
> Any help would be much appreciated.
>
> Thanks.
If you want a GUI type thing, you can try make xconfig instead of make
menuconfig. Make sure you are in the right directory though.
/usr/src/linux should work.
Is that what you are looking for?
Dale
:-) :-) :-)
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-user] Re: Kernel Config Manager
2006-12-23 1:07 [gentoo-user] Kernel Config Manager Trenton Adams
2006-12-23 3:25 ` Dale
@ 2006-12-23 3:55 ` Harm Geerts
2006-12-23 8:10 ` [gentoo-user] " Neil Bothwick
2006-12-23 15:22 ` Daniel Iliev
3 siblings, 0 replies; 8+ messages in thread
From: Harm Geerts @ 2006-12-23 3:55 UTC (permalink / raw
To: gentoo-user
On Saturday 23 December 2006 02:07, Trenton Adams wrote:
> Hi guys,
>
> Does anyone know of a kernel config manager that manages the kernel
> configuration settings that I want? For instance, I want this network
> driver, and that driver, and the other driver.
>
> Want this to be managed outside the standard menu config because it
> will make it easier to switch to a new kernel, such as xen-sources, or
> vanilla-sources. I can then keep the default settings of that
> particular kernel, and enable all the *extra* stuff that I need.
Are you aware that the kernel settings are stored
in /usr/src/<kernel-version>/.config ?
You can copy it to your new kernel source.
Or are you actually looking for a manager that does this for you?
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] Kernel Config Manager
2006-12-23 1:07 [gentoo-user] Kernel Config Manager Trenton Adams
2006-12-23 3:25 ` Dale
2006-12-23 3:55 ` [gentoo-user] " Harm Geerts
@ 2006-12-23 8:10 ` Neil Bothwick
2006-12-23 15:22 ` Daniel Iliev
3 siblings, 0 replies; 8+ messages in thread
From: Neil Bothwick @ 2006-12-23 8:10 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 511 bytes --]
On Fri, 22 Dec 2006 18:07:42 -0700, Trenton Adams wrote:
> Want this to be managed outside the standard menu config because it
> will make it easier to switch to a new kernel, such as xen-sources, or
> vanilla-sources. I can then keep the default settings of that
> particular kernel, and enable all the *extra* stuff that I need.
Copy .config from your old kernel's directory to the new one and run
"make oldconfig".
--
Neil Bothwick
How do you know when it's time to tune your bagpipes?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] Kernel Config Manager
2006-12-23 1:07 [gentoo-user] Kernel Config Manager Trenton Adams
` (2 preceding siblings ...)
2006-12-23 8:10 ` [gentoo-user] " Neil Bothwick
@ 2006-12-23 15:22 ` Daniel Iliev
2006-12-23 15:32 ` Dale
2006-12-23 16:57 ` Neil Bothwick
3 siblings, 2 replies; 8+ messages in thread
From: Daniel Iliev @ 2006-12-23 15:22 UTC (permalink / raw
To: gentoo-user
Trenton Adams wrote:
> Hi guys,
>
> Does anyone know of a kernel config manager that manages the kernel
> configuration settings that I want? For instance, I want this network
> driver, and that driver, and the other driver.
>
> Want this to be managed outside the standard menu config because it
> will make it easier to switch to a new kernel, such as xen-sources, or
> vanilla-sources. I can then keep the default settings of that
> particular kernel, and enable all the *extra* stuff that I need.
>
> Any help would be much appreciated.
>
> Thanks.
Yet another approach:
cd /usr/src/linux/
zcat /proc/config.gz > .config
make oldconfig
make config | menuconfig | xconfig
--
Best regards,
Daniel
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] Kernel Config Manager
2006-12-23 15:22 ` Daniel Iliev
@ 2006-12-23 15:32 ` Dale
2006-12-25 20:18 ` Richard Fish
2006-12-23 16:57 ` Neil Bothwick
1 sibling, 1 reply; 8+ messages in thread
From: Dale @ 2006-12-23 15:32 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 330 bytes --]
Daniel Iliev wrote:
>
> Yet another approach:
>
> cd /usr/src/linux/
> zcat /proc/config.gz > .config
> make oldconfig
> make config | menuconfig | xconfig
>
>
>
>
If he has that enabled in the kernel. That can be a good thing to have
around though. Especially if you accidentally erase your old config.
Dale
:-) :-) :-)
[-- Attachment #2: Type: text/html, Size: 683 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] Kernel Config Manager
2006-12-23 15:22 ` Daniel Iliev
2006-12-23 15:32 ` Dale
@ 2006-12-23 16:57 ` Neil Bothwick
1 sibling, 0 replies; 8+ messages in thread
From: Neil Bothwick @ 2006-12-23 16:57 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 193 bytes --]
On Sat, 23 Dec 2006 17:22:36 +0200, Daniel Iliev wrote:
> make config | menuconfig | xconfig
... | gconfig
--
Neil Bothwick
System halted - Press all keys at once to continue.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] Kernel Config Manager
2006-12-23 15:32 ` Dale
@ 2006-12-25 20:18 ` Richard Fish
0 siblings, 0 replies; 8+ messages in thread
From: Richard Fish @ 2006-12-25 20:18 UTC (permalink / raw
To: gentoo-user
On 12/23/06, Dale <dalek@exceedtech.net> wrote:
> If he has that enabled in the kernel. That can be a good thing to have
> around though. Especially if you accidentally erase your old config.
It is also very useful for being able to check the configuration of
the kernel you are _actually_ running, vs what you _think_ you are
running! :-)
-Richard
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2006-12-25 20:24 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-23 1:07 [gentoo-user] Kernel Config Manager Trenton Adams
2006-12-23 3:25 ` Dale
2006-12-23 3:55 ` [gentoo-user] " Harm Geerts
2006-12-23 8:10 ` [gentoo-user] " Neil Bothwick
2006-12-23 15:22 ` Daniel Iliev
2006-12-23 15:32 ` Dale
2006-12-25 20:18 ` Richard Fish
2006-12-23 16:57 ` Neil Bothwick
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox