hi, I am running an application on a TI Davinci platform.  I installed
directfb using the follwing configure command:
./configure --with-gfxdrivers=davinci --disable-x11 --exec-prefix=/usr

But (after inserting debug code into the davinci driver code) when I run my
applicaton I see that the function driver_probe(...) in davinci_gfxdriver.c
always returns 0 due to the following:

switch (dfb_system_type()) 
{
          case CORE_DEVMEM:
               break;
          case CORE_TI_CMEM:
               break;
          default:
          return 0;
}

I need this to 'not' return 0 as I wish to continue and open up both fb0 and
fb2 in driver_init_driver.

My question is how can I get directfb to recognise that my platform is
CORE_DEVMEM or CORE_TI_CMEM?  Do I need to change a config file or
something?

Thanks

Ryan
-- 
View this message in context: 
http://www.nabble.com/driver_probe-not-recognising-Davinci-driver-tp19086328p19086328.html
Sent from the DirectFB Dev mailing list archive at Nabble.com.

_______________________________________________
directfb-dev mailing list
directfb-dev@directfb.org
http://mail.directfb.org/cgi-bin/mailman/listinfo/directfb-dev

Reply via email to