send-to-self-2.6.24.sh 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. #!/bin/bash
  2. # file: patches/send-to-self-2.6.24.sh
  3. # ====================================================================
  4. # environment variables;
  5. # --------------------------------------------------------------------
  6. VERSION=2.6.24
  7. CURRENT=6
  8. VARIANT=send-to-self
  9. PACKAGE=linux-source-${VERSION}
  10. ARCHIVE=${PACKAGE}.tar.bz2
  11. PATCH=send-to-self-2.6.24-1.diff
  12. # ====================================================================
  13. # extend version string;
  14. # --------------------------------------------------------------------
  15. if [ ! -z ${CURRENT} ]; then
  16. VERSION+=.${CURRENT}
  17. fi
  18. if [ ! -z ${VARIANT} ]; then
  19. VERSION+=-${VARIANT}
  20. fi
  21. # ====================================================================
  22. # install required software;
  23. # --------------------------------------------------------------------
  24. if [ ! -f ${ARCHIVE} ]; then
  25. wget http://www.ssi.bg/~ja/${PATCH}
  26. apt-get install ${PACKAGE}
  27. # apt-get install ${PACKAGE} --reinstall
  28. apt-get install binutils patch gcc g++
  29. apt-get install ncurses-dev
  30. mv /usr/src/${ARCHIVE} .
  31. fi
  32. # ====================================================================
  33. # confirm archive file exists;
  34. # --------------------------------------------------------------------
  35. if [ ! -f ${ARCHIVE} ]; then
  36. echo "File ${ARCHIVE} is missing or misplaced"
  37. exit 1
  38. fi
  39. # ====================================================================
  40. # confirm patch file exists;
  41. # --------------------------------------------------------------------
  42. if [ ! -f ${PATCH} ]; then
  43. echo "File ${PATCH} is missing or misplaced"
  44. exit 1
  45. fi
  46. # ====================================================================
  47. # remove old kernel source if present;
  48. # --------------------------------------------------------------------
  49. if [ -d ${PACKAGE} ]; then
  50. echo "Removing old source ..."
  51. rm -fr ${PACKAGE}
  52. fi
  53. # ====================================================================
  54. # extract kernel source;
  55. # --------------------------------------------------------------------
  56. tar -vjxf ${ARCHIVE}
  57. if [ ! -d ${PACKAGE} ]; then
  58. echo "Folder ${PACKAGE} does not exist"
  59. exit 1
  60. fi
  61. cd ${PACKAGE}
  62. # ====================================================================
  63. # patch kernel source;
  64. # --------------------------------------------------------------------
  65. patch -p1 < ../${PATCH}
  66. # ====================================================================
  67. # compile kernel source;
  68. # --------------------------------------------------------------------
  69. make mrproper
  70. make menuconfig
  71. make
  72. # ====================================================================
  73. # install kernel source;
  74. # --------------------------------------------------------------------
  75. make modules_install
  76. make install
  77. # ====================================================================
  78. # install kernel source;
  79. # --------------------------------------------------------------------
  80. mkinitramfs -o /boot/initrd.img-${VERSION} ${VERSION}
  81. ln -fs config-${VERSION} /boot/config
  82. ln -fs initrd.img-${VERSION} /boot/initrd.img
  83. ln -fs System.map-${VERSION} /boot/System.map
  84. ln -fs vmlinuz-${VERSION} /boot/vmlinuz