mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
a507928cde
Fixes #2427
116 lines
2.0 KiB
Plaintext
116 lines
2.0 KiB
Plaintext
source ${genode_dir}/repos/libports/run/qt5_common.inc
|
|
|
|
#
|
|
# Build
|
|
#
|
|
|
|
append build_components [qt5_build_components feature]
|
|
|
|
append build_components {
|
|
server/loader
|
|
server/tar_rom
|
|
test/nitpicker
|
|
test/qt5/qpluginwidget
|
|
}
|
|
|
|
build $build_components
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Create Qt tar archive
|
|
#
|
|
|
|
create_qt5_fs_tar_archive "test-qpluginwidget" "gui"
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
append config {
|
|
<config>
|
|
<parent-provides>}
|
|
append config [qt5_parent_provides feature]
|
|
append config {
|
|
</parent-provides>
|
|
<default caps="100"/>
|
|
<default-route>
|
|
<any-service> <parent/> <child name="wm"/> <any-child/> </any-service>
|
|
</default-route>}
|
|
|
|
append config [qt5_start_nodes feature]
|
|
|
|
append config {
|
|
<start name="loader" caps="100">
|
|
<resource name="RAM" quantum="8M"/>
|
|
<provides><service name="Loader"/></provides>
|
|
<config>
|
|
<policy label_prefix="test-qpluginwidget">
|
|
<parent-rom name="ld.lib.so"/>
|
|
<parent-rom name="init"/>
|
|
<parent-rom name="tar_rom"/>
|
|
<parent-rom name="testnit"/>
|
|
</policy>
|
|
</config>
|
|
</start>
|
|
<start name="test-qpluginwidget" caps="900">
|
|
<resource name="RAM" quantum="30M"/>
|
|
<config>
|
|
<vfs>
|
|
<dir name="dev"> <log/> </dir>
|
|
<tar name="qt5_fs_test-qpluginwidget.tar"/>
|
|
</vfs>
|
|
<libc stdout="/dev/log" stderr="/dev/log"/>
|
|
</config>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
exec sh -c "ln -sf [pwd]/test/qt5/qpluginwidget/test-plugin.tar bin/"
|
|
|
|
append boot_modules [qt5_boot_modules feature]
|
|
|
|
append boot_modules {
|
|
loader
|
|
tar_rom
|
|
testnit
|
|
test-qpluginwidget
|
|
freetype.lib.so
|
|
gallium.lib.so
|
|
icu.lib.so
|
|
ld.lib.so
|
|
libc.lib.so
|
|
libc_pipe.lib.so
|
|
libcrypto.lib.so
|
|
libm.lib.so
|
|
libpng.lib.so
|
|
libssl.lib.so
|
|
jpeg.lib.so
|
|
pcre16.lib.so
|
|
pthread.lib.so
|
|
qt5_component.lib.so
|
|
qt5_core.lib.so
|
|
qt5_gui.lib.so
|
|
qt5_qnitpickerviewwidget.lib.so
|
|
qt5_qpluginwidget.lib.so
|
|
qt5_widgets.lib.so
|
|
qt5_xml.lib.so
|
|
qt5_network.lib.so
|
|
zlib.lib.so
|
|
test-plugin.tar
|
|
stdcxx.lib.so
|
|
qt5_fs_test-qpluginwidget.tar
|
|
}
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
|
run_genode_until forever
|
|
|