home *** CD-ROM | disk | FTP | other *** search
/ com!online 2005 April / com_0405_1.iso / opensource / coLinux-0.6.1.exe / default.colinux.xml < prev    next >
Encoding:
Extensible Markup Language  |  2004-04-25  |  1.1 KB  |  30 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.     <block_device index="0" path="\DosDevices\c:\coLinux\root_fs" 
  7.     enabled="true" />
  8.     
  9.     <!-- This line can specify a swap file if you wish, or an additional
  10.          image file, it will /dev/cobd1. Additional block_devices can
  11.      be specified in the same manner by increasing the index -->
  12.  
  13.     <block_device index="1" path="\DosDevices\c:\coLinux\swap_device" 
  14.     enabled="true" />
  15.  
  16.     <!-- bootparams allows you to pass kernel boot parameters -->
  17.     <bootparams>root=/dev/cobd0</bootparams>
  18.  
  19.     <!-- image allows you to specify the kernel to boot -->
  20.     <image path="vmlinux" />
  21.  
  22.     <!-- this line allows you to specify the amount of memory available 
  23.          to coLinux -->
  24.     <memory size="64" />
  25.  
  26.     <!-- This allows you to modify networking parameters, see the README 
  27.          or website for more information -->
  28.     <network index="0" type="tap" />
  29. </colinux>
  30.