r3694: waldi | 2005-08-05 20:01:12 +0000

Strip down the scripts dir in the headers packages.

* debian/changelog: Update.
* debian/templates/post-install.in: Copy neccesary files into the scripts
  dir of the headers package.
 
r3696: waldi | 2005-08-05 20:15:48 +0000
debian/rules: Bail out after gencontrol runs.

svn path=/trunk/kernel/source/linux-2.6/; revision=3701
This commit is contained in:
Bastian Blank 2005-08-06 09:32:51 +00:00
parent b4cb70704a
commit 1c48048e67
3 changed files with 16 additions and 1 deletions

2
debian/changelog vendored
View File

@ -14,6 +14,8 @@ linux-2.6 (2.6.12-2) UNRELEASED; urgency=low
* Add ARM support. (Vincent Sanders)
* Add desc.* files for ia64. (dann frazier)
* Strip down the scripts dir in the headers packages. (Bastian Blank)
* Add m68k support. (Christian T. Steigies)

1
debian/rules vendored
View File

@ -227,5 +227,6 @@ binary: binary-indep binary-arch
#
debian/control: debian/changelog $(wildcard debian/templates/control.*.in)
debian/bin/gencontrol.py
exit 1
.PHONY: clean build unpack binary-indep binary-arch binary patch unpatch source tree

View File

@ -70,7 +70,6 @@ find . -mindepth 1 -maxdepth 1 \
-printf "../linux-headers-$prefix/%f\n" |
xargs ln -s --target-directory="$dir"
cp -a scripts $dir
cd include
find . -mindepth 1 -maxdepth 1 \
! -name config -a ! -name linux -a \( \
@ -90,6 +89,19 @@ cd ..
mkdir -p $top/lib/modules/$version
ln -s /usr/src/linux-headers-$version $top/lib/modules/$version/build
mkdir -p $dir/scripts/basic
mkdir -p $dir/scripts/kconfig
mkdir -p $dir/scripts/mod
cp -a scripts/Makefile* $dir/scripts
cp -a scripts/kallsyms $dir/scripts
strip $dir/scripts/kallsyms
cp -a scripts/basic/fixdep $dir/scripts/basic
strip $dir/scripts/basic/fixdep
cp -a scripts/kconfig/conf $dir/scripts/kconfig
strip $dir/scripts/kconfig/conf
cp -a scripts/mod/modpost $dir/scripts/mod
strip $dir/scripts/mod/modpost
debhelper_post $pkg
#