Modularizing core protocol support
00:00 < dottedmag> I had a look at Xfbdev binary - some kind of lazy loading for FbArc and FbPolyline
etc may significantly reduce the main binary size. Given nobody runs really old
applications on embedded stuff remnants of old stuff won't use memory and OTOH it
is still available if needed.
00:01 < dottedmag> Same for e.g. core text handling
00:02 < vignatti> interesting
00:02 < dottedmag> Should be easy to implement using the technique similar to the PLT/GOT tables,
given all requests are called through lookup table anyway.
00:02 < daniels> yeah, that would be neat, though note that if you never reference a page, it's not
going to get loaded
00:03 < daniels> (note also that moving stuff into shared libraries is counterproductive unless your
shared library is exactly aligned to page size)