| Kernel v2.4.7-ac5 /kernel.spec |
|---|
| Filename: | /kernel.spec |
| Lines Added: | 37 |
| Lines Deleted: | 0 |
| Also changed in: |
(Previous)
2.4.7-ac3
(Following)
2.4.7-ac4
|
 2.4.7-ac5
 kernel.spec
diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla/kernel.spec linux.ac/kernel.spec
--- linux.vanilla/kernel.spec Thu Jan 1 01:00:00 1970
+++ linux.ac/kernel.spec Sun Jul 29 22:03:06 2001
@@ -0,0 +1,37 @@
+Name: kernel
+Summary: The Linux Kernel
+Version: 2.4.7ac3
+Release: 3
+License: GPL
+Group: System Environment/Kernel
+Vendor: The Linux Community
+URL: http://www.kernel.org
+Source: kernel-2.4.7ac3.tar.gz
+BuildRoot: /var/tmp/%{name}-%{PACKAGE_VERSION}-root
+%define __spec_install_post /usr/lib/rpm/brp-compress || :
+
+%description
+The Linux Kernel, the operating system core itself
+
+%prep
+%setup -q
+
+%build
+make oldconfig dep clean bzImage modules
+
+%install
+mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib $RPM_BUILD_ROOT/lib/modules
+INSTALL_MOD_PATH=$RPM_BUILD_ROOT make modules_install
+cp arch/i386/boot/bzImage $RPM_BUILD_ROOT/boot/vmlinuz-2.4.7-ac3
+cp System.map
+$RPM_BUILD_ROOT/boot/System.map-2.4.7-ac3
+
+%clean
+#echo -rf $RPM_BUILD_ROOT
+
+%files
+%defattr (-, root, root)
+%dir /lib/modules
+/lib/modules/2.4.7-ac3
+/boot/*
+
|