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.13 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 << 13 << 14 output=$1 << 15 << 16 mkdir -p "$(dirname "${output}")" << 17 << 18 exec >"${output}" << 19 << 20 if grep -q CONFIG_MODULES=y include/config/aut 12 if grep -q CONFIG_MODULES=y include/config/auto.conf; then 21 echo '%define with_devel %{?_without_devel: 0} 13 echo '%define with_devel %{?_without_devel: 0} %{?!_without_devel: 1}' 22 else 14 else 23 echo '%define with_devel 0' 15 echo '%define with_devel 0' 24 fi 16 fi 25 17 26 cat<<EOF 18 cat<<EOF 27 %define ARCH ${ARCH} 19 %define ARCH ${ARCH} 28 %define KERNELRELEASE ${KERNELRELEASE} 20 %define KERNELRELEASE ${KERNELRELEASE} 29 %define pkg_release $("${srctree}/scripts/buil !! 21 %define pkg_release $("${srctree}/init/build-version") 30 EOF 22 EOF 31 23 32 cat "${srctree}/scripts/package/kernel.spec" 24 cat "${srctree}/scripts/package/kernel.spec" 33 << 34 # collect the user's name and email address fo << 35 if [ "$(command -v git)" ]; then << 36 name=$(git config user.name) || true << 37 email=$(git config user.email) || true << 38 fi << 39 << 40 if [ ! "${name:+set}" ]; then << 41 name=${KBUILD_BUILD_USER:-$(id -nu)} << 42 fi << 43 << 44 if [ ! "${email:+set}" ]; then << 45 buildhost=${KBUILD_BUILD_HOST:-$(hostn << 46 builduser=${KBUILD_BUILD_USER:-$(id -n << 47 email="${builduser}@${buildhost}" << 48 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 <<
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.