[PATCH] DVB: Update documentation and credits
[linux-2.6/history.git] / scripts / mkspec
blobe1ecb505e2748e78fbdd245ef0a8d24e800e3f12
1 #!/bin/sh
3 # Output a simple RPM spec file that uses no fancy features requring
4 # RPM v4. This is intended to work with any RPM distro.
6 # The only gothic bit here is redefining install_post to avoid
7 # stripping the symbols from files in the kernel which we want
9 # Patched for non-x86 by Opencon (L) 2002 <opencon@rio.skydome.net>
11 # That's the voodoo to see if it's a x86.
12 ISX86=`echo ${ARCH:=\`arch\`} | grep -ie i.86`
13 if [ ! -z $ISX86 ]; then
14 PC=1
15 else
16 PC=0
18 # starting to output the spec
19 if [ "`grep CONFIG_DRM=y .config | cut -f2 -d\=`" = "y" ]; then
20 PROVIDES=kernel-drm
23 PROVIDES="$PROVIDES kernel-$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
25 echo "Name: kernel"
26 echo "Summary: The Linux Kernel"
27 echo "Version: "$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION | sed -e "s/-//g"
28 # we need to determine the NEXT version number so that uname and
29 # rpm -q will agree
30 echo "Release: `. $srctree/scripts/mkversion`"
31 echo "License: GPL"
32 echo "Group: System Environment/Kernel"
33 echo "Vendor: The Linux Community"
34 echo "URL: http://www.kernel.org"
35 echo -n "Source: kernel-$VERSION.$PATCHLEVEL.$SUBLEVEL"
36 echo "$EXTRAVERSION.tar.gz" | sed -e "s/-//g"
37 echo "BuildRoot: /var/tmp/%{name}-%{PACKAGE_VERSION}-root"
38 echo "Provides: $PROVIDES"
39 echo "%define __spec_install_post /usr/lib/rpm/brp-compress || :"
40 echo ""
41 echo "%description"
42 echo "The Linux Kernel, the operating system core itself"
43 echo ""
44 echo "%prep"
45 echo "%setup -q"
46 echo ""
47 echo "%build"
48 echo "make clean all"
49 echo ""
50 echo "%install"
51 echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib $RPM_BUILD_ROOT/lib/modules'
52 echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make modules_install'
53 # This is the first disagreement between i386 and most others
54 if [ $PC = 1 ]; then
55 echo 'cp arch/i386/boot/bzImage $RPM_BUILD_ROOT'"/boot/vmlinuz-$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
56 else
57 echo 'cp vmlinux $RPM_BUILD_ROOT'"/boot/vmlinux-$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
59 # Back on track
60 echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
61 echo 'cp .config $RPM_BUILD_ROOT'"/boot/config-$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
62 echo ""
63 echo "%clean"
64 echo '#echo -rf $RPM_BUILD_ROOT'
65 echo ""
66 echo "%files"
67 echo '%defattr (-, root, root)'
68 echo "%dir /lib/modules"
69 echo "/lib/modules/$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
70 echo "/boot/*"
71 echo ""