2014-05-20 20:52:55 +00:00
|
|
|
source ${genode_dir}/repos/libports/run/qt5_common.inc
|
|
|
|
|
2018-08-15 07:22:09 +00:00
|
|
|
import_from_depot [depot_user]/src/qt5_component \
|
|
|
|
[depot_user]/src/qt5_widgets \
|
|
|
|
[depot_user]/src/qt5_calculatorform
|
2018-04-24 10:40:22 +00:00
|
|
|
|
2013-08-09 13:04:52 +00:00
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
|
2015-09-17 10:50:42 +00:00
|
|
|
append build_components [qt5_build_components feature]
|
2014-05-20 20:52:55 +00:00
|
|
|
|
|
|
|
build $build_components
|
|
|
|
|
2014-08-12 16:08:06 +00:00
|
|
|
|
2013-08-09 13:04:52 +00:00
|
|
|
#
|
|
|
|
# Generate config
|
|
|
|
#
|
|
|
|
|
2015-09-17 10:50:42 +00:00
|
|
|
append config {
|
2013-08-09 13:04:52 +00:00
|
|
|
<config>
|
2014-05-20 20:52:55 +00:00
|
|
|
<parent-provides>}
|
|
|
|
append config [qt5_parent_provides feature]
|
|
|
|
append config {
|
2013-08-09 13:04:52 +00:00
|
|
|
</parent-provides>
|
2017-05-07 20:36:11 +00:00
|
|
|
<default caps="100"/>
|
2013-08-09 13:04:52 +00:00
|
|
|
<default-route>
|
2017-08-17 11:29:32 +00:00
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
2014-05-20 20:52:55 +00:00
|
|
|
</default-route>}
|
|
|
|
|
|
|
|
append config [qt5_start_nodes feature]
|
2013-08-09 13:04:52 +00:00
|
|
|
|
|
|
|
append config {
|
2017-05-22 12:50:09 +00:00
|
|
|
<start name="calculatorform" caps="200">
|
2013-08-09 13:04:52 +00:00
|
|
|
<resource name="RAM" quantum="80M"/>
|
2014-08-12 16:08:06 +00:00
|
|
|
<config>
|
2017-03-20 11:04:55 +00:00
|
|
|
<vfs>
|
2018-04-24 10:40:22 +00:00
|
|
|
<dir name="dev">
|
2020-05-12 06:10:00 +00:00
|
|
|
<dir name="pipe"> <pipe/> </dir>
|
2018-04-24 10:40:22 +00:00
|
|
|
<log/>
|
|
|
|
<inline name="rtc">2018-01-01 00:01</inline>
|
|
|
|
</dir>
|
|
|
|
<tar name="qt5_dejavusans.tar"/>
|
2017-03-20 11:04:55 +00:00
|
|
|
</vfs>
|
2020-05-12 06:10:00 +00:00
|
|
|
<libc stdout="/dev/log" stderr="/dev/log" pipe="/dev/pipe" rtc="/dev/rtc"/>
|
2014-08-12 16:08:06 +00:00
|
|
|
</config>
|
2017-08-17 11:29:32 +00:00
|
|
|
<route>
|
2020-06-11 14:06:21 +00:00
|
|
|
<service name="Gui"> <child name="wm"/> </service>
|
2017-11-24 19:23:45 +00:00
|
|
|
<service name="Report" label="shape">
|
|
|
|
<child name="pointer" label="wm -> calculatorform -> shape"/>
|
|
|
|
</service>
|
2017-08-17 11:29:32 +00:00
|
|
|
<service name="ROM" label="egl_drv.lib.so"> <parent label="egl_swrast.lib.so" /> </service>
|
|
|
|
<any-service> <parent /> <any-child/> </any-service>
|
|
|
|
</route>
|
2013-08-09 13:04:52 +00:00
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
|
|
|
install_config $config
|
|
|
|
|
|
|
|
#
|
|
|
|
# Boot modules
|
|
|
|
#
|
|
|
|
|
2015-09-17 10:50:42 +00:00
|
|
|
append boot_modules [qt5_boot_modules feature]
|
2014-05-20 20:52:55 +00:00
|
|
|
|
2013-08-09 13:04:52 +00:00
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
|
|
|
run_genode_until forever
|