* Kernel Compile
@ 1999-02-12 17:07 Mike Hill
1999-02-13 23:09 ` Thomas Bogendoerfer
0 siblings, 1 reply; 9+ messages in thread
From: Mike Hill @ 1999-02-12 17:07 UTC (permalink / raw)
To: linux
What does the .config file look like these days for a successful compile?
Alex? Thomas?
Which version of egcs is recommended? Mine's still the one from hardhat
5.1.
Thanks,
Mike
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Kernel Compile
1999-02-12 17:07 Kernel Compile Mike Hill
@ 1999-02-13 23:09 ` Thomas Bogendoerfer
0 siblings, 0 replies; 9+ messages in thread
From: Thomas Bogendoerfer @ 1999-02-13 23:09 UTC (permalink / raw)
To: Mike Hill, linux
On Fri, Feb 12, 1999 at 12:07:07PM -0500, Mike Hill wrote:
> What does the .config file look like these days for a successful compile?
> Alex? Thomas?
I've uploaded the .config, I've used for the vmlinux-indy-990212.gz. URL is:
ftp://ftp.linux.sgi.com/pub/linux/mips/test/vmlinux-indy-990212.config
> Which version of egcs is recommended? Mine's still the one from hardhat
> 5.1.
I'm still using a gcc-2.7.2.3 cross compiler.
Thomas.
--
This device has completely bogus header. Compaq scores again :-|
It's a host bridge, but it should be called ghost bridge instead ;^)
[Martin `MJ' Mares on linux-kernel]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Kernel compile
@ 2003-03-12 6:56 pshook
2003-03-12 14:34 ` terry white
2003-03-12 16:09 ` Shailesh Hingole
0 siblings, 2 replies; 9+ messages in thread
From: pshook @ 2003-03-12 6:56 UTC (permalink / raw)
To: linux-config
Not sure if this is the correct newsgroup, if not can you direct me to
the right one?
I am trying to compile my kernel for RH7.3. It doesn't generate any
errors, but it fails to find/load eth0 and vfat. It won't go past
starting system logger and has many no such file or directory statements
after the first fail which is eth0.
Is there a way to set the make xconfig back to a default or what the
original kernel on my system is? I can still boot with the original
kernel but not the new one.
Please help I'm an extreme newbie.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Kernel compile
2003-03-12 6:56 Kernel compile pshook
@ 2003-03-12 14:34 ` terry white
2003-03-12 16:09 ` Shailesh Hingole
1 sibling, 0 replies; 9+ messages in thread
From: terry white @ 2003-03-12 14:34 UTC (permalink / raw)
To: linux-config
on "3-11-2003" "pshook" writ:
: Not sure if this is the correct newsgroup, if not can you direct me
: to the right one?
... the linux-admin list is VERY helpful.
: I am trying to compile my kernel for RH7.3. It doesn't generate any
: errors, but it fails to find/load eth0 and vfat. It won't go past
: starting system logger and has many no such file or directory statements
from the sounds of it, you missed including something with regard to
networking, and vfat in particular.
: Is there a way to set the make xconfig back to a default or what the
: original kernel on my system is?
when you run the config program, it creates a config file. on RH-6.x
this is named ".config" , and on RH-8.0 "config". if you 'rm' that file,
config uses its defaults values. i do not know which name used for
RH-7.x.
i've made a habit of keeping the config files for my most recent
builds. typically, i call them "config-ST", where 'S' is the secondary
version number, and 'T' its tertiary counterpart. these i keep in the
root of the source tree; specifically, "/usr/src". i use the following
script to report differences in them:
#!/bin/sh
#
# find difference between ./.config files for linux
fgrep -v \# config-[0-9]* | sort -t ":" -k 2,2 \
| uniq -s 10 -u | sort > config.diff
note however, this would be useless if going from a 2.2.x to a 2.4.x
kernel ...
--
... i'm a man, but i can change,
if i have to , i guess ...
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Kernel compile
2003-03-12 6:56 Kernel compile pshook
2003-03-12 14:34 ` terry white
@ 2003-03-12 16:09 ` Shailesh Hingole
1 sibling, 0 replies; 9+ messages in thread
From: Shailesh Hingole @ 2003-03-12 16:09 UTC (permalink / raw)
To: pshook; +Cc: linux-config
did you also run the following commands while compiling the kernel
make modules
make modules_install
if you have then i think you have not included the appropriate support for
your ethernet card into the kernel. Boot your normal redhat kernel and
give the lsmod command to see all the loaded modules.
You need to make sure that all these modules are also compiled with your
kernel.
As far as i know redhat doesn't create the config file for the
configuration that it installs.
hope that helps..
Shailesh
On Tue, 11 Mar 2003, pshook wrote:
> Not sure if this is the correct newsgroup, if not can you direct me to
> the right one?
>
> I am trying to compile my kernel for RH7.3. It doesn't generate any
> errors, but it fails to find/load eth0 and vfat. It won't go past
> starting system logger and has many no such file or directory statements
>
> after the first fail which is eth0.
>
> Is there a way to set the make xconfig back to a default or what the
> original kernel on my system is? I can still boot with the original
> kernel but not the new one.
>
> Please help I'm an extreme newbie.
>
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-config" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* kernel compile
@ 2005-04-07 23:09 Allison
2005-04-08 0:30 ` Alexander Samad
2005-04-08 18:17 ` Adrian Bunk
0 siblings, 2 replies; 9+ messages in thread
From: Allison @ 2005-04-07 23:09 UTC (permalink / raw)
To: linux-kernel
Hi,
Is it possible to compile a 2.4.20 kernel on a 2.6 system ?
And use the new image successfully ?
thanks,
Allison
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: kernel compile
2005-04-07 23:09 kernel compile Allison
@ 2005-04-08 0:30 ` Alexander Samad
2005-04-08 18:17 ` Adrian Bunk
1 sibling, 0 replies; 9+ messages in thread
From: Alexander Samad @ 2005-04-08 0:30 UTC (permalink / raw)
To: Allison; +Cc: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 610 bytes --]
Hi
Should not be a problem as the compilation doesn't use any part of the
running kernel. As long as you have the required components
Alex
On Thu, Apr 07, 2005 at 07:09:18PM -0400, Allison wrote:
> Hi,
>
> Is it possible to compile a 2.4.20 kernel on a 2.6 system ?
> And use the new image successfully ?
>
> thanks,
> Allison
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: kernel compile
2005-04-07 23:09 kernel compile Allison
2005-04-08 0:30 ` Alexander Samad
@ 2005-04-08 18:17 ` Adrian Bunk
2005-04-08 18:33 ` Arjan van de Ven
1 sibling, 1 reply; 9+ messages in thread
From: Adrian Bunk @ 2005-04-08 18:17 UTC (permalink / raw)
To: Allison; +Cc: linux-kernel
On Thu, Apr 07, 2005 at 07:09:18PM -0400, Allison wrote:
> Hi,
>
> Is it possible to compile a 2.4.20 kernel on a 2.6 system ?
> And use the new image successfully ?
It doesn't matter what the system you are compiling on is running.
> thanks,
> Allison
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: kernel compile
2005-04-08 18:17 ` Adrian Bunk
@ 2005-04-08 18:33 ` Arjan van de Ven
0 siblings, 0 replies; 9+ messages in thread
From: Arjan van de Ven @ 2005-04-08 18:33 UTC (permalink / raw)
To: Adrian Bunk; +Cc: Allison, linux-kernel
On Fri, 2005-04-08 at 20:17 +0200, Adrian Bunk wrote:
> On Thu, Apr 07, 2005 at 07:09:18PM -0400, Allison wrote:
>
> > Hi,
> >
> > Is it possible to compile a 2.4.20 kernel on a 2.6 system ?
> > And use the new image successfully ?
>
> It doesn't matter what the system you are compiling on is running.
... as long as you have a modutils installed that can deal with 2.4
kernels. Not all distros that ship 2.6 ship a modutils that does...
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2005-04-08 18:34 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-07 23:09 kernel compile Allison
2005-04-08 0:30 ` Alexander Samad
2005-04-08 18:17 ` Adrian Bunk
2005-04-08 18:33 ` Arjan van de Ven
-- strict thread matches above, loose matches on Subject: below --
2003-03-12 6:56 Kernel compile pshook
2003-03-12 14:34 ` terry white
2003-03-12 16:09 ` Shailesh Hingole
1999-02-12 17:07 Kernel Compile Mike Hill
1999-02-13 23:09 ` Thomas Bogendoerfer
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.