# -*- mode: python; -*- #---------------------------------------------------------------------------- # Kernel image file. This kernel will be loaded in the new domain. kernel = "/home/herbelot/Xen/netbsd-XENU-20050421-3.99.3" # 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-dom2" # 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 vif = [ 'mac=aa:00:00:50:02:f0, bridge=192.168.2.30 netmask 255.255.255.240' ] disk = [ 'phy:/dev/wd0h,wd0d,w' ] # Set root device. This one does matter for NetBSD root = "/dev/wd0d" # end of nbsd config file ====================================================