vbox5: add capture pkg version

Issue #4078
This commit is contained in:
Alexander Boettcher 2021-04-21 14:14:46 +02:00 committed by Norman Feske
parent 910ea16405
commit 7b9e7361ba
6 changed files with 102 additions and 0 deletions

View File

@ -8,6 +8,7 @@ _/pkg/rom_reporter
_/pkg/nic_router-nat
_/pkg/vbox5-nova-sculpt
_/pkg/vbox5
_/pkg/vbox5-nova-capture
_/pkg/wm
_/pkg/themed_wm
_/pkg/themed_decorator

View File

@ -24,6 +24,7 @@
<index name="Virtual machines">
<pkg path="vbox5" info="VBox5 for running Linux (generic version)"/>
<pkg path="vbox5-nova-sculpt" info="VBox5 for running Linux (NOVA version)" />
<pkg path="vbox5-nova-capture" info="VBox5 + Webcam (NOVA version)" />
</index>
</index>

View File

@ -0,0 +1,2 @@
VirtualBox runtime for hosting a large VM in the Sculpt scenario

View File

@ -0,0 +1,9 @@
_/src/vbox5-nova
_/src/base-nova
_/src/libc
_/src/init
_/src/posix
_/src/zlib
_/src/libiconv
_/src/stdcxx
_/src/vfs

View File

@ -0,0 +1 @@
2021-04-19 423d50709b4060fe2d877edfaf5e0a6d3fdb08a4

View File

@ -0,0 +1,88 @@
<runtime ram="4300M" caps="1500" binary="init">
<requires>
<file_system label="vm"/>
<file_system label="shared"/>
<nic/>
<capture/>
<report label="capture"/>
<gui/>
<rom label="capslock"/>
<report label="shape"/>
<report label="clipboard"/>
<rom label="clipboard"/>
<rm/>
<rtc/>
<timer/>
<rom label="platform_info"/>
<rom label="usb_devices"/>
<usb/>
</requires>
<content>
<rom label="ld.lib.so"/>
<rom label="init"/>
<rom label="virtualbox5-nova"/>
<rom label="libc.lib.so"/>
<rom label="libm.lib.so"/>
<rom label="libiconv.lib.so"/>
<rom label="qemu-usb.lib.so"/>
<rom label="stdcxx.lib.so"/>
<rom label="vfs.lib.so"/>
</content>
<config verbose="no">
<parent-provides>
<service name="ROM"/>
<service name="PD"/>
<service name="RM"/>
<service name="CPU"/>
<service name="LOG"/>
<service name="Gui"/>
<service name="Timer"/>
<service name="Rtc"/>
<service name="Report"/>
<service name="File_system"/>
<service name="Usb"/>
<service name="Nic"/>
<service name="Capture"/>
</parent-provides>
<default-route> <any-service> <parent/> <any-child/> </any-service> </default-route>
<start name="vbox" caps="1000">
<binary name="virtualbox5-nova" />
<resource name="RAM" quantum="8G"/>
<exit propagate="yes"/>
<config vbox_file="machine.vbox" xhci="yes" vm_name="linux" capslock="ROM">
<vfs>
<dir name="dev">
<log/>
<rtc/>
</dir>
<dir name="shared"> <fs label="shared" writeable="yes"/> </dir>
<fs writeable="yes"/>
</vfs>
<libc stdout="/dev/log" stderr="/dev/log" rtc="/dev/rtc"/>
<webcam vertical_flip="true" fps="15" report="true" screen_size="false" width="1024" height="768"/>
</config>
<route>
<service name="Audio_out"> <parent/> </service>
<service name="File_system" label="shared"> <parent label="shared"/> </service>
<service name="File_system"> <parent label="vm"/> </service>
<service name="ROM" label="usb_devices"> <parent label="usb_devices"/> </service>
<service name="ROM" label="capslock"> <parent label="capslock"/> </service>
<service name="ROM" label="platform_info">
<parent label="platform_info"/> </service>
<service name="Nic"> <parent/> </service>
<service name="Report" label="shape"> <parent label="shape"/> </service>
<service name="ROM" label="clipboard"> <parent label="clipboard"/> </service>
<service name="Report" label="clipboard"> <parent label="clipboard"/> </service>
<service name="Report" label="capture"> <parent label="capture"/> </service>
<service name="Gui"> <parent label=""/> </service>
<any-service> <parent/> </any-service>
</route>
</start>
</config>
</runtime>