3 # Output a simple RPM spec file that uses no fancy features requiring
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>
12 # how we were called determines which rpms we build and how we build them
13 if [ "$1" = "prebuilt" ]; then
19 # starting to output the spec
20 if [ "`grep CONFIG_DRM=y .config | cut -f2 -d\=`" = "y" ]; then
24 PROVIDES
="$PROVIDES kernel-$KERNELRELEASE"
25 __KERNELRELEASE
=`echo $KERNELRELEASE | sed -e "s/-/_/g"`
28 echo "Summary: The Linux Kernel"
29 echo "Version: $__KERNELRELEASE"
30 # we need to determine the NEXT version number so that uname and
32 echo "Release: `. $srctree/scripts/mkversion`"
34 echo "Group: System Environment/Kernel"
35 echo "Vendor: The Linux Community"
36 echo "URL: http://www.kernel.org"
39 echo "Source: kernel-$__KERNELRELEASE.tar.gz"
42 echo "BuildRoot: %{_tmppath}/%{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}"
48 echo "The Linux Kernel, the operating system core itself"
50 echo "%package headers"
51 echo "Summary: Header files for the Linux kernel for use by glibc"
52 echo "Group: Development/System"
53 echo "Obsoletes: kernel-headers"
54 echo "Provides: kernel-headers = %{version}"
55 echo "%description headers"
56 echo "Kernel-headers includes the C header files that specify the interface"
57 echo "between the Linux kernel and userspace libraries and programs. The"
58 echo "header files define structures and constants that are needed for"
59 echo "building most standard programs and are also needed for rebuilding the"
72 echo "make clean && make %{?_smp_mflags}"
78 echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
79 echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware'
81 echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
82 echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware'
85 echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{?_smp_mflags} KBUILD_SRC= modules_install'
87 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/efi/vmlinuz-$KERNELRELEASE"
88 echo 'ln -s '"efi/vmlinuz-$KERNELRELEASE" '$RPM_BUILD_ROOT'"/boot/"
91 echo "cp vmlinux arch/powerpc/boot"
92 echo "cp arch/powerpc/boot/"'$KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
94 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
98 echo 'make %{?_smp_mflags} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install'
99 echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$KERNELRELEASE"
101 echo 'cp .config $RPM_BUILD_ROOT'"/boot/config-$KERNELRELEASE"
103 echo "%ifnarch ppc64"
104 echo 'cp vmlinux vmlinux.orig'
105 echo 'bzip2 -9 vmlinux'
106 echo 'mv vmlinux.bz2 $RPM_BUILD_ROOT'"/boot/vmlinux-$KERNELRELEASE.bz2"
107 echo 'mv vmlinux.orig vmlinux'
112 echo 'rm -rf $RPM_BUILD_ROOT'
115 echo '%defattr (-, root, root)'
116 echo "%dir /lib/modules"
117 echo "/lib/modules/$KERNELRELEASE"
121 echo "%files headers"
122 echo '%defattr (-, root, root)'