genode/repos/libports/run/qt5_textedit.run

112 lines
2.8 KiB
Plaintext
Raw Normal View History

source ${genode_dir}/repos/libports/run/qt5_common.inc
2018-08-15 09:22:09 +02:00
import_from_depot [depot_user]/src/qt5_component \
[depot_user]/src/qt5_printsupport \
[depot_user]/src/qt5_textedit \
[depot_user]/src/qt5_widgets \
[depot_user]/src/vfs
2018-04-24 12:40:22 +02:00
2013-08-09 15:04:52 +02:00
#
# Build
#
if {[have_spec odroid_xu]} {
puts "Run script does not support this platform."
exit 0
}
2015-09-17 12:50:42 +02:00
append build_components [qt5_build_components feature]
2013-08-09 15:04:52 +02:00
build $build_components
2013-08-09 15:04:52 +02:00
#
# Generate config
#
append config {
2013-08-09 15:04:52 +02:00
<config>
<parent-provides>}
append config [qt5_parent_provides feature]
append config {
2013-08-09 15:04:52 +02:00
</parent-provides>
<default caps="100"/>
2013-08-09 15:04:52 +02:00
<default-route>
<any-service> <parent/> <any-child/> </any-service>
</default-route>}
append config [qt5_start_nodes feature]
2013-08-09 15:04:52 +02:00
append config {
<start name="ram_fs">
<resource name="RAM" quantum="10M"/>
<binary name="vfs"/>
<provides><service name="File_system"/></provides>
<config>
<vfs> <ram/> </vfs>
<!-- constrain sessions according to their labels -->
<policy label_prefix="textedit" root="/" writeable="yes" />
<policy label_prefix="textedit2" root="/" writeable="yes" />
</config>
</start>}
2013-08-09 15:04:52 +02:00
append config {
<start name="textedit" caps="300">
2013-08-09 15:04:52 +02:00
<resource name="RAM" quantum="70M"/>
<config>
2020-05-12 08:10:00 +02:00
<libc stdout="/dev/log" stderr="/dev/log" pipe="/dev/pipe" rtc="/dev/rtc"/>
<vfs>
2018-04-24 12:40:22 +02:00
<dir name="dev">
2020-05-12 08:10:00 +02:00
<dir name="pipe"> <pipe/> </dir>
2018-04-24 12:40:22 +02:00
<log/>
<inline name="rtc">2018-01-01 00:01</inline>
</dir>
<dir name="fs"> <fs/> </dir>
2018-04-24 12:40:22 +02:00
<tar name="qt5_dejavusans.tar"/>
</vfs>
</config>
<route>
<service name="Nitpicker"> <child name="wm"/> </service>
<service name="Report" label="shape"> <child name="wm"/> </service>
<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 15:04:52 +02:00
</start>
<start name="textedit2" caps="300">
2013-08-09 15:04:52 +02:00
<binary name="textedit" />
<resource name="RAM" quantum="70M"/>
<config>
2020-05-12 08:10:00 +02:00
<libc stdout="/dev/log" stderr="/dev/log" pipe="/dev/pipe" rtc="/dev/rtc"/>
<vfs>
2018-04-24 12:40:22 +02:00
<dir name="dev">
2020-05-12 08:10:00 +02:00
<dir name="pipe"> <pipe/> </dir>
2018-04-24 12:40:22 +02:00
<log/>
<inline name="rtc">2018-01-01 00:01</inline>
</dir>
<dir name="fs"> <fs/> </dir>
2018-04-24 12:40:22 +02:00
<tar name="qt5_dejavusans.tar"/>
</vfs>
</config>
<route>
<service name="Nitpicker"> <child name="wm"/> </service>
<service name="Report" label="shape"> <child name="wm"/> </service>
<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 15:04:52 +02:00
</start>
</config>
}
install_config $config
#
# Boot modules
#
2015-09-17 12:50:42 +02:00
append boot_modules [qt5_boot_modules feature]
2013-08-09 15:04:52 +02:00
build_boot_image $boot_modules
run_genode_until forever