Dear all,

This is just an update email about panda status in main branch.

After cloning and Building master B2G i got blank screen with following error
in logcat.

"W/GraphicBufferMapper( 433): unlock(...) failed -22 (Invalid argument)" 

And i am able to get this is fixed similar to nexus-s

B2G.orig/gecko/gfx/layers/ipc/ShadowLayerUtilsGralloc.cpp       
B2G/gecko/gfx/layers/ipc/ShadowLayerUtilsGralloc.cpp    2013-07-18 

+#include "cutils/properties.h"
 
@@ -343,6 +344,16 @@
      ISurfaceAllocator::PlatformAllocSurfaceDescriptor                         
                     uint32_t aCaps,SurfaceDescriptor* aBuffer)
                                                   
 {
+   /* Panda has issues with gralloc, falling back to shmem */
+#if ANDROID_VERSION <= 15
+   char propValue[PROPERTY_VALUE_MAX];
+   property_get("ro.product.device", propValue, "None");
+   if (strcmp("panda",propValue) == 0) {
+       NS_WARNING("Panda has issues with gralloc, falling back to shmem");
+       return false;
+   }
+#endif

Similar Workaround for nexu-s is available in 

https://bugzilla.mozilla.org/attachment.cgi?id=758780&action=diff

With this one i am getting the unlock screen in Panda in master branch 


Thanks
Dhyan

 On Sunday, July 14, 2013 12:37:34 PM UTC+5:30, Dhyan wrote:
> I re-run the command,but I ended up in the same error :(
> 
> 
> 
> Fetching projects: 100% (86/86), done.  
> 
> Syncing work tree:   2% (2/86)  error: revision linaro/ics-plus-aosp in 
> platform/bionic not found
> 
> 
> 
> Thanks
> 
> dhyan
> 
> 
> 
> On Friday, July 12, 2013 11:13:17 AM UTC+5:30, Dhyan wrote:
> 
> > Dear all ,
> 
> > 
> 
> > 
> 
> > 
> 
> > I Just want to know whether "master" will work fine for pandaboard 
> 
> > 
> 
> > 
> 
> > 
> 
> > I tried like 
> 
> > 
> 
> > 
> 
> > 
> 
> > # git clone http://github.com/mozilla-b2g/B2G.git
> 
> > 
> 
> > 
> 
> > 
> 
> > # BRANCH=master ./config.sh pandaboard 
> 
> > 
> 
> > 
> 
> > 
> 
> > but I am getting "error: revision aosp-new/ics-plus-aosp in platform/bionic 
> > not found"
> 
> > 
> 
> > 
> 
> > 
> 
> > Thanks
> 
> > 
> 
> > Dhyan

On Sunday, July 14, 2013 12:37:34 PM UTC+5:30, Dhyan wrote:
> I re-run the command,but I ended up in the same error :(
> 
> 
> 
> Fetching projects: 100% (86/86), done.  
> 
> Syncing work tree:   2% (2/86)  error: revision linaro/ics-plus-aosp in 
> platform/bionic not found
> 
> 
> 
> Thanks
> 
> dhyan
> 
> 
> 
> On Friday, July 12, 2013 11:13:17 AM UTC+5:30, Dhyan wrote:
> 
> > Dear all ,
> 
> > 
> 
> > 
> 
> > 
> 
> > I Just want to know whether "master" will work fine for pandaboard 
> 
> > 
> 
> > 
> 
> > 
> 
> > I tried like 
> 
> > 
> 
> > 
> 
> > 
> 
> > # git clone http://github.com/mozilla-b2g/B2G.git
> 
> > 
> 
> > 
> 
> > 
> 
> > # BRANCH=master ./config.sh pandaboard 
> 
> > 
> 
> > 
> 
> > 
> 
> > but I am getting "error: revision aosp-new/ics-plus-aosp in platform/bionic 
> > not found"
> 
> > 
> 
> > 
> 
> > 
> 
> > Thanks
> 
> > 
> 
> > Dhyan

_______________________________________________
dev-b2g mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-b2g

Reply via email to