2006-10-05 07:09:32

by David Woodhouse

[permalink] [raw]
Subject: [ANNOUNCE] linux-kernel-headers-2.6.19-rc1.tar.gz

A full set of user-visible kernel headers for all supported
architectures, exported from the 2.6.19-rc1 kernel, has been uploaded
to
ftp://ftp.kernel.org/pub/linux/kernel/people/dwmw2/kernel-headers/snapshot/

I had planned to do this for 2.6.18 but it wasn't quite in good enough
shape by then. This one should be fine -- you can build your C library
against it and ship it in /usr/include. And tell me what breaks...

I probably won't do tarballs corresponding to -rc releases very often
but I'll do the proper releases.

--
dwmw2


2006-10-09 17:42:09

by Erik Andersen

[permalink] [raw]
Subject: Re: [ANNOUNCE] linux-kernel-headers-2.6.19-rc1.tar.gz

On Thu Oct 05, 2006 at 08:09:20AM +0100, David Woodhouse wrote:
> A full set of user-visible kernel headers for all supported
> architectures, exported from the 2.6.19-rc1 kernel, has been uploaded
> to
> ftp://ftp.kernel.org/pub/linux/kernel/people/dwmw2/kernel-headers/snapshot/
>
> I had planned to do this for 2.6.18 but it wasn't quite in good enough
> shape by then. This one should be fine -- you can build your C library
> against it and ship it in /usr/include. And tell me what breaks...

I'm curious how you produced this for all architectures? Did you
write up a script to so something trivial like

for i in $LINUX_DIR/arch/*; do
make ARCH=$(basename $i) INSTALL_HDR_PATH=/tmp/foo headers_install;
done

or did you do something more complicated and interesting? If so,
would you mind sharing?

-Erik

--
Erik B. Andersen http://codepoet-consulting.com/
--This message was written using 73% post-consumer electrons--

2006-10-09 19:50:06

by David Woodhouse

[permalink] [raw]
Subject: Re: [ANNOUNCE] linux-kernel-headers-2.6.19-rc1.tar.gz

On Mon, 2006-10-09 at 11:42 -0600, Erik Andersen wrote:
>
> I'm curious how you produced this for all architectures? Did you
> write up a script to so something trivial like
>
> for i in $LINUX_DIR/arch/*; do
> make ARCH=$(basename $i) INSTALL_HDR_PATH=/tmp/foo
> headers_install;
> done
>
> or did you do something more complicated and interesting? If so,
> would you mind sharing?

make headers_install_all

--
dwmw2

2006-10-09 19:57:49

by Erik Andersen

[permalink] [raw]
Subject: Re: [ANNOUNCE] linux-kernel-headers-2.6.19-rc1.tar.gz

On Mon Oct 09, 2006 at 08:50:02PM +0100, David Woodhouse wrote:
> > or did you do something more complicated and interesting? If so,
> > would you mind sharing?
>
> make headers_install_all

Ahh! I see that was added to 2.6.19-rc1. Very cool.

-Erik

--
Erik B. Andersen http://codepoet-consulting.com/
--This message was written using 73% post-consumer electrons--