blob: 4bf17ddf7c7ff732f4ed0a9a851bfd759ad03772 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#!/bin/sh
2#
Gilles Espinassef77f13e2010-03-29 15:41:47 +02003# Output a simple RPM spec file that uses no fancy features requiring
Linus Torvalds1da177e2005-04-16 15:20:36 -07004# 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"
Arun Sharmae1287eb2011-05-04 13:48:11 -070025__KERNELRELEASE=`echo $KERNELRELEASE | sed -e "s/-/_/g"`
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
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
John Saalwaechter880df922010-01-31 16:18:58 -080042echo "BuildRoot: %{_tmppath}/%{name}-%{PACKAGE_VERSION}-root"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043echo "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 ""
Arun Sharma0bd41df2011-05-17 10:36:16 -070050echo "%package headers"
51echo "Summary: Header files for the Linux kernel for use by glibc"
52echo "Group: Development/System"
53echo "Obsoletes: kernel-headers"
54echo "Provides: kernel-headers = %{version}"
55echo "%description headers"
56echo "Kernel-headers includes the C header files that specify the interface"
57echo "between the Linux kernel and userspace libraries and programs. The"
58echo "header files define structures and constants that are needed for"
59echo "building most standard programs and are also needed for rebuilding the"
60echo "glibc package."
61echo ""
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63if ! $PREBUILT; then
64echo "%prep"
65echo "%setup -q"
66echo ""
67fi
68
69echo "%build"
70
71if ! $PREBUILT; then
Jeremy Kerr13797b72008-10-25 15:02:47 -070072echo "make clean && make %{?_smp_mflags}"
Linus Torvalds1da177e2005-04-16 15:20:36 -070073echo ""
74fi
75
76echo "%install"
Greg Edwardsd2cb1a92004-07-29 13:07:32 -050077echo "%ifarch ia64"
Rolf Eike Beera5fa3932006-08-14 08:16:47 +020078echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
Evgeniy Manachkin46dca862008-10-15 23:37:26 +060079echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware'
Greg Edwardsd2cb1a92004-07-29 13:07:32 -050080echo "%else"
Rolf Eike Beera5fa3932006-08-14 08:16:47 +020081echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
Evgeniy Manachkin46dca862008-10-15 23:37:26 +060082echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware'
Greg Edwardsd2cb1a92004-07-29 13:07:32 -050083echo "%endif"
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Nishanth Aravamudanc2d5a732010-10-13 10:39:45 -070085echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{?_smp_mflags} KBUILD_SRC= modules_install'
Greg Edwardsd2cb1a92004-07-29 13:07:32 -050086echo "%ifarch ia64"
87echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/efi/vmlinuz-$KERNELRELEASE"
88echo 'ln -s '"efi/vmlinuz-$KERNELRELEASE" '$RPM_BUILD_ROOT'"/boot/"
89echo "%else"
Mike Wolf1a0f3d42006-06-02 09:53:42 -050090echo "%ifarch ppc64"
91echo "cp vmlinux arch/powerpc/boot"
92echo "cp arch/powerpc/boot/"'$KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
93echo "%else"
Linus Torvalds1da177e2005-04-16 15:20:36 -070094echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
Greg Edwardsd2cb1a92004-07-29 13:07:32 -050095echo "%endif"
Mike Wolf1a0f3d42006-06-02 09:53:42 -050096echo "%endif"
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Arun Sharma0bd41df2011-05-17 10:36:16 -070098echo 'make %{?_smp_mflags} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install'
Linus Torvalds1da177e2005-04-16 15:20:36 -070099echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$KERNELRELEASE"
100
101echo 'cp .config $RPM_BUILD_ROOT'"/boot/config-$KERNELRELEASE"
Josh Huntfc370ec2009-02-11 21:10:57 -0800102
103echo "%ifnarch ppc64"
104echo 'cp vmlinux vmlinux.orig'
105echo 'bzip2 -9 vmlinux'
106echo 'mv vmlinux.bz2 $RPM_BUILD_ROOT'"/boot/vmlinux-$KERNELRELEASE.bz2"
107echo 'mv vmlinux.orig vmlinux'
108echo "%endif"
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110echo ""
111echo "%clean"
Josh Hunta2ebcc72009-02-22 10:54:55 -0800112echo 'rm -rf $RPM_BUILD_ROOT'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113echo ""
114echo "%files"
115echo '%defattr (-, root, root)'
116echo "%dir /lib/modules"
117echo "/lib/modules/$KERNELRELEASE"
Evgeniy Manachkin46dca862008-10-15 23:37:26 +0600118echo "/lib/firmware"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119echo "/boot/*"
120echo ""
Arun Sharma0bd41df2011-05-17 10:36:16 -0700121echo "%files headers"
122echo '%defattr (-, root, root)'
123echo "/usr/include"
124echo ""