printf: Remove unused 'bprintf'
[drm/drm-misc.git] / scripts / package / mkspec
blob4dc1466dfc815c110eb7206f83dd874b17f5170f
1 #!/bin/sh
3 # Output a simple RPM spec file.
4 # This version assumes a minimum of RPM 4.13
6 # The only gothic bit here is redefining install_post to avoid
7 # stripping the symbols from files in the kernel which we want
9 # Patched for non-x86 by Opencon (L) 2002 <opencon@rio.skydome.net>
12 set -eu
14 output=$1
16 mkdir -p "$(dirname "${output}")"
18 exec >"${output}"
20 if grep -q CONFIG_MODULES=y include/config/auto.conf; then
21 echo '%define with_devel %{?_without_devel: 0} %{?!_without_devel: 1}'
22 else
23 echo '%define with_devel 0'
26 cat<<EOF
27 %define ARCH ${ARCH}
28 %define KERNELRELEASE ${KERNELRELEASE}
29 %define pkg_release $("${srctree}/scripts/build-version")
30 EOF
32 cat "${srctree}/scripts/package/kernel.spec"
34 # collect the user's name and email address for the changelog entry
35 if [ "$(command -v git)" ]; then
36 name=$(git config user.name) || true
37 email=$(git config user.email) || true
40 if [ ! "${name:+set}" ]; then
41 name=${KBUILD_BUILD_USER:-$(id -nu)}
44 if [ ! "${email:+set}" ]; then
45 buildhost=${KBUILD_BUILD_HOST:-$(hostname -f 2>/dev/null || hostname)}
46 builduser=${KBUILD_BUILD_USER:-$(id -nu)}
47 email="${builduser}@${buildhost}"
50 cat << EOF
52 %changelog
53 * $(LC_ALL=C date +'%a %b %d %Y') ${name} <${email}>
54 - Custom built Linux kernel.
55 EOF