Marex

Results 18 comments of Marex

> It would be nice to use the same script on multiple places to simplify maintenance. What about converting `find_version.sh` to `find_version.py`? @kisvegabor I assume #6080 is already implementing that...

> The `release` folder is outdated. Please remove it in the PR instead. 🙂 Should be done now.

> Hey, > > I've ~fixed~ tested it and it works well. Thank you! @kisvegabor thank you. I have noticed the MRs are all over the place, so let me...

> Can we make it more dynamic by parsing the content of `LV_VIDEO_CARD`? If it contains `fb`, it's a frame buffer device, if it contains `dri` it's DRM, else it's...

> > Is it allowed to build LVGL with multiple backends at the same time (multiple of { fbdev, drm, sdl } )? > > Absolutely yes. However the required...

> > In fact, what is your take on the current state of this patchset ? > > I can't clearly see the use case that we are about to...

> Is selecting the display device (e.g. `/dev/fb0`) still important? There are systems with multiple outputs, e.g. MX8M Plus has DSI/LVDS/HDMI outputs, each on separate CRTC, which would also each...

> I see. What if we do something like this: > > ```c > const char * dev = "/dev/fb0" > if(argc > 0) dev = argv[1]; > lv_linux_fbdev_set_file(disp, dev);...