mkspec
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. #
  3. # Output a simple RPM spec file that uses no fancy features requring
  4. # RPM v4. This is intended to work with any RPM distro.
  5. #
  6. # The only gothic bit here is redefining install_post to avoid 
  7. # stripping the symbols from files in the kernel which we want
  8. #
  9. echo "Name: kernel"
  10. echo "Summary: The Linux Kernel"
  11. echo "Version: "$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION | sed -e "s/-//g"
  12. # we need to determine the NEXT version number so that uname and
  13. # rpm -q will agree
  14. echo "Release: `. scripts/mkversion`"
  15. echo "License: GPL"
  16. echo "Group: System Environment/Kernel"
  17. echo "Vendor: The Linux Community"
  18. echo "URL: http://www.kernel.org"
  19. echo -n "Source: kernel-$VERSION.$PATCHLEVEL.$SUBLEVEL"
  20. echo "$EXTRAVERSION.tar.gz" | sed -e "s/-//g"
  21. echo "BuildRoot: /var/tmp/%{name}-%{PACKAGE_VERSION}-root"
  22. echo "%define __spec_install_post /usr/lib/rpm/brp-compress || :"
  23. echo ""
  24. echo "%description"
  25. echo "The Linux Kernel, the operating system core itself"
  26. echo ""
  27. echo "%prep"
  28. echo "%setup -q"
  29. echo ""
  30. echo "%build"
  31. echo "make oldconfig dep clean bzImage modules"
  32. echo ""
  33. echo "%install"
  34. echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib $RPM_BUILD_ROOT/lib/modules'
  35. echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make modules_install'
  36. echo 'cp arch/i386/boot/bzImage $RPM_BUILD_ROOT'"/boot/vmlinuz-$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
  37. echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
  38. echo ""
  39. echo "%clean"
  40. echo '#echo -rf $RPM_BUILD_ROOT'
  41. echo ""
  42. echo "%files"
  43. echo '%defattr (-, root, root)'
  44. echo "%dir /lib/modules"
  45. echo "/lib/modules/$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
  46. echo "/boot/*"
  47. echo ""