mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
96 lines
2.8 KiB
Plaintext
96 lines
2.8 KiB
Plaintext
source ${genode_dir}/repos/libports/run/qt5_common.inc
|
|
|
|
import_from_depot [depot_user]/raw/qt5_qt_labs_folderlistmodel \
|
|
[depot_user]/raw/qt5_qtquick_layouts \
|
|
[depot_user]/raw/qt5_qtquick_virtualkeyboard \
|
|
[depot_user]/raw/qt5_qtquick_window \
|
|
[depot_user]/raw/qt5_qtquick2 \
|
|
[depot_user]/src/libcrypto \
|
|
[depot_user]/src/libssl \
|
|
[depot_user]/src/qt5_component \
|
|
[depot_user]/src/qt5_network \
|
|
[depot_user]/src/qt5_qml \
|
|
[depot_user]/src/qt5_qt_labs_folderlistmodel \
|
|
[depot_user]/src/qt5_qtquick_layouts \
|
|
[depot_user]/src/qt5_qtquick_virtualkeyboard \
|
|
[depot_user]/src/qt5_qtquick_window \
|
|
[depot_user]/src/qt5_qtquick2 \
|
|
[depot_user]/src/qt5_quick \
|
|
[depot_user]/src/qt5_svg \
|
|
[depot_user]/src/qt5_virtualkeyboard \
|
|
[depot_user]/src/qt5_widgets
|
|
|
|
#
|
|
# Build
|
|
#
|
|
|
|
append build_components [qt5_build_components feature]
|
|
|
|
build $build_components
|
|
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
append config {
|
|
<config>
|
|
<parent-provides>}
|
|
append config [qt5_parent_provides feature]
|
|
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 feature]
|
|
|
|
append config {
|
|
<start name="basic" caps="300">
|
|
<resource name="RAM" quantum="100M"/>
|
|
<config>
|
|
<vfs>
|
|
<dir name="dev">
|
|
<log/>
|
|
<inline name="rtc">2018-01-01 00:01</inline>
|
|
</dir>
|
|
<tar name="qt5_dejavusans.tar"/>
|
|
<tar name="qt5_qt_labs_folderlistmodel.tar"/>
|
|
<tar name="qt5_qmlfolderlistmodelplugin.tar"/>
|
|
<tar name="qt5_qquicklayoutsplugin.tar"/>
|
|
<tar name="qt5_qtquick2.tar"/>
|
|
<tar name="qt5_qtquick2plugin.tar"/>
|
|
<tar name="qt5_qtquick_layouts.tar"/>
|
|
<tar name="qt5_qtquick_virtualkeyboard.tar"/>
|
|
<tar name="qt5_qtquick_window.tar"/>
|
|
<tar name="qt5_qtvirtualkeyboardplugin.tar"/>
|
|
<tar name="qt5_qtvirtualkeyboardstylesplugin.tar"/>
|
|
<tar name="qt5_windowplugin.tar"/>
|
|
</vfs>
|
|
<libc stdout="/dev/log" stderr="/dev/log" rtc="/dev/rtc"/>
|
|
</config>
|
|
<route>
|
|
<service name="Nitpicker"> <child name="wm"/> </service>
|
|
<service name="Report" label="shape">
|
|
<child name="pointer" label="wm -> basic -> shape"/>
|
|
</service>
|
|
<service name="ROM" label="egl_drv.lib.so"> <parent label="egl_swrast.lib.so" /> </service>
|
|
<any-service> <parent /> <any-child/> </any-service>
|
|
</route>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
append boot_modules [qt5_boot_modules feature]
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
run_genode_until forever
|