VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / scripts / package / mkspec
1 #!/bin/sh
2 #
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.
5 #
6 #       The only gothic bit here is redefining install_post to avoid
7 #       stripping the symbols from files in the kernel which we want
8 #
9 #       Patched for non-x86 by Opencon (L) 2002 <opencon@rio.skydome.net>
10 #
11
12 # how we were called determines which rpms we build and how we build them
13 if [ "$1" = "prebuilt" ]; then
14         PREBUILT=true
15 else
16         PREBUILT=false
17 fi
18
19 # starting to output the spec
20 if [ "`grep CONFIG_DRM=y .config | cut -f2 -d\=`" = "y" ]; then
21         PROVIDES=kernel-drm
22 fi
23
24 PROVIDES="$PROVIDES kernel-$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
25
26 echo "Name: kernel"
27 echo "Summary: The Linux Kernel"
28 echo "Version: "$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION | sed -e "s/-//g"
29 # we need to determine the NEXT version number so that uname and
30 # rpm -q will agree
31 echo "Release: `. $srctree/scripts/mkversion`"
32 echo "License: GPL"
33 echo "Group: System Environment/Kernel"
34 echo "Vendor: The Linux Community"
35 echo "URL: http://www.kernel.org"
36
37 if ! $PREBUILT; then
38 echo -n "Source: kernel-$VERSION.$PATCHLEVEL.$SUBLEVEL"
39 echo "$EXTRAVERSION.tar.gz" | sed -e "s/-//g"
40 fi
41
42 echo "BuildRoot: /var/tmp/%{name}-%{PACKAGE_VERSION}-root"
43 echo "Provides: $PROVIDES"
44 echo "%define __spec_install_post /usr/lib/rpm/brp-compress || :"
45 echo "%define debug_package %{nil}"
46 echo ""
47 echo "%description"
48 echo "The Linux Kernel, the operating system core itself"
49 echo ""
50
51 if ! $PREBUILT; then
52 echo "%prep"
53 echo "%setup -q"
54 echo ""
55 fi
56
57 echo "%build"
58
59 if ! $PREBUILT; then
60 echo "make clean && make"
61 echo ""
62 fi
63
64 echo "%install"
65 echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib $RPM_BUILD_ROOT/lib/modules'
66
67 echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make modules_install'
68 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
69
70 echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
71
72 echo 'cp .config $RPM_BUILD_ROOT'"/boot/config-$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
73 echo ""
74 echo "%clean"
75 echo '#echo -rf $RPM_BUILD_ROOT'
76 echo ""
77 echo "%files"
78 echo '%defattr (-, root, root)'
79 echo "%dir /lib/modules"
80 echo "/lib/modules/$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
81 echo "/boot/*"
82 echo ""