<feed xmlns='http://www.w3.org/2005/Atom'>
<title>history/scripts/package, branch master</title>
<subtitle>Linux kernel history
</subtitle>
<id>https://git.shady.money/history/atom?h=master</id>
<link rel='self' href='https://git.shady.money/history/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/history/'/>
<updated>2004-09-09T01:55:13Z</updated>
<entry>
<title>scripts: pass %{_smp_mflags} to make(1) in scripts/package/mkspec</title>
<updated>2004-09-09T01:55:13Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@mars.ravnborg.org</email>
</author>
<published>2004-09-09T01:55:13Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/history/commit/?id=a823ed057bb3d61291ed026c26452a311044dc5d'/>
<id>urn:sha1:a823ed057bb3d61291ed026c26452a311044dc5d</id>
<content type='text'>
This patch passes %{_smp_mflags} to various build phases in
scripts/package/mkspec so that -j$N is honored by make rpm.

From: William Lee Irwin III &lt;wli@holomorphy.com&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kbuild: use KERNELRELEASE</title>
<updated>2004-09-05T23:53:04Z</updated>
<author>
<name>Brian Gerst</name>
<email>bgerst@quark.didntduck.org</email>
</author>
<published>2004-09-05T23:53:04Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/history/commit/?id=f7e7e745a3c505bdb3f93ea25b0a208238e7d05e'/>
<id>urn:sha1:f7e7e745a3c505bdb3f93ea25b0a208238e7d05e</id>
<content type='text'>
This patch changes several places where the kernel version string is put
together from it's components with $KERNELRELEASE.

From: Brian Gerst &lt;bgerst@quark.didntduck.org&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kbuild: Accept absolute paths in clean-files and introduce clean-dirs</title>
<updated>2004-08-09T22:01:02Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@mars.ravnborg.org</email>
</author>
<published>2004-08-09T22:01:02Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/history/commit/?id=94869f86021d8d3e785e2222d151fb4b98d2ae2a'/>
<id>urn:sha1:94869f86021d8d3e785e2222d151fb4b98d2ae2a</id>
<content type='text'>
Teach kbuild to accept absolute paths in clean-files. This avoids using
clean-rules in several places.
Introduced clean-dirs to delete complete directories.
Kept clean-rule - but do not print anything when used.
Cleaned up a few places now the infrastructure are improved.

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kbuild: Rebuild .spec file when kernel version changes</title>
<updated>2004-07-21T02:14:47Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@mars.ravnborg.org</email>
</author>
<published>2004-07-21T02:14:47Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/history/commit/?id=02c5579652c36b939a830c82d089a3fb6204dcf4'/>
<id>urn:sha1:02c5579652c36b939a830c82d089a3fb6204dcf4</id>
<content type='text'>
Make a dependency in scripts/package/Makefile to top-level Makefile forcing
.spec file to be generated when kernel version changes.

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kbuild: build binary rpm from pre-built tree</title>
<updated>2004-07-21T01:57:07Z</updated>
<author>
<name>Greg Edwards</name>
<email>edwardsg@sgi.com</email>
</author>
<published>2004-07-21T01:57:07Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/history/commit/?id=f0d8c63be2017f2d3ef0261a2bcebbab8df7e65f'/>
<id>urn:sha1:f0d8c63be2017f2d3ef0261a2bcebbab8df7e65f</id>
<content type='text'>
Many times it would be nice to quickly package up a kernel tree you're
working on, without having to rebuild the whole thing again from a clean
source tree (like the current rpm-pkg target does).  The patch below
adds an "binrpm-pkg" target which uses your existing (already built)
tree.
Modified by me to always do a make and use binrpm-pkg.

Signed-off-by: Greg Edwards &lt;edwardsg@sgi.com&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] kbuild: add deb-pkg target</title>
<updated>2004-06-20T13:46:32Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@ravnborg.org</email>
</author>
<published>2004-06-20T13:46:32Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/history/commit/?id=6474b7f6e308d089ad0d17d20e444b99663a9b75'/>
<id>urn:sha1:6474b7f6e308d089ad0d17d20e444b99663a9b75</id>
<content type='text'>
To prepare kbuild for more kernel packaging formats move all packaging support
to scripts/package.

In top-level Makefile introduce generic support for all package formats using
target names *-pkg.  Included the old rpm target for backward compatibility.

A new variable KBUILD_IMAGE is used to specify what kernel image will be part
of the final package, and is to be set by the arch specific makefile.
KBUILD_IMAGE may be overridden from command line or environment.  KBUILD_IMAGE
will see wider usage later, mainly when installing kernel images.

Introducing KBUILD_IMAGE allowed arch specific details to be deleted from the
mkspec and builddeb scripts.

While in the process added the deb packet format.  Script is From: Wichert
Akkerman &lt;wichert@wiggy.net&gt;

To create a RPM packet use 'make rpm-pkg'.
To create a deb packet use 'make deb-pkg'.
Both targets are included in 'make help'

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
</feed>
