Minimal-init: Difference between revisions
From Xen
Jump to navigationJump to search
m (moved Minial-init to Minimal-init) |
Lars.kurth (talk | contribs) (Added category and TODO) |
||
Line 29: | Line 29: | ||
/usr/bin/xenstore-write "/local/domain/0/name" "Domain-0" |
/usr/bin/xenstore-write "/local/domain/0/name" "Domain-0" |
||
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]].} |
|||
[[Category:Example]] |
|||
[[Category:Xen]] |
Revision as of 09:05, 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"
{{TODO|Follow up with User:StefanoStabellini to find out what purpose the code snipped serves and where to make it accessible from]].}