mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
82a57a10e7
Fixes #4589
72 lines
1.8 KiB
Plaintext
72 lines
1.8 KiB
Plaintext
source ${genode_dir}/repos/libports/run/qt5_common.inc
|
|
|
|
import_from_depot [depot_user]/src/qt5_component \
|
|
[depot_user]/src/qt5_declarative \
|
|
[depot_user]/src/qt5_quickcontrols2 \
|
|
[depot_user]/src/qt5_svg \
|
|
[depot_user]/src/qt5_virtualkeyboard \
|
|
[depot_user]/src/qt5_virtualkeyboard_example
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
append config {
|
|
<config>
|
|
<parent-provides>}
|
|
append config [qt5_parent_provides]
|
|
append config {
|
|
</parent-provides>
|
|
<default caps="300"/>
|
|
<default-route>
|
|
<any-service> <parent/> <child name="wm"/> <any-child/> </any-service>
|
|
</default-route>}
|
|
|
|
append config [qt5_start_nodes]
|
|
|
|
append config {
|
|
<start name="basic" caps="450">
|
|
<resource name="RAM" quantum="100M"/>
|
|
<config>
|
|
<vfs>
|
|
<dir name="dev">
|
|
<log/>
|
|
<inline name="rtc">2018-01-01 00:01</inline>
|
|
</dir>
|
|
<dir name="pipe"> <pipe/> </dir>
|
|
<tar name="qt5_dejavusans.tar"/>
|
|
<tar name="qt5_declarative_qml.tar"/>
|
|
<tar name="qt5_libqgenode.tar"/>
|
|
<tar name="qt5_libqsvg.tar"/>
|
|
<tar name="qt5_libqtvirtualkeyboardplugin.tar"/>
|
|
<tar name="qt5_quickcontrols2_qml.tar"/>
|
|
<tar name="qt5_virtualkeyboard_qml.tar"/>
|
|
</vfs>
|
|
<libc stdout="/dev/log" stderr="/dev/log" pipe="/pipe" rtc="/dev/rtc"/>
|
|
</config>
|
|
<route>
|
|
<service name="Gui"> <child name="wm"/> </service>
|
|
<service name="Report" label="shape">
|
|
<child name="pointer" label="wm -> basic -> shape"/>
|
|
</service>
|
|
<service name="ROM" label="mesa_gpu_drv.lib.so">
|
|
<parent label="mesa_gpu-softpipe.lib.so" />
|
|
</service>
|
|
<any-service> <parent /> <any-child/> </any-service>
|
|
</route>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
append boot_modules [qt5_boot_modules]
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
run_genode_until forever
|