flavour flav in the hiz-ouse
This commit is contained in:
parent
a8e5aec61f
commit
9fc584b7af
13
kernel.spec
13
kernel.spec
@ -1529,11 +1529,12 @@ BuildKernel() {
|
||||
MakeTarget=$1
|
||||
KernelImage=$2
|
||||
Flavour=$3
|
||||
Flav=${Flavour:+.${Flavour}}
|
||||
InstallName=${4:-vmlinuz}
|
||||
|
||||
# Pick the right config file for the kernel we're building
|
||||
Config=kernel-%{version}-%{_target_cpu}${Flavour:+-${Flavour}}.config
|
||||
DevelDir=/usr/src/kernels/%{KVERREL}${Flavour:+.${Flavour}}
|
||||
DevelDir=/usr/src/kernels/%{KVERREL}${Flav}
|
||||
|
||||
# When the bootable image is just the ELF kernel, strip it.
|
||||
# We already copy the unstripped file into the debuginfo package.
|
||||
@ -1543,7 +1544,7 @@ BuildKernel() {
|
||||
CopyKernel=cp
|
||||
fi
|
||||
|
||||
KernelVer=%{version}-%{release}.%{_target_cpu}${Flavour:+.${Flavour}}
|
||||
KernelVer=%{version}-%{release}.%{_target_cpu}${Flav}
|
||||
echo BUILDING A KERNEL FOR ${Flavour} %{_target_cpu}...
|
||||
|
||||
%if 0%{?stable_update}
|
||||
@ -1552,7 +1553,7 @@ BuildKernel() {
|
||||
%endif
|
||||
|
||||
# make sure EXTRAVERSION says what we want it to say
|
||||
perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{release}.%{_target_cpu}${Flavour:+.${Flavour}}/" Makefile
|
||||
perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{release}.%{_target_cpu}${Flav}/" Makefile
|
||||
|
||||
# if pre-rc1 devel kernel, must fix up PATCHLEVEL for our versioning scheme
|
||||
%if !0%{?rcrev}
|
||||
@ -1747,9 +1748,9 @@ BuildKernel() {
|
||||
# __debug_install_post macro below to sign the right things
|
||||
# Also save the signing keys so we actually sign the modules with the
|
||||
# right key.
|
||||
cp -r .tmp_versions .tmp_versions.sign${Flavour:+.${Flavour}}
|
||||
cp signing_key.priv signing_key.priv.sign${Flavour:+.${Flavour}}
|
||||
cp signing_key.x509 signing_key.x509.sign${Flavour:+.${Flavour}}
|
||||
cp -r .tmp_versions .tmp_versions.sign${Flav}
|
||||
cp signing_key.priv signing_key.priv.sign${Flav}
|
||||
cp signing_key.x509 signing_key.x509.sign${Flav}
|
||||
%endif
|
||||
|
||||
# remove files that will be auto generated by depmod at rpm -i time
|
||||
|
Loading…
Reference in New Issue
Block a user