# -*- mode: python; -*- #---------------------------------------------------------------------------- # Kernel image file. This kernel will be loaded in the new domain. kernel = "/home/herbelot/Xen/netbsd-XENU-200508030000Z-3.99.7" #kernel = "/home/herbelot/Xen/netbsd-INSTALL_XENU-200508030000Z-3.99.7" # Memory allocation (in megabytes) for the new domain. memory = 32 # A handy name for your new domain. This will appear in 'xm list', # and you can use this as parameters for xm in place of the domain number. name = "nbsd-dom1" # Which CPU to start domain on (only relevant for SMP hardware) cpu = -1 # leave to Xen to pick #---------------------------------------------------------------------------- # Define network interfaces for the new domain. # Number of network interfaces. Default is 1. nics=1 # L'adresse IP et le masque sont ceux de l'interface virtuelle dans # le domaine 0 : la configuration IP de la nouvelle machine virtuelle # (domaine U) est definie dans ses propres fichiers de configuration # (/etc/ifconfig.xennet0 pour un domU sous NetBSD) vif = [ 'mac=aa:00:00:50:02:f0, bridge=192.168.2.14 netmask 255.255.255.240' ] #---------------------------------------------------------------------------- # Define the disk devices you want the domain to have access to, and # what you want them accessible as. disk = [ 'phy:/dev/vn0d,wd0d,w' ] #---------------------------------------------------------------------------- # Set the kernel command line for the new domain. # Set root device. This one does matter for NetBSD root = "/dev/wd0d" # end of nbsd config file ====================================================