 |
|
 |
|
Next: Order Lortab online without prescription, buy onl..
|
| Author |
Message |
External

Since: Jan 15, 2009 Posts: 4
|
(Msg. 1) Posted: Fri Sep 25, 2009 5:20 pm
Post subject: Last kernel compilation 2.6.31.1 Archived from groups: comp>os>linux>misc, others (more info?)
|
|
|
Hi everybody:
When compiling last stable kernel, I go the following at the end of
make
.. . . . . . . . . .
CC init/version.o
LD init/built-in.o
LD .tmp_vmlinux1
drivers/built-in.o(.init.text+0x4905): In function `con_init':
: undefined reference to `.L1714'
make: *** [.tmp_vmlinux1] Error 1
.. . . . . . . . . .
How can I solve it?
Previously, I took my former .config file from the current kernel I am
using (2.6.23.12) and ran 'make oldconfig', then I made 'make'.
Any help will be appreciated.
Marco
-------------------------------------------------
Freedom is not a permission for chaos. |
|
| Back to top |
|
 |  |
External

Since: Oct 23, 2005 Posts: 36
|
(Msg. 2) Posted: Mon Sep 28, 2009 11:20 am
Post subject: Re: Last kernel compilation 2.6.31.1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
macruzq wrote:
> Hi everybody:
>
> When compiling last stable kernel, I go the following at the end of
> make
>
> . . . . . . . . . .
>
> CC init/version.o
> LD init/built-in.o
> LD .tmp_vmlinux1
> drivers/built-in.o(.init.text+0x4905): In function `con_init':
> : undefined reference to `.L1714'
> make: *** [.tmp_vmlinux1] Error 1
>
> . . . . . . . . . .
>
> How can I solve it?
>
> Previously, I took my former .config file from the current kernel I am
> using (2.6.23.12) and ran 'make oldconfig', then I made 'make'.
>
> Any help will be appreciated.
The .Lnnnn labels are GCC code generation internal
labels, which should always be defined in the same
compilation unit. It seems that the compilation of
the drivers/built-in.o object file has gone awry.
Try to delete the object file and re-make.
--
Tauno Voipio
tauno voipio (at) iki fi |
|
| Back to top |
|
 |  |
External

Since: Sep 13, 2006 Posts: 62
|
(Msg. 3) Posted: Mon Sep 28, 2009 12:15 pm
Post subject: Re: Last kernel compilation 2.6.31.1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
At Mon, 28 Sep 2009 16:01:11 GMT Tauno Voipio <tauno.voipio.DeleteThis@INVALIDiki.fi> wrote:
>
> macruzq wrote:
> > Hi everybody:
> >
> > When compiling last stable kernel, I go the following at the end of
> > make
> >
> > . . . . . . . . . .
> >
> > CC init/version.o
> > LD init/built-in.o
> > LD .tmp_vmlinux1
> > drivers/built-in.o(.init.text+0x4905): In function `con_init':
> > : undefined reference to `.L1714'
> > make: *** [.tmp_vmlinux1] Error 1
> >
> > . . . . . . . . . .
> >
> > How can I solve it?
> >
> > Previously, I took my former .config file from the current kernel I am
> > using (2.6.23.12) and ran 'make oldconfig', then I made 'make'.
> >
> > Any help will be appreciated.
>
> The .Lnnnn labels are GCC code generation internal
> labels, which should always be defined in the same
> compilation unit. It seems that the compilation of
> the drivers/built-in.o object file has gone awry.
>
> Try to delete the object file and re-make.
Wondering aloud: did the OP run out of disk space somewhere? Maybe /tmp
or /usr/tmp is full?
>
--
Robert Heller -- 978-544-6933
Deepwoods Software -- Download the Model Railroad System
http://www.deepsoft.com/ -- Binaries for Linux and MS-Windows
heller.DeleteThis@deepsoft.com -- http://www.deepsoft.com/ModelRailroadSystem/ |
|
| Back to top |
|
 |  |
External

Since: Oct 16, 2009 Posts: 2
|
(Msg. 4) Posted: Fri Oct 16, 2009 4:30 pm
Post subject: Re: Last kernel compilation 2.6.31.1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Sep 28, 11:01 am, Tauno Voipio <tauno.voi... DeleteThis @INVALIDiki.fi> wrote:
> macruzqwrote:
> > Hi everybody:
>
> > When compiling last stable kernel, I go the following at the end of
> > make
>
> > . . . . . . . . . .
>
> > CC init/version.o
> > LD init/built-in.o
> > LD .tmp_vmlinux1
> > drivers/built-in.o(.init.text+0x4905): In function `con_init':
> > : undefined reference to `.L1714'
> > make: *** [.tmp_vmlinux1] Error 1
>
> > . . . . . . . . . .
>
> > How can I solve it?
>
> > Previously, I took my former .config file from the current kernel I am
> > using (2.6.23.12) and ran 'make oldconfig', then I made 'make'.
>
> > Any help will be appreciated.
>
Hi,
> The .Lnnnn labels are GCC code generation internal
> labels, which should always be defined in the same
> compilation unit. It seems that the compilation of
> the drivers/built-in.o object file has gone awry.
>
> Try to delete the object file and re-make.
I deleted drivers/built-in.o but the issue persists.
Also, I have plenty of room in my HD so there is no problem with
space.
I will keep on trying,
Thanks
Marco
>
> --
>
> Tauno Voipio
> tauno voipio (at) iki fi |
|
| Back to top |
|
 |  |
External

Since: Jan 01, 2009 Posts: 9
|
(Msg. 5) Posted: Sat Oct 17, 2009 3:20 am
Post subject: Re: Last kernel compilation 2.6.31.1 [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
"Marco A. Cruz Quevedo" <macruzq DeleteThis @myway.com> wrote:
> On Sep 28, 11:01 am, Tauno Voipio <tauno.voi... DeleteThis @INVALIDiki.fi> wrote:
> > > When compiling last stable kernel, I go the following at the end of
> > > make
> >
> > > . . . . . . . . . .
> >
> > > CC init/version.o
> > > LD init/built-in.o
> > > LD .tmp_vmlinux1
> > > drivers/built-in.o(.init.text+0x4905): In function `con_init':
> > > : undefined reference to `.L1714'
> > > make: *** [.tmp_vmlinux1] Error 1
> >
> > > . . . . . . . . . .
> >
> > > How can I solve it?
> >
> > > Previously, I took my former .config file from the current kernel I am
> > > using (2.6.23.12) and ran 'make oldconfig', then I made 'make'.
> >
> > > Any help will be appreciated.
> >
> Hi,
> > The .Lnnnn labels are GCC code generation internal
> > labels, which should always be defined in the same
> > compilation unit. It seems that the compilation of
> > the drivers/built-in.o object file has gone awry.
> >
> > Try to delete the object file and re-make.
> I deleted drivers/built-in.o but the issue persists.
> Also, I have plenty of room in my HD so there is no problem with
> space.
>
> I will keep on trying,
>
> Thanks
>
> Marco
>
Have you the required build tools?
Ideally, upgrade both gcc and binutils to recent versions.
See Documentation/Changes
To upgrade a config file.
Copy the old config file to .config.
Perform a:
$ make oldconfig
or:
$ make silentoldconfig
Then:
$ make clean
I don't know if that matters, but you may have to reset CFLAGS and LDFLAGS if you had set unusual values.
$ CFLAGS= LDFLAGS= make
I don't think kbuild read them anyway.
It looks like an issue with ld(1). Line numbers are supposed to be both imported and exported by the same module.
--
André Gillibert |
|
| Back to top |
|
 |  |
| Related Topics: | acl and linux - hi, i have to work with acl and linux; how is the best file system to do it ? (i have heard reiserfs but i don't know....
Microsoft/LINUX debate. - Why does people brother having this Microsoft/LINUX mud-slinging thing? I am new to LINUX but installed REDHAT 8..
Multiple CD volume backup solution - Hi all I'm looking for a backup package that will allow me to span multiple CDs and also allow for individual CD..
virus scanner - Hi All was wondering if i can get some idea of what people are useing for virus scanners on Redhat 8. Its sendmail tha...
trailing slash in web urls - ya this may be a lame question but i have just setup apache 2.0.46 and when i connect to http://domain it gets the..
Need advice on linux distro - I Installed Debian Linux on a spare computer 2 months ago, and that was the first time I used linux. I've been using i... |
|
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
 |
|
|