70 lines
2.5 KiB
RPMSpec
70 lines
2.5 KiB
RPMSpec
#TARBALL: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.12.tar.xz
|
|
#MD5SUM: edd3015435d60598b99cf6aaf223710e;SOURCES/linux-4.20.12.tar.xz
|
|
#-----------------------------------------------------------------------------
|
|
Summary: The Linux package contains the Linux kernel.
|
|
Name: linux
|
|
Version: 4.20.12
|
|
Release: 2
|
|
License: GPLv2
|
|
URL: https://www.kernel.org
|
|
Group: LFS/Base
|
|
Vendor: Elizabeth
|
|
Source0: https://www.kernel.org/pub/linux/kernel/v4.x/%{name}-%{version}.tar.xz
|
|
Source1: config-%{VERSION}
|
|
Requires: filesystem
|
|
Requires: mkinitramfs
|
|
%description
|
|
The Linux package contains the Linux kernel.
|
|
#-----------------------------------------------------------------------------
|
|
%prep
|
|
%setup -q -n %{NAME}-%{VERSION}
|
|
%build
|
|
make mrproper
|
|
# make defconfig
|
|
# make allmodconfig
|
|
cp %{_sourcedir}/config-%{VERSION} .config
|
|
# cp %%{_sourcedir}/config-4.15.3 .config
|
|
# make oldconfig
|
|
make olddefconfig
|
|
make %{?_smp_mflags}
|
|
%install
|
|
make DESTDIR=%{buildroot} INSTALL_MOD_PATH=%{buildroot} modules_install
|
|
install -vdm 755 %{buildroot}/boot
|
|
cp -v arch/x86/boot/bzImage %{buildroot}/boot/vmlinuz-%{version}
|
|
cp -v System.map %{buildroot}/boot/System.map-%{version}
|
|
cp -v .config %{buildroot}/boot/config-%{version}
|
|
install -d %{buildroot}%{_docdir}/%{NAME}-%{VERSION}
|
|
cp -r Documentation/* %{buildroot}%{_docdir}/%{NAME}-%{version}
|
|
#-----------------------------------------------------------------------------
|
|
# Copy license/copying file
|
|
install -D -m644 COPYING %{buildroot}/usr/share/licenses/%{name}-%{VERSION}/LICENSE
|
|
#-----------------------------------------------------------------------------
|
|
# Create file list
|
|
# rm %{buildroot}%{_infodir}/dir
|
|
find %{buildroot} -name '*.la' -delete
|
|
find "${RPM_BUILD_ROOT}" -not -type d -print > filelist.rpm
|
|
sed -i "s|^${RPM_BUILD_ROOT}||" filelist.rpm
|
|
sed -i '/man\/man/d' filelist.rpm
|
|
sed -i '/\/usr\/share\/info/d' filelist.rpm
|
|
#-----------------------------------------------------------------------------
|
|
%files -f filelist.rpm
|
|
%defattr(-,root,root)
|
|
# %%{_infodir}/*.gz
|
|
# %%{_mandir}/man1/*.gz
|
|
#-----------------------------------------------------------------------------
|
|
%post
|
|
pushd /boot
|
|
touch initrd.img-%{VERSION}
|
|
rm initrd.img-%{VERSION}
|
|
mkinitramfs %{VERSION}
|
|
popd
|
|
%postun
|
|
pushd /boot
|
|
touch initrd.img-%{VERSION}
|
|
rm initrd.img-%{VERSION}
|
|
popd
|
|
#-----------------------------------------------------------------------------
|
|
%changelog
|
|
* Tue Jan 09 2018 baho-utot <baho-utot@columbus.rr.com> 4.15.3-1
|
|
- Initial build. First version
|