blob: 2500886fb90aa0273743cc67ba40da48c6b4fa5c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#!/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
13if [ "$1" = "prebuilt" ]; then
14 PREBUILT=true
15else
16 PREBUILT=false
17fi
18
19# starting to output the spec
20if [ "`grep CONFIG_DRM=y .config | cut -f2 -d\=`" = "y" ]; then
21 PROVIDES=kernel-drm
22fi
23
24PROVIDES="$PROVIDES kernel-$KERNELRELEASE"
25__KERNELRELEASE=`echo $KERNELRELEASE | sed -e "s/-//g"`
26
27echo "Name: kernel"
28echo "Summary: The Linux Kernel"
29echo "Version: $__KERNELRELEASE"
30# we need to determine the NEXT version number so that uname and
31# rpm -q will agree
32echo "Release: `. $srctree/scripts/mkversion`"
33echo "License: GPL"
34echo "Group: System Environment/Kernel"
35echo "Vendor: The Linux Community"
36echo "URL: http://www.kernel.org"
37
38if ! $PREBUILT; then
39echo "Source: kernel-$__KERNELRELEASE.tar.gz"
40fi
41
42echo "BuildRoot: /var/tmp/%{name}-%{PACKAGE_VERSION}-root"
43echo "Provides: $PROVIDES"
44echo "%define __spec_install_post /usr/lib/rpm/brp-compress || :"
45echo "%define debug_package %{nil}"
46echo ""
47echo "%description"
48echo "The Linux Kernel, the operating system core itself"
49echo ""
50
51if ! $PREBUILT; then
52echo "%prep"
53echo "%setup -q"
54echo ""
55fi
56
57echo "%build"
58
59if ! $PREBUILT; then
Jeremy Kerr13797b72008-10-25 15:02:47 -070060echo "make clean && make %{?_smp_mflags}"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061echo ""
62fi
63
64echo "%install"
Greg Edwardsd2cb1a92004-07-29 13:07:32 -050065echo "%ifarch ia64"
Rolf Eike Beera5fa3932006-08-14 08:16:47 +020066echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
Evgeniy Manachkin46dca862008-10-15 23:37:26 +060067echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware'
Greg Edwardsd2cb1a92004-07-29 13:07:32 -050068echo "%else"
Rolf Eike Beera5fa3932006-08-14 08:16:47 +020069echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
Evgeniy Manachkin46dca862008-10-15 23:37:26 +060070echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware'
Greg Edwardsd2cb1a92004-07-29 13:07:32 -050071echo "%endif"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{_smp_mflags} modules_install'
Greg Edwardsd2cb1a92004-07-29 13:07:32 -050074echo "%ifarch ia64"
75echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/efi/vmlinuz-$KERNELRELEASE"
76echo 'ln -s '"efi/vmlinuz-$KERNELRELEASE" '$RPM_BUILD_ROOT'"/boot/"
77echo "%else"
Mike Wolf1a0f3d42006-06-02 09:53:42 -050078echo "%ifarch ppc64"
79echo "cp vmlinux arch/powerpc/boot"
80echo "cp arch/powerpc/boot/"'$KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
81echo "%else"
Linus Torvalds1da177e2005-04-16 15:20:36 -070082echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
Greg Edwardsd2cb1a92004-07-29 13:07:32 -050083echo "%endif"
Mike Wolf1a0f3d42006-06-02 09:53:42 -050084echo "%endif"
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$KERNELRELEASE"
87
88echo 'cp .config $RPM_BUILD_ROOT'"/boot/config-$KERNELRELEASE"
89echo ""
90echo "%clean"
91echo '#echo -rf $RPM_BUILD_ROOT'
92echo ""
93echo "%files"
94echo '%defattr (-, root, root)'
95echo "%dir /lib/modules"
96echo "/lib/modules/$KERNELRELEASE"
Evgeniy Manachkin46dca862008-10-15 23:37:26 +060097echo "/lib/firmware"
Linus Torvalds1da177e2005-04-16 15:20:36 -070098echo "/boot/*"
99echo ""