Added flavours list in common header package.

Cleaned up changelog entry waldi had left un-nice :)

svn path=/trunk/kernel/source/linux-2.6/; revision=3733
This commit is contained in:
Sven Luther 2005-08-08 06:59:19 +00:00
parent dbeca2462b
commit ec997d3d56
3 changed files with 12 additions and 4 deletions

1
debian/Makefile vendored
View File

@ -142,6 +142,7 @@ binary: binary-indep binary-arch
header-install-$(subarch): templates/header-install.in
sed -e 's,@kbpkg@,$(kbpkg),g' \
-e 's,@ksource_dir@,$(CURDIR)/$(kdir),g' \
-e 's,@flavours@,$(flavours),g' \
-e 's,@headers_dirs@,$(headers_dirs),g' \
templates/header-install.in > header-install-$(subarch)
chmod u+x header-install-$(subarch)

10
debian/changelog vendored
View File

@ -44,16 +44,18 @@ linux-2.6 (2.6.12-2) UNRELEASED; urgency=low
* Enable CONFIG_6PACK=m for all archs (Andres Salomon)
(closes: #319646)
* [powerpc] Fixed minor problems with the powerpc image :
- typo made the ams-ppc and asm-ppc64 headers not being included.
* Overhaul the generation of the control file. Now it is handled
by debian/bin/gencontrol.py. The debian/control target in rules
also fails now, since we don't want the control file generated
during build. Arch-specific Depends and suggests are now generated
correctly. (Bastian Blank) (Closes: #319896)
-- Sven Luther <luther@debian.org> Sun, 7 Aug 2005 09:12:51 +0200
* [powerpc] Fixed typo which made asm-ppc and asm-ppc64 not being included
in the header package. (Sven Luther) (Closes: #320817)
* Added list of flavours built to common header package. (Sven Luther)
-- Sven Luther <luther@debian.org> Mon, 8 Aug 2005 08:54:03 +0200
linux-2.6 (2.6.12-1) unstable; urgency=low

View File

@ -11,6 +11,10 @@ set -e
# archs do some *very* strange things...
rm -rf scripts
# Let's add the flavours that are built for a given arch.
# XXX: will probably need rethinking once the common headers are Arch: all.
echo @flavours@ >flavours
# XXX: once we're using a linux-headers-$(version)-$(debnum) that's Arch: all,
# we'll want to drop this bit of code. The asm-* directories should remain.
@ -26,3 +30,4 @@ for i in asm-*; do
esac
done
${remove:+rm -r $remove}