|  | 
| Edited by jernej at 2016-4-24 11:51 
 Certainly, just edit patch projects/H3/patches/kodi/kodi-000-H3-support.patch :
 line 660 from:
 
 Copy code+    m_fbHandle  = open("/dev/fb0", O_RDWR);
to
 
 Copy code+    m_fbHandle  = open("/dev/fb1", O_RDWR);
line 710 from:
 
 Copy code+  args[0] = 0; //SCREENID; FIXME: this should be define
to
 
 Copy code+  args[0] = 1; //SCREENID; FIXME: this should be define
line 722 from:
 
 Copy code+  unsigned long args[4] = { 0, (unsigned long)(&video_config), 1, 0 };
to
 
 Copy code+  unsigned long args[4] = { 1, (unsigned long)(&video_config), 1, 0 };
line 1518 from:
 
 to
 
 line 1822 from:
 
 Copy code+  std::string blank_framebuffer = "/sys/class/graphics/fb0/blank";
to
 
 Copy code+  std::string blank_framebuffer = "/sys/class/graphics/fb1/blank";
line 1855 from:
 
 Copy code+  std::string framebuffer = "/dev/fb0";
to
 
 Copy code+  std::string framebuffer = "/dev/fb1";
and remove comments in line 2013 and 2028.
 
 I'm really not sure which of those modifications are needed and which not. I suspect that fb0 -> fb1 modifications may not be needed at all. If you manage to make it work, please tell me.
 
 It may be that I also missed some place for modification.
 
 | 
 |