genode/repos/libports/run/qt5_textedit.run

167 lines
3.9 KiB
Plaintext
Raw Normal View History

source ${genode_dir}/repos/libports/run/qt5_common.inc
2013-08-09 15:04:52 +02:00
#
# Build
#
if {[have_spec hw_odroid_xu]} {
puts "Run script does not support this platform."
exit 0
}
set build_components [qt5_build_components feature]
append build_components {
2013-08-09 15:04:52 +02:00
app/qt5/examples/textedit
}
set use_sd_card_driver [expr [have_spec omap4] || [have_spec platform_arndale]]
set use_ahci_driver [have_spec x86]
2013-08-09 15:04:52 +02:00
lappend_if $use_sd_card_driver build_components drivers/sd_card
lappend_if $use_ahci_driver build_components drivers/ahci
lappend_if [have_spec acpi] build_components drivers/acpi
lappend_if [have_spec linux] build_components server/ram_fs
lappend_if [expr ![have_spec linux]] build_components server/ffat_fs
2013-08-09 15:04:52 +02:00
build $build_components
2013-08-09 15:04:52 +02:00
create_boot_directory
#
# Create Qt tar archive
create_qt5_fs_tar_archive "textedit" "gui"
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-route>
2014-05-20 22:52:57 +02:00
<any-service> <parent/> <child name="wm"/> <any-child/> </any-service>
</default-route>}
append config [qt5_start_nodes feature]
2013-08-09 15:04:52 +02:00
append_if $use_ahci_driver config {
<start name="ahci">
2013-08-09 15:04:52 +02:00
<resource name="RAM" quantum="1M"/>
<provides> <service name="Block"/> </provides>
<config ata="yes" />
</start>}
append_if $use_sd_card_driver config {
2013-08-09 15:04:52 +02:00
<start name="sd_card_drv">
<resource name="RAM" quantum="1M" />
<provides><service name="Block"/></provides>
</start>}
append_if [have_spec linux] config {
<start name="ram_fs">
<resource name="RAM" quantum="10M"/>
<provides><service name="File_system"/></provides>
<config>
<!-- constrain sessions according to their labels -->
<policy label="textedit" root="/" writeable="yes" />
<policy label="textedit2" root="/" writeable="yes" />
</config>
</start>}
append_if [expr ![have_spec linux]] config {
<start name="ffat_fs">
<resource name="RAM" quantum="10M"/>
<provides><service name="File_system"/></provides>
<config>
<!-- constrain sessions according to their labels -->
<policy label="textedit" root="/" writeable="yes" />
</config>
</start>}
2013-08-09 15:04:52 +02:00
append config {
<start name="textedit">
<resource name="RAM" quantum="70M"/>
<config xpos="3" ypos="0" width="500" height="710">
<libc stdout="/dev/log" stderr="/dev/log">
<vfs>
<dir name="dev"> <log/> </dir>
<tar name="qt5_fs_textedit.tar"/>
<dir name="fs"> <fs/> </dir>
</vfs>
</libc>
</config>
2013-08-09 15:04:52 +02:00
</start>
<start name="textedit2">
<binary name="textedit" />
<resource name="RAM" quantum="70M"/>
<config xpos="512" ypos="0" width="500" height="710">
<libc stdout="/dev/log" stderr="/dev/log">
<vfs>
<dir name="dev"> <log/> </dir>
<tar name="qt5_fs_textedit.tar"/>
<dir name="fs"> <fs/> </dir>
</vfs>
</libc>
</config>
2013-08-09 15:04:52 +02:00
</start>
</config>
}
install_config $config
#
# Boot modules
#
set boot_modules [qt5_boot_modules feature]
append boot_modules {
2013-08-09 15:04:52 +02:00
textedit
freetype.lib.so
gallium.lib.so
2013-08-09 15:04:52 +02:00
icu.lib.so
ld.lib.so
libc.lib.so
libc_lock_pipe.lib.so
libm.lib.so
libpng.lib.so
jpeg.lib.so
pthread.lib.so
qt5_core.lib.so
qt5_gui.lib.so
qt5_widgets.lib.so
qt5_xml.lib.so
zlib.lib.so
stdcxx.lib.so
qt5_fs_textedit.tar
2013-08-09 15:04:52 +02:00
}
# platform-specific modules
lappend_if [have_spec linux] boot_modules ram_fs
lappend_if [expr ![have_spec linux]] boot_modules ffat_fs
lappend_if $use_sd_card_driver boot_modules sd_card_drv
lappend_if $use_ahci_driver boot_modules ahci
2013-08-09 15:04:52 +02:00
build_boot_image $boot_modules
set disk_image "bin/test.hda"
set cmd "dd if=/dev/zero of=$disk_image bs=1024 count=65536"
puts "creating disk image: $cmd"
catch { exec sh -c $cmd }
set cmd "mkfs.vfat -F32 $disk_image"
puts "formating disk image with vfat file system: $cmd"
catch { exec sh -c $cmd }
append_if $use_ahci_driver qemu_args " -drive id=disk,file=$disk_image,if=none -device ahci,id=ahci -device ide-drive,drive=disk,bus=ahci.0 -boot d"
2013-08-09 15:04:52 +02:00
append qemu_args " -m 256"
run_genode_until forever