Minimal-init: Difference between revisions
From Xen
Jump to navigationJump to search
Lars.kurth (talk | contribs) (Added category and TODO) |
Lars.kurth (talk | contribs) mNo edit summary |
||
Line 30: | Line 30: | ||
echo "Done" |
echo "Done" |
||
{{TODO|Follow up with [[User:StefanoStabellini]] to find out what purpose the code snipped serves and where to make it accessible from |
{{TODO|Follow up with [[User:StefanoStabellini]] to find out what purpose the code snipped serves and where to make it accessible from.}} |
||
[[Category:Example]] |
[[Category:Example]] |
Revision as of 09:11, 29 January 2013
#!/bin/bash mount /proc mount -t xenfs xenfs /proc/xen mknod /dev/xen/evtchn c 10 61 mknod /dev/xen/privcmd c 10 59 mknod /dev/xen/gntdev c 10 60 mknod /dev/xen/xenbus_backend c 10 62 mknod /dev/xen/xenbus c 10 63 mknod -m660 /dev/loop0 b 7 0 mount -t sysfs sysfs /sys mount -t devpts devpts /dev/pts export LD_LIBRARY_PATH=/usr/local/lib echo "Starting Xenstored" xenstored -T /root/xenstored.log &>/root/xenstored.out echo "Xenstored started" echo "Starting xenconsoled" xenconsoled -i & echo "Xenconsoled started" echo "Setting up loop0" losetup /dev/loop0 /root/guestfs losetup -a echo "Writing dom0 name to xenstore" /usr/bin/xenstore-write "/local/domain/0/name" "Domain-0" echo "Done"
To Do:
Follow up with User:StefanoStabellini to find out what purpose the code snipped serves and where to make it accessible from. |