Changes between Version 4 and Version 5 of Dev/KernelHack/COINS/worklog/201109


Ignore:
Timestamp:
Sep 28, 2011 4:28:01 PM (13 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Dev/KernelHack/COINS/worklog/201109

    v4 v5  
    866866tcp        0      0 0.0.0.0:8864                0.0.0.0:*                   LISTEN 
    867867}}} 
     868 
     869 = 09/28 = 
     870 * カーネルのビルドごとにゲスト側でインストールコマンドを叩くのが面倒なのでシェルスクリプトにした 
     871 
     872 * install.sh 
     873{{{#!sh 
     874#! /bin/sh -ex 
     875 
     876VERSION=`ls -d /mnt/hgfs/linux-* | sed s#.*linux-##` 
     877echo Install Linux Kernel version ${VERSION} 
     878 
     879cd /mnt/hgfs/linux-${VERSION}/ 
     880make install 
     881make modules_install 
     882 
     883mkinitramfs -o /boot/initrd.img-${VERSION} ${VERSION} 
     884update-grub 
     885 
     886uname -a 
     887}}} 
     888 
     889 * s0711489@ubuntu-lucid64:~$ time sudo /mnt/hgfs/tools/install.sh 
     890{{{ 
     891+ sed s#.*linux-## 
     892+ ls -d /mnt/hgfs/linux-2.6.35.14 
     893+ VERSION=2.6.35.14 
     894+ echo Install Linux Kernel version 2.6.35.14 
     895Install Linux Kernel version 2.6.35.14 
     896+ cd /mnt/hgfs/linux-2.6.35.14/ 
     897+ make install 
     898sh /mnt/hgfs/linux-2.6.35.14/arch/x86/boot/install.sh 2.6.35.14 arch/x86/boot/bzImage \ 
     899                System.map "/boot" 
     900+ make modules_install 
     901  INSTALL arch/x86/kernel/test_nx.ko 
     902  INSTALL drivers/scsi/scsi_wait_scan.ko 
     903  INSTALL net/netfilter/xt_mark.ko 
     904  DEPMOD  2.6.35.14 
     905+ mkinitramfs -o /boot/initrd.img-2.6.35.14 2.6.35.14 
     906+ update-grub 
     907Generating grub.cfg ... 
     908Found linux image: /boot/vmlinuz-2.6.35.14 
     909Found initrd image: /boot/initrd.img-2.6.35.14 
     910Found linux image: /boot/vmlinuz-2.6.32-33-generic 
     911Found initrd image: /boot/initrd.img-2.6.32-33-generic 
     912Found memtest86+ image: /boot/memtest86+.bin 
     913done 
     914+ echo Install Kernel Headers to /lib/modules/2.6.35.14/build 
     915Install Kernel Headers to /lib/modules/2.6.35.14/build 
     916+ date +%Y%m%d 
     917+ mv /lib/modules/2.6.35.14/build /lib/modules/2.6.35.14/build-20110928 
     918+ cd /mnt/hgfs/ 
     919+ tar c --files-from - 
     920+ tar x -C /lib/modules/2.6.35.14/ 
     921+ egrep -v vmlinu 
     922+ egrep -v .o$ 
     923+ find linux-2.6.35.14 -type f 
     924+ mv /lib/modules/2.6.35.14/linux-2.6.35.14 /lib/modules/2.6.35.14/build 
     925+ uname -a 
     926Linux ubuntu-lucid64 2.6.32-33-generic #72-Ubuntu SMP Fri Jul 29 21:07:13 UTC 2011 x86_64 GNU/Linux 
     927 
     928real    1m32.138s 
     929user    0m13.790s 
     930sys     1m26.160s 
     931}}}