Displaying 2 results from an estimated 2 matches for "cb32986fd9b85c315ae4".
2016 Mar 13
2
Improving supermin appliance startup time (lkvm/qboot)
...d it becomes a little faster (instead of root fs on block device):
real 0m3.299s
user 0m2.084s
sys 0m1.828s
To do this we need to load just the virtio and 9p modules:
let kmods = [
"virtio*.ko*";
"9p*.ko*";
]
Modify init.c to mount the 9p root: https://gist.github.com/anonymous/cb32986fd9b85c315ae4
And wrap qemu to create the 9p device (the mount is just there for a quick test, in reality supermin itself should probably leave the unpacker dir around):
https://gist.github.com/anonymous/5cdbc18974f88d6ea9e0
Next step: kvmtool [3]. Avoids some delays introduced by legacy BIOS boot, and device p...
2016 Mar 15
0
Re: Improving supermin appliance startup time (lkvm/qboot)
...n block device):
> real 0m3.299s
> user 0m2.084s
> sys 0m1.828s
>
> To do this we need to load just the virtio and 9p modules:
> let kmods = [
> "virtio*.ko*";
> "9p*.ko*";
> ]
> Modify init.c to mount the 9p root: https://gist.github.com/anonymous/cb32986fd9b85c315ae4
> And wrap qemu to create the 9p device (the mount is just there for a quick test, in reality supermin itself should probably leave the unpacker dir around):
> https://gist.github.com/anonymous/5cdbc18974f88d6ea9e0
>
> Next step: kvmtool [3]. Avoids some delays introduced by legacy BIO...