Changeset 1680


Ignore:
Timestamp:
Nov 15, 2008, 11:45:53 PM (15 years ago)
Author:
broder
Message:

Choose what kernel to use for the autoinstaller based on what dom0 is
running

Location:
trunk/packages/invirt-xen-config
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-xen-config/debian/changelog

    r1636 r1680  
     1invirt-xen-config (0.0.16) unstable; urgency=low
     2
     3  * Pick the kernel and initrd for the autoinstaller based on the kernel
     4    the dom0 is currently running
     5
     6 -- Evan Broder <broder@mit.edu>  Sat, 15 Nov 2008 23:45:30 -0500
     7
    18invirt-xen-config (0.0.15) unstable; urgency=low
    29
  • trunk/packages/invirt-xen-config/invirt-database

    r1636 r1680  
    5353    disk.append('phy:/dev/xenvg/s_install_hda,hdb,r')
    5454
    55     kernel = '/boot/vmlinuz-2.6.24-19-xen' #From hardy
    56     ramdisk = '/boot/initrd.img-2.6.24-19-xen'
     55    import os
     56    release = os.uname()[2]
     57    kernel = '/boot/vmlinuz-%s' % release
     58    ramdisk = '/boot/initrd.img-%s' % release
    5759
    5860    if not machine.nics:
Note: See TracChangeset for help on using the changeset viewer.