home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 May / CMCD0505.ISO / Software / Complet / Colinux / coLinux-0.6.2.exe / default.colinux.xml < prev    next >
Extensible Markup Language  |  2005-02-05  |  2KB  |  40 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <colinux>
  3.     <!-- This line needs to point to your root file system. 
  4.        For example change "root_fs" to the name of the Debian image.
  5.          Inside coLinux it will be /dev/cobd0 
  6.      
  7.      Block Device Aliasing: You can now handle most dual-boot issues
  8.      by adding an alias="devname" to block_device. i.e. alias="hda",
  9.      alias="hda1" You can do this for SCSI as well as IDE.  You need
  10.      to be aware that if you add an alias, you need to change your
  11.      bootparams root="devname" appropriately (you may need to use
  12.      devfs naming in some situations).  -->
  13.     <block_device index="0" path="\DosDevices\c:\coLinux\root_fs" 
  14.     enabled="true" />
  15.     
  16.     <!-- This line can specify a swap file if you wish, or an additional
  17.          image file, it will /dev/cobd1. Additional block_devices can
  18.      be specified in the same manner by increasing the index -->
  19.  
  20.     <block_device index="1" path="\DosDevices\c:\coLinux\swap_device" 
  21.     enabled="true" />
  22.  
  23.     <!-- bootparams allows you to pass kernel boot parameters -->
  24.     <bootparams>root=/dev/cobd0</bootparams>
  25.  
  26.     <!-- Initial RamDISK (initrd) support -->
  27.     <initrd path="initrd.gz" />
  28.     
  29.     <!-- image allows you to specify the kernel to boot -->
  30.     <image path="vmlinux" />
  31.  
  32.     <!-- this line allows you to specify the amount of memory available 
  33.          to coLinux -->
  34.     <memory size="64" />
  35.  
  36.     <!-- This allows you to modify networking parameters, see the README 
  37.          or website or wiki for more information -->
  38.     <network index="0" type="tap" />
  39. </colinux>
  40.