1 #!/bin/sh 1 #!/bin/sh 2 # 2 # 3 # Output a simple RPM spec file. !! 3 # Output a simple RPM spec file that uses no fancy features requiring 4 # This version assumes a minimum of RPM !! 4 # RPM v4. This is intended to work with any RPM distro. 5 # 5 # 6 # The only gothic bit here is redefining 6 # The only gothic bit here is redefining install_post to avoid 7 # stripping the symbols from files in th 7 # stripping the symbols from files in the kernel which we want 8 # 8 # 9 # Patched for non-x86 by Opencon (L) 200< 9 # Patched for non-x86 by Opencon (L) 2002 <opencon@rio.skydome.net> 10 # 10 # 11 11 12 set -eu !! 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 13 18 14 output=$1 !! 19 # starting to output the spec >> 20 if [ "`grep CONFIG_DRM=y .config | cut -f2 -d\=`" = "y" ]; then >> 21 PROVIDES=kernel-drm >> 22 fi 15 23 16 mkdir -p "$(dirname "${output}")" !! 24 PROVIDES="$PROVIDES kernel-$KERNELRELEASE" >> 25 __KERNELRELEASE=`echo $KERNELRELEASE | sed -e "s/-/_/g"` 17 26 18 exec >"${output}" !! 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" 19 37 20 if grep -q CONFIG_MODULES=y include/config/aut !! 38 if ! $PREBUILT; then 21 echo '%define with_devel %{?_without_devel: 0} !! 39 echo "Source: kernel-$__KERNELRELEASE.tar.gz" 22 else << 23 echo '%define with_devel 0' << 24 fi 40 fi 25 41 26 cat<<EOF !! 42 echo "BuildRoot: %{_tmppath}/%{name}-%{PACKAGE_VERSION}-root" 27 %define ARCH ${ARCH} !! 43 echo "Provides: $PROVIDES" 28 %define KERNELRELEASE ${KERNELRELEASE} !! 44 echo "%define __spec_install_post /usr/lib/rpm/brp-compress || :" 29 %define pkg_release $("${srctree}/scripts/buil !! 45 echo "%define debug_package %{nil}" 30 EOF !! 46 echo "" 31 !! 47 echo "%description" 32 cat "${srctree}/scripts/package/kernel.spec" !! 48 echo "The Linux Kernel, the operating system core itself" 33 !! 49 echo "" 34 # collect the user's name and email address fo !! 50 echo "%package headers" 35 if [ "$(command -v git)" ]; then !! 51 echo "Summary: Header files for the Linux kernel for use by glibc" 36 name=$(git config user.name) || true !! 52 echo "Group: Development/System" 37 email=$(git config user.email) || true !! 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 >> 63 if ! $PREBUILT; then >> 64 echo "%prep" >> 65 echo "%setup -q" >> 66 echo "" 38 fi 67 fi 39 68 40 if [ ! "${name:+set}" ]; then !! 69 echo "%build" 41 name=${KBUILD_BUILD_USER:-$(id -nu)} << 42 fi << 43 70 44 if [ ! "${email:+set}" ]; then !! 71 if ! $PREBUILT; then 45 buildhost=${KBUILD_BUILD_HOST:-$(hostn !! 72 echo "make clean && make %{?_smp_mflags}" 46 builduser=${KBUILD_BUILD_USER:-$(id -n !! 73 echo "" 47 email="${builduser}@${buildhost}" << 48 fi 74 fi 49 75 50 cat << EOF !! 76 echo "%install" 51 !! 77 echo "%ifarch ia64" 52 %changelog !! 78 echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules' 53 * $(LC_ALL=C date +'%a %b %d %Y') ${name} <${e !! 79 echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware' 54 - Custom built Linux kernel. !! 80 echo "%else" 55 EOF !! 81 echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules' >> 82 echo 'mkdir -p $RPM_BUILD_ROOT/lib/firmware' >> 83 echo "%endif" >> 84 >> 85 echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{?_smp_mflags} KBUILD_SRC= modules_install' >> 86 echo "%ifarch ia64" >> 87 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/efi/vmlinuz-$KERNELRELEASE" >> 88 echo 'ln -s '"efi/vmlinuz-$KERNELRELEASE" '$RPM_BUILD_ROOT'"/boot/" >> 89 echo "%else" >> 90 echo "%ifarch ppc64" >> 91 echo "cp vmlinux arch/powerpc/boot" >> 92 echo "cp arch/powerpc/boot/"'$KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE" >> 93 echo "%else" >> 94 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE" >> 95 echo "%endif" >> 96 echo "%endif" >> 97 >> 98 echo 'make %{?_smp_mflags} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr KBUILD_SRC= headers_install' >> 99 echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$KERNELRELEASE" >> 100 >> 101 echo 'cp .config $RPM_BUILD_ROOT'"/boot/config-$KERNELRELEASE" >> 102 >> 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' >> 108 echo "%endif" >> 109 >> 110 echo "" >> 111 echo "%clean" >> 112 echo 'rm -rf $RPM_BUILD_ROOT' >> 113 echo "" >> 114 echo "%files" >> 115 echo '%defattr (-, root, root)' >> 116 echo "%dir /lib/modules" >> 117 echo "/lib/modules/$KERNELRELEASE" >> 118 echo "/lib/firmware" >> 119 echo "/boot/*" >> 120 echo "" >> 121 echo "%files headers" >> 122 echo '%defattr (-, root, root)' >> 123 echo "/usr/include" >> 124 echo ""
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.