Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / scripts / package / mkspec
1 #!/bin/sh
2 #
3 #       Output a simple RPM spec file.
4 #       This version assumes a minimum of RPM 4.0.3.
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-$KERNELRELEASE"
25 __KERNELRELEASE=`echo $KERNELRELEASE | sed -e "s/-/_/g"`
26
27 echo "Name: kernel"
28 echo "Summary: The Linux Kernel"
29 echo "Version: $__KERNELRELEASE"
30 # we need to determine the NEXT version number so that uname and
31 # rpm -q will agree
32 echo "Release: `. $srctree/scripts/mkversion`"
33 echo "License: GPL"
34 echo "Group: System Environment/Kernel"
35 echo "Vendor: The Linux Community"
36 echo "URL: http://www.kernel.org"
37
38 if ! $PREBUILT; then
39 echo "Source: kernel-$__KERNELRELEASE.tar.gz"
40 fi
41
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}"
46 echo ""
47 echo "%description"
48 echo "The Linux Kernel, the operating system core itself"
49 echo ""
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"
60 echo "glibc package."
61 echo ""
62 echo "%package devel"
63 echo "Summary: Development package for building kernel modules to match the $__KERNELRELEASE kernel"
64 echo "Group: System Environment/Kernel"
65 echo "AutoReqProv: no"
66 echo "%description -n kernel-devel"
67 echo "This package provides kernel headers and makefiles sufficient to build modules"
68 echo "against the $__KERNELRELEASE kernel package."
69 echo ""
70
71 if ! $PREBUILT; then
72 echo "%prep"
73 echo "%setup -q"
74 echo ""
75 fi
76
77 echo "%build"
78
79 if ! $PREBUILT; then
80 echo "make clean && make %{?_smp_mflags}"
81 echo ""
82 fi
83
84 echo "%install"
85 echo 'KBUILD_IMAGE=$(make image_name)'
86 echo "%ifarch ia64"
87 echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
88 echo "%else"
89 echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
90 echo "%endif"
91 echo 'mkdir -p $RPM_BUILD_ROOT'"/lib/firmware/$KERNELRELEASE"
92
93 echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{?_smp_mflags} KBUILD_SRC= mod-fw= modules_install'
94 echo 'INSTALL_FW_PATH=$RPM_BUILD_ROOT'"/lib/firmware/$KERNELRELEASE"
95 echo 'make INSTALL_FW_PATH=$INSTALL_FW_PATH' firmware_install
96 echo "%ifarch ia64"
97 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/efi/vmlinuz-$KERNELRELEASE"
98 echo 'ln -s '"efi/vmlinuz-$KERNELRELEASE" '$RPM_BUILD_ROOT'"/boot/"
99 echo "%else"
100 echo "%ifarch ppc64"
101 echo "cp vmlinux arch/powerpc/boot"
102 echo "cp arch/powerpc/boot/"'$KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
103 echo "%else"
104 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
105 echo "%endif"
106 echo "%endif"
107
108 echo 'make %{?_smp_mflags} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr KBUILD_SRC= headers_install'
109 echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$KERNELRELEASE"
110
111 echo 'cp .config $RPM_BUILD_ROOT'"/boot/config-$KERNELRELEASE"
112
113 echo "%ifnarch ppc64"
114 echo 'cp vmlinux vmlinux.orig'
115 echo 'bzip2 -9 vmlinux'
116 echo 'mv vmlinux.bz2 $RPM_BUILD_ROOT'"/boot/vmlinux-$KERNELRELEASE.bz2"
117 echo 'mv vmlinux.orig vmlinux'
118 echo "%endif"
119
120 if ! $PREBUILT; then
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=*vmlinux* --exclude=*.o --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"
128 fi
129
130 echo ""
131 echo "%clean"
132 echo 'rm -rf $RPM_BUILD_ROOT'
133 echo ""
134 echo "%post"
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"
141 echo "fi"
142 echo ""
143 echo "%files"
144 echo '%defattr (-, root, root)'
145 echo "%dir /lib/modules"
146 echo "/lib/modules/$KERNELRELEASE"
147 echo "%exclude /lib/modules/$KERNELRELEASE/build"
148 echo "%exclude /lib/modules/$KERNELRELEASE/source"
149 echo "/lib/firmware/$KERNELRELEASE"
150 echo "/boot/*"
151 echo ""
152 echo "%files headers"
153 echo '%defattr (-, root, root)'
154 echo "/usr/include"
155 echo ""
156 if ! $PREBUILT; then
157 echo "%files devel"
158 echo '%defattr (-, root, root)'
159 echo "/usr/src/kernels/$KERNELRELEASE"
160 echo "/lib/modules/$KERNELRELEASE/build"
161 echo "/lib/modules/$KERNELRELEASE/source"
162 echo ""
163 fi