123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- #!/bin/bash
- # file: patches/send-to-self-2.6.24.sh
- # ====================================================================
- # environment variables;
- # --------------------------------------------------------------------
- VERSION=2.6.24
- CURRENT=6
- VARIANT=send-to-self
- PACKAGE=linux-source-${VERSION}
- ARCHIVE=${PACKAGE}.tar.bz2
- PATCH=send-to-self-2.6.24-1.diff
- # ====================================================================
- # extend version string;
- # --------------------------------------------------------------------
- if [ ! -z ${CURRENT} ]; then
- VERSION+=.${CURRENT}
- fi
- if [ ! -z ${VARIANT} ]; then
- VERSION+=-${VARIANT}
- fi
- # ====================================================================
- # install required software;
- # --------------------------------------------------------------------
- if [ ! -f ${ARCHIVE} ]; then
- wget http://www.ssi.bg/~ja/${PATCH}
- apt-get install ${PACKAGE}
- # apt-get install ${PACKAGE} --reinstall
- apt-get install binutils patch gcc g++
- apt-get install ncurses-dev
- mv /usr/src/${ARCHIVE} .
- fi
- # ====================================================================
- # confirm archive file exists;
- # --------------------------------------------------------------------
- if [ ! -f ${ARCHIVE} ]; then
- echo "File ${ARCHIVE} is missing or misplaced"
- exit 1
- fi
- # ====================================================================
- # confirm patch file exists;
- # --------------------------------------------------------------------
- if [ ! -f ${PATCH} ]; then
- echo "File ${PATCH} is missing or misplaced"
- exit 1
- fi
- # ====================================================================
- # remove old kernel source if present;
- # --------------------------------------------------------------------
- if [ -d ${PACKAGE} ]; then
- echo "Removing old source ..."
- rm -fr ${PACKAGE}
- fi
- # ====================================================================
- # extract kernel source;
- # --------------------------------------------------------------------
- tar -vjxf ${ARCHIVE}
- if [ ! -d ${PACKAGE} ]; then
- echo "Folder ${PACKAGE} does not exist"
- exit 1
- fi
- cd ${PACKAGE}
- # ====================================================================
- # patch kernel source;
- # --------------------------------------------------------------------
- patch -p1 < ../${PATCH}
- # ====================================================================
- # compile kernel source;
- # --------------------------------------------------------------------
- make mrproper
- make menuconfig
- make
- # ====================================================================
- # install kernel source;
- # --------------------------------------------------------------------
- make modules_install
- make install
- # ====================================================================
- # install kernel source;
- # --------------------------------------------------------------------
- mkinitramfs -o /boot/initrd.img-${VERSION} ${VERSION}
- ln -fs config-${VERSION} /boot/config
- ln -fs initrd.img-${VERSION} /boot/initrd.img
- ln -fs System.map-${VERSION} /boot/System.map
- ln -fs vmlinuz-${VERSION} /boot/vmlinuz
|