public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* LKCD from SGI
@ 2000-11-22 15:20 64738
  2000-11-22 18:14 ` Matt D. Robinson
  0 siblings, 1 reply; 10+ messages in thread
From: 64738 @ 2000-11-22 15:20 UTC (permalink / raw)
  To: linux-kernel

Hi.

I tried to find some information on whether the Linux Kernel Crash Dumps 
patches are going into 2.4 (or 2.5). Has there been any decision?

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: LKCD from SGI
  2000-11-22 15:20 LKCD from SGI 64738
@ 2000-11-22 18:14 ` Matt D. Robinson
  2000-11-23  1:41   ` Peter Samuelson
  0 siblings, 1 reply; 10+ messages in thread
From: Matt D. Robinson @ 2000-11-22 18:14 UTC (permalink / raw)
  To: 64738; +Cc: linux-kernel

64738 wrote:
> 
> Hi.
> 
> I tried to find some information on whether the Linux Kernel Crash Dumps
> patches are going into 2.4 (or 2.5). Has there been any decision?

LKCD won't go into 2.4 (or 2.5) until I finish writing the direct
disk open/write functions that avoid going through the standard
IDE and SCSI drivers.  I'm working on it.

As far as work for 2.4 goes, we've got a version on SourceForge that
works well (for i386 and 95% for ia64).

As soon as the drivers are done, we'll hopefully get acceptance.

--Matt

P.S.  Any way we can standardize 'make install' in the kernel?  It's
      disturbing to have different install mechanisms per platform ...
      I can make the changes for a few platforms.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: LKCD from SGI
  2000-11-22 18:14 ` Matt D. Robinson
@ 2000-11-23  1:41   ` Peter Samuelson
  2000-11-24 23:40     ` Eric W. Biederman
  0 siblings, 1 reply; 10+ messages in thread
From: Peter Samuelson @ 2000-11-23  1:41 UTC (permalink / raw)
  To: Matt D. Robinson; +Cc: 64738, linux-kernel


[Matt D. Robinson]
> Any way we can standardize 'make install' in the kernel?  It's
> disturbing to have different install mechanisms per platform ...
> I can make the changes for a few platforms.

2.5 material, already on the todo list.

Peter
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: LKCD from SGI
  2000-11-23  1:41   ` Peter Samuelson
@ 2000-11-24 23:40     ` Eric W. Biederman
  2000-11-25  1:58       ` Keith Owens
  0 siblings, 1 reply; 10+ messages in thread
From: Eric W. Biederman @ 2000-11-24 23:40 UTC (permalink / raw)
  To: Peter Samuelson; +Cc: Matt D. Robinson, 64738, linux-kernel

Peter Samuelson <peter@cadcamlab.org> writes:

> [Matt D. Robinson]
> > Any way we can standardize 'make install' in the kernel?  It's
> > disturbing to have different install mechanisms per platform ...
> > I can make the changes for a few platforms.
> 
> 2.5 material, already on the todo list.

What is the thought on this.  There is an issue with different
boot loaders needing rather dramatically different formats...

Eric
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: LKCD from SGI
  2000-11-24 23:40     ` Eric W. Biederman
@ 2000-11-25  1:58       ` Keith Owens
  2000-11-25 13:18         ` J . A . Magallon
  0 siblings, 1 reply; 10+ messages in thread
From: Keith Owens @ 2000-11-25  1:58 UTC (permalink / raw)
  To: Eric W. Biederman; +Cc: linux-kernel, Matt D. Robinson

On 24 Nov 2000 16:40:50 -0700, 
ebiederm@xmission.com (Eric W. Biederman) wrote:
>Peter Samuelson <peter@cadcamlab.org> writes:
>
>> [Matt D. Robinson]
>> > Any way we can standardize 'make install' in the kernel?  It's
>> > disturbing to have different install mechanisms per platform ...
>> > I can make the changes for a few platforms.
>> 
>> 2.5 material, already on the todo list.
>
>What is the thought on this.  There is an issue with different
>boot loaders needing rather dramatically different formats...

2.5 kernel build wish list[1] has a couple of entries for standardising
the install targets.  My thinking (and I know that some people disagree
with this) is that the standard targets of a linux compile are only

* vmlinux
* System.map
* modules in the kernel tree (not installed yet)
* any other bits and pieces that are required to compile external
  modules against this config.

The install phases are many and varied, depending on whether you are
installing on this machine, on another machine, does your boot loader
understand ELF, do you have to do the [b]zImage fiddling first, are you
doing a network boot from ROM, a network boot over tftp etc.

In current kernels the install phases are mixed in with the compile
phase which makes it difficult to handle different install targets.
2.5 will have a default make target which does the compile phase but
does nothing that is install related, i.e. default is no [b]zImage, no
modules_install etc.  There will be separate install targets for any
combination that is required and for which people can be bothered
writing the make scripts.

[1] ftp://ftp.<country>.kernel.org/pub/linux/kernel/projects/kbuild/makefile-wishlist-2.5-...

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: LKCD from SGI
  2000-11-25  1:58       ` Keith Owens
@ 2000-11-25 13:18         ` J . A . Magallon
  2000-11-25 13:23           ` Keith Owens
  2000-11-25 13:44           ` Matthew Kirkwood
  0 siblings, 2 replies; 10+ messages in thread
From: J . A . Magallon @ 2000-11-25 13:18 UTC (permalink / raw)
  To: Keith Owens; +Cc: Eric W . Biederman, linux-kernel, Matt D . Robinson


On Sat, 25 Nov 2000 02:58:37 Keith Owens wrote:
> 
> 2.5 kernel build wish list[1] has a couple of entries for standardising
> the install targets.  My thinking (and I know that some people disagree
> with this) is that the standard targets of a linux compile are only
> 
> * vmlinux
> * System.map
> * modules in the kernel tree (not installed yet)
> * any other bits and pieces that are required to compile external
>   modules against this config.
> 

Could the default target install names int the std kernel be changed to 
System.map -> System.map-$(KERNELRELEASE)
vmlinuz    -> vmlinuz-$(KERNELRELEASE)
and then symlink to that ?

I think everyone that has a stable2.2, a devel 2.2 and a test24 is using that
method, so as many distros...

-- 
Juan Antonio Magallon Lacarta                                 #> cd /pub
mailto:jamagallon@able.es                                     #> more beer

Linux 2.2.18-pre23-vm #3 SMP Wed Nov 22 22:33:53 CET 2000 i686 unknown

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: LKCD from SGI
  2000-11-25 13:18         ` J . A . Magallon
@ 2000-11-25 13:23           ` Keith Owens
  2000-11-25 13:49             ` J . A . Magallon
  2000-11-25 13:44           ` Matthew Kirkwood
  1 sibling, 1 reply; 10+ messages in thread
From: Keith Owens @ 2000-11-25 13:23 UTC (permalink / raw)
  To: jamagallon; +Cc: linux-kernel

On Sat, 25 Nov 2000 14:18:30 +0100, 
"J . A . Magallon" <jamagallon@able.es> wrote:
>On Sat, 25 Nov 2000 02:58:37 Keith Owens wrote:
>> 2.5 kernel build wish list[1] has a couple of entries for standardising
>> the install targets.  My thinking (and I know that some people disagree
>> with this) is that the standard targets of a linux compile are only
>> 
>> * vmlinux
>> * System.map
>> * modules in the kernel tree (not installed yet)
>> * any other bits and pieces that are required to compile external
>>   modules against this config.
>
>Could the default target install names int the std kernel be changed to 
>System.map -> System.map-$(KERNELRELEASE)
>vmlinuz    -> vmlinuz-$(KERNELRELEASE)
>and then symlink to that ?

We could do a lot of things in the install targets.  But none of them
are going to be done before kernel 2.5.  We are in code freeze (is this
freeze number 4 or 5?).  Changing the install method just before a new
kernel branch is released will not be popular with the distributors.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: LKCD from SGI
  2000-11-25 13:18         ` J . A . Magallon
  2000-11-25 13:23           ` Keith Owens
@ 2000-11-25 13:44           ` Matthew Kirkwood
  1 sibling, 0 replies; 10+ messages in thread
From: Matthew Kirkwood @ 2000-11-25 13:44 UTC (permalink / raw)
  To: J . A . Magallon; +Cc: Keith Owens, linux-kernel

[-- Attachment #1: Type: TEXT/PLAIN, Size: 570 bytes --]

On Sat, 25 Nov 2000, J . A . Magallon wrote:

> Could the default target install names int the std kernel be changed to 
> System.map -> System.map-$(KERNELRELEASE)
> vmlinuz    -> vmlinuz-$(KERNELRELEASE)
> and then symlink to that ?
>
> I think everyone that has a stable2.2, a devel 2.2 and a test24 is
> using that method, so as many distros...

The /sbin/installkernel hooks allow you to do this (and
other stuff) very easily:

# make install

does it all for you on Red Hat.  I've attached their
/sbin/installkernel in case you want to see how its
done.

Matthew.

[-- Attachment #2: Type: TEXT/PLAIN, Size: 758 bytes --]

#! /bin/sh

#
# /sbin/installkernel  - written by tyson@rwii.com
#

INSTALL_PATH=/boot

KERNEL_VERSION=$1
BOOTIMAGE=$2
MAPFILE=$3

if [ -f $INSTALL_PATH/vmlinuz-$KERNEL_VERSION ]; then 
      mv $INSTALL_PATH/vmlinuz-$KERNEL_VERSION \
              $INSTALL_PATH/vmlinuz.old;
fi

if [ -f $INSTALL_PATH/System.map-$KERNEL_VERSION ]; then 
      mv $INSTALL_PATH/System.map-$KERNEL_VERSION \
              $INSTALL_PATH/System.map.old; 
fi

cat $BOOTIMAGE > $INSTALL_PATH/vmlinuz-$KERNEL_VERSION
cp $MAPFILE $INSTALL_PATH/System.map-$KERNEL_VERSION

ln -fs vmlinuz-$KERNEL_VERSION $INSTALL_PATH/vmlinuz
ln -fs System.map-$KERNEL_VERSION $INSTALL_PATH/System.map

if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: LKCD from SGI
  2000-11-25 13:23           ` Keith Owens
@ 2000-11-25 13:49             ` J . A . Magallon
  0 siblings, 0 replies; 10+ messages in thread
From: J . A . Magallon @ 2000-11-25 13:49 UTC (permalink / raw)
  To: Keith Owens; +Cc: linux-kernel


On Sat, 25 Nov 2000 14:23:57 Keith Owens wrote:
> On Sat, 25 Nov 2000 14:18:30 +0100, 
> "J . A . Magallon" <jamagallon@able.es> wrote:
> >Could the default target install names int the std kernel be changed to 
> >System.map -> System.map-$(KERNELRELEASE)
> >vmlinuz    -> vmlinuz-$(KERNELRELEASE)
> >and then symlink to that ?
> 
> We could do a lot of things in the install targets.  But none of them
> are going to be done before kernel 2.5.  We are in code freeze (is this
> freeze number 4 or 5?).  Changing the install method just before a new
> kernel branch is released will not be popular with the distributors.

Yes, I know. I thought you were talking about '2.5 kernel build wish list'.

-- 
Juan Antonio Magallon Lacarta                                 #> cd /pub
mailto:jamagallon@able.es                                     #> more beer

Linux 2.2.18-pre23-vm #3 SMP Wed Nov 22 22:33:53 CET 2000 i686 unknown

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: LKCD from SGI
@ 2000-11-25 15:17 64738
  0 siblings, 0 replies; 10+ messages in thread
From: 64738 @ 2000-11-25 15:17 UTC (permalink / raw)
  To: ebiederm; +Cc: peter, yakker, linux-kernel

Hello,

in the last time I got several e-mails from you, but that must be a mistake 
because I do not know you and I don´t know why you send me these e-mails. 
Please check whether you have the address schwung@rumms.uni-mannheim.de in your 
address-book. Please delete this address!! In past you have put this address in 
the field: copy and blind-copy.

Thank you very much!

Jan Woschinski
Schwung (University of Mannheim)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2000-11-25 15:48 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-11-22 15:20 LKCD from SGI 64738
2000-11-22 18:14 ` Matt D. Robinson
2000-11-23  1:41   ` Peter Samuelson
2000-11-24 23:40     ` Eric W. Biederman
2000-11-25  1:58       ` Keith Owens
2000-11-25 13:18         ` J . A . Magallon
2000-11-25 13:23           ` Keith Owens
2000-11-25 13:49             ` J . A . Magallon
2000-11-25 13:44           ` Matthew Kirkwood
  -- strict thread matches above, loose matches on Subject: below --
2000-11-25 15:17 64738

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox