fb_bench: do not test on i.MX53 + Fiasco.OC

The i.MX53 Framebuffer driver doesn't come up on on Fiasco.OC because the Platform
driver isn't allowed to access essential devises like the SRC or the Fuses. This is
most likely due to the kernel not configuring the CSU appropriately.

Ref #2268
This commit is contained in:
Martin Stein 2017-02-08 15:55:21 +01:00 committed by Norman Feske
parent 1e1ce43170
commit c2e6fd9392

View File

@ -2,7 +2,7 @@
# Build
#
if {[have_spec odroid_xu] || [have_spec wand_quad] || [have_spec zynq]} {
if {[have_spec odroid_xu] || [have_spec wand_quad] || [have_spec zynq] || [have_spec imx53] && [have_spec foc]} {
puts "\n Run script is not supported on this platform. \n";
exit 0
}
@ -64,13 +64,13 @@ append_platform_drv_config
append_if [have_spec framebuffer] config {
<start name="fb_drv">
<resource name="RAM" quantum="8M"/>
<resource name="RAM" quantum="20M"/>
<provides><service name="Framebuffer"/></provides>
</start>}
append config {
<start name="test-fb_bench">
<resource name="RAM" quantum="92M"/>
<resource name="RAM" quantum="40M"/>
</start>
</config>}