3 # Output a simple RPM spec file.
4 # This version assumes a minimum of RPM 4.0.3.
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 "%undefine _missing_build_ids_terminate_build"
43 echo "BuildRoot: %{_tmppath}/%{name}-%{PACKAGE_VERSION}-root"
44 echo "Provides: $PROVIDES"
47 echo "The Linux Kernel, the operating system core itself"
49 echo "%package headers"
50 echo "Summary: Header files for the Linux kernel for use by glibc"
51 echo "Group: Development/System"
52 echo "Obsoletes: kernel-headers"
53 echo "Provides: kernel-headers = %{version}"
54 echo "%description headers"
55 echo "Kernel-headers includes the C header files that specify the interface"
56 echo "between the Linux kernel and userspace libraries and programs. The"
57 echo "header files define structures and constants that are needed for"
58 echo "building most standard programs and are also needed for rebuilding the"
62 echo "Summary: Development package for building kernel modules to match the $__KERNELRELEASE kernel"
63 echo "Group: System Environment/Kernel"
64 echo "AutoReqProv: no"
65 echo "%description -n kernel-devel"
66 echo "This package provides kernel headers and makefiles sufficient to build modules"
67 echo "against the $__KERNELRELEASE kernel package."
79 echo "make clean && make %{?_smp_mflags}"
86 echo 'KBUILD_IMAGE=$(make image_name)'
88 echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
90 echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
92 echo 'mkdir -p $RPM_BUILD_ROOT'"/lib/firmware/$KERNELRELEASE"
94 echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{?_smp_mflags} KBUILD_SRC= mod-fw= modules_install'
95 echo '$RPM_SOURCE_DIR/scripts/kernel_debug.sh $RPM_BUILD_ROOT'
96 echo 'INSTALL_FW_PATH=$RPM_BUILD_ROOT'"/lib/firmware/$KERNELRELEASE"
97 echo 'make INSTALL_FW_PATH=$INSTALL_FW_PATH' firmware_install
99 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/efi/vmlinuz-$KERNELRELEASE"
100 echo 'ln -s '"efi/vmlinuz-$KERNELRELEASE" '$RPM_BUILD_ROOT'"/boot/"
103 echo "cp vmlinux arch/powerpc/boot"
104 echo "cp arch/powerpc/boot/"'$KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
106 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
110 echo 'make %{?_smp_mflags} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr KBUILD_SRC= headers_install'
111 echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$KERNELRELEASE"
113 echo 'cp .config $RPM_BUILD_ROOT'"/boot/config-$KERNELRELEASE"
115 #echo "%ifnarch ppc64"
116 #echo 'bzip2 -9 --keep vmlinux'
117 #echo 'mv vmlinux.bz2 $RPM_BUILD_ROOT'"/boot/vmlinux-$KERNELRELEASE.bz2"
121 echo 'rm -f $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE/{build,source}"
122 echo "mkdir -p "'$RPM_BUILD_ROOT'"/usr/src/kernels/$KERNELRELEASE"
123 echo "EXCLUDES=\"$RCS_TAR_IGNORE --exclude .tmp_versions --exclude=*.o --exclude=*vmlinux* --exclude=*.ko --exclude=*.cmd --exclude=Documentation --exclude=firmware --exclude .config.old --exclude .missing-syscalls.d\""
124 echo "tar "'$EXCLUDES'" -cf- . | (cd "'$RPM_BUILD_ROOT'"/usr/src/kernels/$KERNELRELEASE;tar xvf -)"
125 echo 'cd $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE"
126 echo "ln -sf /usr/src/kernels/$KERNELRELEASE build"
127 echo "ln -sf /usr/src/kernels/$KERNELRELEASE source"
132 echo 'rm -rf $RPM_BUILD_ROOT'
135 echo "if [ -x /sbin/installkernel -a -r /boot/vmlinuz-$KERNELRELEASE -a -r /boot/System.map-$KERNELRELEASE ]; then"
136 echo "cp /boot/vmlinuz-$KERNELRELEASE /boot/.vmlinuz-$KERNELRELEASE-rpm"
137 echo "cp /boot/System.map-$KERNELRELEASE /boot/.System.map-$KERNELRELEASE-rpm"
138 echo "rm -f /boot/vmlinuz-$KERNELRELEASE /boot/System.map-$KERNELRELEASE"
139 echo "/sbin/installkernel $KERNELRELEASE /boot/.vmlinuz-$KERNELRELEASE-rpm /boot/.System.map-$KERNELRELEASE-rpm"
140 echo "rm -f /boot/.vmlinuz-$KERNELRELEASE-rpm /boot/.System.map-$KERNELRELEASE-rpm"
144 echo '%defattr (-, root, root)'
145 echo "/lib/modules/$KERNELRELEASE"
146 echo "%exclude /lib/modules/$KERNELRELEASE/build"
147 echo "%exclude /lib/modules/$KERNELRELEASE/source"
148 echo "/lib/firmware/$KERNELRELEASE"
151 echo "%files headers"
152 echo '%defattr (-, root, root)'
157 echo '%defattr (-, root, root)'
158 echo "/usr/src/kernels/$KERNELRELEASE"
159 echo "/lib/modules/$KERNELRELEASE/build"
160 echo "/lib/modules/$KERNELRELEASE/source"