mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
c78efd4428
Drivers like SD-Card, platform, AHCI, and framebuffer are specified as Exynos5 compliant. But they are at least not compliant with Odroid-XU although this is Exynos5. Thus, prevent tests that rely on such drivers when building for hw_odoid_xu. Furthermore, make previous Arndale regulator/consts.h, uart_defs.h, and some Board_base enums available to all Exynos5 builds to enable at least building the drivers. Fixes #1419
166 lines
3.8 KiB
Plaintext
166 lines
3.8 KiB
Plaintext
source ${genode_dir}/repos/libports/run/qt5_common.inc
|
|
|
|
#
|
|
# 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 {
|
|
app/qt5/examples/textedit
|
|
}
|
|
|
|
set use_sd_card_driver [expr [have_spec omap4] || [have_spec platform_arndale]]
|
|
|
|
lappend_if $use_sd_card_driver build_components drivers/sd_card
|
|
lappend_if [have_spec pci] build_components drivers/atapi
|
|
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
|
|
|
|
build $build_components
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Create Qt tar archive
|
|
|
|
create_qt5_fs_tar_archive "textedit" "gui"
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
append config {
|
|
<config>
|
|
<parent-provides>}
|
|
append config [qt5_parent_provides feature]
|
|
append config {
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <child name="wm"/> <any-child/> </any-service>
|
|
</default-route>}
|
|
|
|
append config [qt5_start_nodes feature]
|
|
|
|
append_if [have_spec pci] config {
|
|
<start name="atapi_drv">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides> <service name="Block"/> </provides>
|
|
<config ata="yes" />
|
|
</start>}
|
|
|
|
append_if $use_sd_card_driver config {
|
|
<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>}
|
|
|
|
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>
|
|
</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>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
set boot_modules [qt5_boot_modules feature]
|
|
|
|
append boot_modules {
|
|
textedit
|
|
freetype.lib.so
|
|
gallium.lib.so
|
|
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
|
|
}
|
|
|
|
# platform-specific modules
|
|
lappend_if [have_spec linux] boot_modules ram_fs
|
|
lappend_if [expr ![have_spec linux]] boot_modules ffat_fs
|
|
lappend_if [have_spec pci] boot_modules atapi_drv
|
|
lappend_if $use_sd_card_driver boot_modules sd_card_drv
|
|
|
|
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 [have_spec pci] qemu_args " -hda $disk_image -boot order=d "
|
|
|
|
append qemu_args " -m 256"
|
|
|
|
run_genode_until forever
|
|
|