~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/package/mkspec

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /scripts/package/mkspec (Version linux-6.12-rc7) and /scripts/package/mkspec (Version linux-4.14.336)


  1 #!/bin/sh                                           1 #!/bin/sh
  2 #                                                   2 #
  3 #       Output a simple RPM spec file.              3 #       Output a simple RPM spec file.
  4 #       This version assumes a minimum of RPM  !!   4 #       This version assumes a minimum of RPM 4.0.3.
  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 echo "Release: $(cat .version 2>/dev/null || echo 1)"
                                                   >>  31 echo "License: GPL"
                                                   >>  32 echo "Group: System Environment/Kernel"
                                                   >>  33 echo "Vendor: The Linux Community"
                                                   >>  34 echo "URL: http://www.kernel.org"
 19                                                    35 
 20 if grep -q CONFIG_MODULES=y include/config/aut !!  36 if ! $PREBUILT; then
 21 echo '%define with_devel %{?_without_devel: 0} !!  37 echo "Source: kernel-$__KERNELRELEASE.tar.gz"
 22 else                                           << 
 23 echo '%define with_devel 0'                    << 
 24 fi                                                 38 fi
 25                                                    39 
 26 cat<<EOF                                       !!  40 echo "BuildRoot: %{_tmppath}/%{name}-%{PACKAGE_VERSION}-root"
 27 %define ARCH ${ARCH}                           !!  41 echo "Provides: $PROVIDES"
 28 %define KERNELRELEASE ${KERNELRELEASE}         !!  42 echo "%define __spec_install_post /usr/lib/rpm/brp-compress || :"
 29 %define pkg_release $("${srctree}/scripts/buil !!  43 echo "%define debug_package %{nil}"
 30 EOF                                            !!  44 echo ""
                                                   >>  45 echo "%description"
                                                   >>  46 echo "The Linux Kernel, the operating system core itself"
                                                   >>  47 echo ""
                                                   >>  48 echo "%package headers"
                                                   >>  49 echo "Summary: Header files for the Linux kernel for use by glibc"
                                                   >>  50 echo "Group: Development/System"
                                                   >>  51 echo "Obsoletes: kernel-headers"
                                                   >>  52 echo "Provides: kernel-headers = %{version}"
                                                   >>  53 echo "%description headers"
                                                   >>  54 echo "Kernel-headers includes the C header files that specify the interface"
                                                   >>  55 echo "between the Linux kernel and userspace libraries and programs.  The"
                                                   >>  56 echo "header files define structures and constants that are needed for"
                                                   >>  57 echo "building most standard programs and are also needed for rebuilding the"
                                                   >>  58 echo "glibc package."
                                                   >>  59 echo ""
                                                   >>  60 echo "%package devel"
                                                   >>  61 echo "Summary: Development package for building kernel modules to match the $__KERNELRELEASE kernel"
                                                   >>  62 echo "Group: System Environment/Kernel"
                                                   >>  63 echo "AutoReqProv: no"
                                                   >>  64 echo "%description -n kernel-devel"
                                                   >>  65 echo "This package provides kernel headers and makefiles sufficient to build modules"
                                                   >>  66 echo "against the $__KERNELRELEASE kernel package."
                                                   >>  67 echo ""
                                                   >>  68 
                                                   >>  69 if ! $PREBUILT; then
                                                   >>  70 echo "%prep"
                                                   >>  71 echo "%setup -q"
                                                   >>  72 echo ""
                                                   >>  73 fi
 31                                                    74 
 32 cat "${srctree}/scripts/package/kernel.spec"   !!  75 echo "%build"
 33                                                    76 
 34 # collect the user's name and email address fo !!  77 if ! $PREBUILT; then
 35 if [ "$(command -v git)" ]; then               !!  78 echo "make clean && make %{?_smp_mflags} KBUILD_BUILD_VERSION=%{release}"
 36         name=$(git config user.name) || true   !!  79 echo ""
 37         email=$(git config user.email) || true << 
 38 fi                                                 80 fi
 39                                                    81 
 40 if [ ! "${name:+set}" ]; then                  !!  82 echo "%install"
 41         name=${KBUILD_BUILD_USER:-$(id -nu)}   !!  83 echo 'KBUILD_IMAGE=$(make image_name)'
                                                   >>  84 echo "%ifarch ia64"
                                                   >>  85 echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
                                                   >>  86 echo "%else"
                                                   >>  87 echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
                                                   >>  88 echo "%endif"
                                                   >>  89 
                                                   >>  90 echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{?_smp_mflags} KBUILD_SRC= modules_install'
                                                   >>  91 echo "%ifarch ia64"
                                                   >>  92 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/efi/vmlinuz-$KERNELRELEASE"
                                                   >>  93 echo 'ln -s '"efi/vmlinuz-$KERNELRELEASE" '$RPM_BUILD_ROOT'"/boot/"
                                                   >>  94 echo "%else"
                                                   >>  95 echo "%ifarch ppc64"
                                                   >>  96 echo "cp vmlinux arch/powerpc/boot"
                                                   >>  97 echo "cp arch/powerpc/boot/"'$KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
                                                   >>  98 echo "%else"
                                                   >>  99 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
                                                   >> 100 echo "%endif"
                                                   >> 101 echo "%endif"
                                                   >> 102 
                                                   >> 103 echo 'make %{?_smp_mflags} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr KBUILD_SRC= headers_install'
                                                   >> 104 echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$KERNELRELEASE"
                                                   >> 105 
                                                   >> 106 echo 'cp .config $RPM_BUILD_ROOT'"/boot/config-$KERNELRELEASE"
                                                   >> 107 
                                                   >> 108 echo "%ifnarch ppc64"
                                                   >> 109 echo 'bzip2 -9 --keep vmlinux'
                                                   >> 110 echo 'mv vmlinux.bz2 $RPM_BUILD_ROOT'"/boot/vmlinux-$KERNELRELEASE.bz2"
                                                   >> 111 echo "%endif"
                                                   >> 112 
                                                   >> 113 if ! $PREBUILT; then
                                                   >> 114 echo 'rm -f $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE/build"
                                                   >> 115 echo 'rm -f $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE/source"
                                                   >> 116 echo "mkdir -p "'$RPM_BUILD_ROOT'"/usr/src/kernels/$KERNELRELEASE"
                                                   >> 117 echo "EXCLUDES=\"$RCS_TAR_IGNORE --exclude .tmp_versions --exclude=*vmlinux* --exclude=*.o --exclude=*.ko --exclude=*.cmd --exclude=Documentation --exclude .config.old --exclude .missing-syscalls.d\""
                                                   >> 118 echo "tar "'$EXCLUDES'" -cf- . | (cd "'$RPM_BUILD_ROOT'"/usr/src/kernels/$KERNELRELEASE;tar xvf -)"
                                                   >> 119 echo 'cd $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE"
                                                   >> 120 echo "ln -sf /usr/src/kernels/$KERNELRELEASE build"
                                                   >> 121 echo "ln -sf /usr/src/kernels/$KERNELRELEASE source"
 42 fi                                                122 fi
 43                                                   123 
 44 if [ ! "${email:+set}" ]; then                 !! 124 echo ""
 45         buildhost=${KBUILD_BUILD_HOST:-$(hostn !! 125 echo "%clean"
 46         builduser=${KBUILD_BUILD_USER:-$(id -n !! 126 echo 'rm -rf $RPM_BUILD_ROOT'
 47         email="${builduser}@${buildhost}"      !! 127 echo ""
                                                   >> 128 echo "%post"
                                                   >> 129 echo "if [ -x /sbin/installkernel -a -r /boot/vmlinuz-$KERNELRELEASE -a -r /boot/System.map-$KERNELRELEASE ]; then"
                                                   >> 130 echo "cp /boot/vmlinuz-$KERNELRELEASE /boot/.vmlinuz-$KERNELRELEASE-rpm"
                                                   >> 131 echo "cp /boot/System.map-$KERNELRELEASE /boot/.System.map-$KERNELRELEASE-rpm"
                                                   >> 132 echo "rm -f /boot/vmlinuz-$KERNELRELEASE /boot/System.map-$KERNELRELEASE"
                                                   >> 133 echo "/sbin/installkernel $KERNELRELEASE /boot/.vmlinuz-$KERNELRELEASE-rpm /boot/.System.map-$KERNELRELEASE-rpm"
                                                   >> 134 echo "rm -f /boot/.vmlinuz-$KERNELRELEASE-rpm /boot/.System.map-$KERNELRELEASE-rpm"
                                                   >> 135 echo "fi"
                                                   >> 136 echo ""
                                                   >> 137 echo "%preun"
                                                   >> 138 echo "if [ -x /sbin/new-kernel-pkg ]; then"
                                                   >> 139 echo "new-kernel-pkg --remove $KERNELRELEASE --rminitrd --initrdfile=/boot/initramfs-$KERNELRELEASE.img"
                                                   >> 140 echo "fi"
                                                   >> 141 echo ""
                                                   >> 142 echo "%postun"
                                                   >> 143 echo "if [ -x /sbin/update-bootloader ]; then"
                                                   >> 144 echo "/sbin/update-bootloader --remove $KERNELRELEASE"
                                                   >> 145 echo "fi"
                                                   >> 146 echo ""
                                                   >> 147 echo "%files"
                                                   >> 148 echo '%defattr (-, root, root)'
                                                   >> 149 echo "/lib/modules/$KERNELRELEASE"
                                                   >> 150 echo "%exclude /lib/modules/$KERNELRELEASE/build"
                                                   >> 151 echo "%exclude /lib/modules/$KERNELRELEASE/source"
                                                   >> 152 echo "/boot/*"
                                                   >> 153 echo ""
                                                   >> 154 echo "%files headers"
                                                   >> 155 echo '%defattr (-, root, root)'
                                                   >> 156 echo "/usr/include"
                                                   >> 157 echo ""
                                                   >> 158 if ! $PREBUILT; then
                                                   >> 159 echo "%files devel"
                                                   >> 160 echo '%defattr (-, root, root)'
                                                   >> 161 echo "/usr/src/kernels/$KERNELRELEASE"
                                                   >> 162 echo "/lib/modules/$KERNELRELEASE/build"
                                                   >> 163 echo "/lib/modules/$KERNELRELEASE/source"
                                                   >> 164 echo ""
 48 fi                                                165 fi
 49                                                << 
 50 cat << EOF                                     << 
 51                                                << 
 52 %changelog                                     << 
 53 * $(LC_ALL=C date +'%a %b %d %Y') ${name} <${e << 
 54 - Custom built Linux kernel.                   << 
 55 EOF                                            << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php