]> bbs.cooldavid.org Git - net-next-2.6.git/blame - scripts/package/mkspec
ipv6: AF_INET6 link address family
[net-next-2.6.git] / scripts / package / mkspec
CommitLineData
1da177e4
LT
1#!/bin/sh
2#
f77f13e2 3# Output a simple RPM spec file that uses no fancy features requiring
1da177e4
LT
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
880df92f 42echo "BuildRoot: %{_tmppath}/%{name}-%{PACKAGE_VERSION}-root"
1da177e4
LT
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
13797b77 60echo "make clean && make %{?_smp_mflags}"
1da177e4
LT
61echo ""
62fi
63
64echo "%install"
d2cb1a95 65echo "%ifarch ia64"
a5fa393b 66echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
46dca86c 67echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware'
d2cb1a95 68echo "%else"
a5fa393b 69echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
46dca86c 70echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware'
d2cb1a95 71echo "%endif"
1da177e4 72
c2d5a730 73echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{?_smp_mflags} KBUILD_SRC= modules_install'
d2cb1a95
GE
74echo "%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"
1a0f3d42
MW
78echo "%ifarch ppc64"
79echo "cp vmlinux arch/powerpc/boot"
80echo "cp arch/powerpc/boot/"'$KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
81echo "%else"
1da177e4 82echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
d2cb1a95 83echo "%endif"
1a0f3d42 84echo "%endif"
1da177e4
LT
85
86echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$KERNELRELEASE"
87
88echo 'cp .config $RPM_BUILD_ROOT'"/boot/config-$KERNELRELEASE"
fc370ecf
JH
89
90echo "%ifnarch ppc64"
91echo 'cp vmlinux vmlinux.orig'
92echo 'bzip2 -9 vmlinux'
93echo 'mv vmlinux.bz2 $RPM_BUILD_ROOT'"/boot/vmlinux-$KERNELRELEASE.bz2"
94echo 'mv vmlinux.orig vmlinux'
95echo "%endif"
96
1da177e4
LT
97echo ""
98echo "%clean"
a2ebcc7a 99echo 'rm -rf $RPM_BUILD_ROOT'
1da177e4
LT
100echo ""
101echo "%files"
102echo '%defattr (-, root, root)'
103echo "%dir /lib/modules"
104echo "/lib/modules/$KERNELRELEASE"
46dca86c 105echo "/lib/firmware"
1da177e4
LT
106echo "/boot/*"
107echo ""