* small feature request
@ 2001-12-01 0:23 Garst R. Reese
2001-12-01 1:51 ` george anzinger
2001-12-01 3:25 ` Keith Owens
0 siblings, 2 replies; 8+ messages in thread
From: Garst R. Reese @ 2001-12-01 0:23 UTC (permalink / raw)
To: linux-kernel
Would it possible to put a header on System.map indicating the kernel
version?
Sometimes my little brain forgets what kernel System.old is for.
Thanks, Garst
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: small feature request
2001-12-01 0:23 small feature request Garst R. Reese
@ 2001-12-01 1:51 ` george anzinger
2001-12-01 11:49 ` Thomas Hofer
2001-12-01 3:25 ` Keith Owens
1 sibling, 1 reply; 8+ messages in thread
From: george anzinger @ 2001-12-01 1:51 UTC (permalink / raw)
To: Garst R. Reese; +Cc: linux-kernel
"Garst R. Reese" wrote:
>
> Would it possible to put a header on System.map indicating the kernel
> version?
> Sometimes my little brain forgets what kernel System.old is for.
> Thanks, Garst
> -
Just name it: System.map.2.4.16-xx (where xx is the build number) This
is easy to automate in your install script. Then real system map is "ln
-s"ed to the correct file.
--
George george@mvista.com
High-res-timers: http://sourceforge.net/projects/high-res-timers/
Real time sched: http://sourceforge.net/projects/rtsched/
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: small feature request
2001-12-01 1:51 ` george anzinger
@ 2001-12-01 11:49 ` Thomas Hofer
0 siblings, 0 replies; 8+ messages in thread
From: Thomas Hofer @ 2001-12-01 11:49 UTC (permalink / raw)
To: linux-kernel
george anzinger wrote (Samstag, 1. Dezember 2001 02:51):
> "Garst R. Reese" wrote:
> > Would it possible to put a header on System.map indicating the
> > kernel version?
> > Sometimes my little brain forgets what kernel System.old is for.
> > Thanks, Garst
> > -
>
> Just name it: System.map.2.4.16-xx (where xx is the build number)
> This is easy to automate in your install script. Then real system
> map is "ln -s"ed to the correct file.
If you have multiple kernels in /boot, name it System.map-2.x.xx-xxxx
and let booting kernel decide on his own which map to take. No need for
a symlink. If there's a /boot/System.map the kernel will ignore all the
other maps.
Thomas.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: small feature request
2001-12-01 0:23 small feature request Garst R. Reese
2001-12-01 1:51 ` george anzinger
@ 2001-12-01 3:25 ` Keith Owens
2001-12-01 3:42 ` Garst R. Reese
2001-12-06 6:58 ` Albert D. Cahalan
1 sibling, 2 replies; 8+ messages in thread
From: Keith Owens @ 2001-12-01 3:25 UTC (permalink / raw)
To: Garst R. Reese; +Cc: linux-kernel
On Fri, 30 Nov 2001 20:23:07 -0400,
"Garst R. Reese" <reese@isn.net> wrote:
>Would it possible to put a header on System.map indicating the kernel
>version?
>Sometimes my little brain forgets what kernel System.old is for.
It is on my list for kbuild 2.5, once I start on the new design for
reconciling kernel and modules. Goodbye modversions, hello "something
that works" (I hope).
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: small feature request
2001-12-01 3:25 ` Keith Owens
@ 2001-12-01 3:42 ` Garst R. Reese
2001-12-06 6:58 ` Albert D. Cahalan
1 sibling, 0 replies; 8+ messages in thread
From: Garst R. Reese @ 2001-12-01 3:42 UTC (permalink / raw)
To: linux-kernel
Yea Keith. Good luck.
Keith Owens wrote:
> It is on my list for kbuild 2.5, once I start on the new design for
> reconciling kernel and modules. Goodbye modversions, hello "something
> that works" (I hope).
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: small feature request
2001-12-01 3:25 ` Keith Owens
2001-12-01 3:42 ` Garst R. Reese
@ 2001-12-06 6:58 ` Albert D. Cahalan
2001-12-06 7:33 ` Keith Owens
2001-12-06 8:51 ` Garst R. Reese
1 sibling, 2 replies; 8+ messages in thread
From: Albert D. Cahalan @ 2001-12-06 6:58 UTC (permalink / raw)
To: Keith Owens; +Cc: Garst R. Reese, linux-kernel
Keith Owens writes:
> "Garst R. Reese" <reese@isn.net> wrote:
>> Would it possible to put a header on System.map indicating the kernel
>> version?
>> Sometimes my little brain forgets what kernel System.old is for.
>
> It is on my list for kbuild 2.5, once I start on the new design for
Nooooo!!!!!
Don't break stuff by adding headers. There is already a version
in the file. It's in decimal, which sucks, but this will find it:
grep ' Version_' System.map
Adding a random 128-bit ID might be nice, as long as it's done
in the same sort of way and is available via /proc. Something
like this would do: kern_128_id_UkZd1JLdOvAsALfFEL1UI
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: small feature request
2001-12-06 6:58 ` Albert D. Cahalan
@ 2001-12-06 7:33 ` Keith Owens
2001-12-06 8:51 ` Garst R. Reese
1 sibling, 0 replies; 8+ messages in thread
From: Keith Owens @ 2001-12-06 7:33 UTC (permalink / raw)
To: Albert D. Cahalan; +Cc: Garst R. Reese, linux-kernel
On Thu, 6 Dec 2001 01:58:55 -0500 (EST),
"Albert D. Cahalan" <acahalan@cs.uml.edu> wrote:
>Keith Owens writes:
>> "Garst R. Reese" <reese@isn.net> wrote:
>
>>> Would it possible to put a header on System.map indicating the kernel
>>> version?
>>> Sometimes my little brain forgets what kernel System.old is for.
>>
>> It is on my list for kbuild 2.5, once I start on the new design for
>
>Nooooo!!!!!
>
>Don't break stuff by adding headers. There is already a version
>in the file. It's in decimal, which sucks, but this will find it:
>
>grep ' Version_' System.map
>
>Adding a random 128-bit ID might be nice, as long as it's done
>in the same sort of way and is available via /proc. Something
>like this would do: kern_128_id_UkZd1JLdOvAsALfFEL1UI
Strange, that is exactly what I was think of, adding symbols containing
information that tie the kernel, modules and System.map together more
reliably than the current "use some random System.map" method.
Do you want those exclamation marks back so they can be recycled?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: small feature request
2001-12-06 6:58 ` Albert D. Cahalan
2001-12-06 7:33 ` Keith Owens
@ 2001-12-06 8:51 ` Garst R. Reese
1 sibling, 0 replies; 8+ messages in thread
From: Garst R. Reese @ 2001-12-06 8:51 UTC (permalink / raw)
To: Albert D. Cahalan; +Cc: Keith Owens, linux-kernel
"Albert D. Cahalan" wrote:
>
> Keith Owens writes:
> > "Garst R. Reese" <reese@isn.net> wrote:
>
> >> Would it possible to put a header on System.map indicating the kernel
> >> version?
> >> Sometimes my little brain forgets what kernel System.old is for.
> >
> > It is on my list for kbuild 2.5, once I start on the new design for
>
> Nooooo!!!!!
>
> Don't break stuff by adding headers. There is already a version
> in the file. It's in decimal, which sucks, but this will find it:
>
> grep ' Version_' System.map
>
> Adding a random 128-bit ID might be nice, as long as it's done
> in the same sort of way and is available via /proc. Something
> like this would do: kern_128_id_UkZd1JLdOvAsALfFEL1UI
That grep does not distinguish extra versions.
Garst
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2001-12-06 8:52 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-12-01 0:23 small feature request Garst R. Reese
2001-12-01 1:51 ` george anzinger
2001-12-01 11:49 ` Thomas Hofer
2001-12-01 3:25 ` Keith Owens
2001-12-01 3:42 ` Garst R. Reese
2001-12-06 6:58 ` Albert D. Cahalan
2001-12-06 7:33 ` Keith Owens
2001-12-06 8:51 ` Garst R. Reese
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox