summaryrefslogtreecommitdiffstats
path: root/meta-agl-bsp/meta-rcar-gen3/recipes-graphics/wayland
AgeCommit message (Expand)AuthorFilesLines
2021-10-29[RCAR] Add missing build dependency for wayland-wseglRonan Le Martret1-0/+1
2021-08-23Convert to new override syntaxScott Murray1-6/+6
2021-01-12meta-agl-core: Revise weston-ini-conf mechanismScott Murray1-8/+11
2020-07-07Revert temp fix of perf build and weston bbappendJan-Simon Moeller1-1/+0
2020-03-18Support Salvator-X/XS boardDuy Dang5-5/+24
2019-07-23machine: Add new ebisu machinePierre Marzin2-0/+5
2018-08-03meta-rcar-gen3: weston-ini-conf: drop v4l2 featureHarunobu Kurokawa2-4/+0
2018-05-313rd part of the layer/profile rework [1/2]Jan-Simon Möller1-7/+1
2017-12-22weston-ini-conf: Disable kingfisher's 2nd and 3rd outputHarunobu Kurokawa2-0/+9
2017-10-20weston-ini-conf: Rework to use fragments to construct weston.iniTom Rini2-10/+9
2017-10-12weston-ini-conf: Make this track variables correctly for signaturesTom Rini1-0/+2
2017-04-12update weston.ini for Renesas Gen3 boardRonan Le Martret1-0/+11
2017-03-30Generate weston.ini dynamicallyRonan Le Martret3-27/+1
2017-03-21[rcar-gen3] update weston recipes bbappendRonan Le Martret2-1/+26
2017-03-19[rcar-gen3] Renamed weston bbappend recipesRonan Le Martret1-0/+0
2017-03-01Removed touchscreen fix on gen3Ronan Le Martret1-0/+1
2016-11-14meta-agl-bsp: meta-rcar-gen3: initial integrationYannick Gicquel1-0/+8
c License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "local-def.h" STATIC json_object* wrongApi (AFB_session *session, AFB_request *request, void* handle) { int zero=0; int bug=1234; int impossible; impossible=bug/zero; } STATIC json_object* pingSample (AFB_session *session, AFB_request *request, void* handle) { static pingcount = 0; json_object *response; char query [512]; // request all query key/value getQueryAll (request, query, sizeof(query)); // check if we have some post data if (request->post == NULL) request->post="NoData"; // return response to caller response = jsonNewMessage(AFB_SUCCESS, "Ping Binder Daemon %d query={%s} PostData: \'%s\' ", pingcount++, query, request->post); if (verbose) fprintf(stderr, "%d: \n", pingcount); return (response); } STATIC struct { void * somedata; } handle; STATIC AFB_restapi pluginApis[]= { {"ping" , (AFB_apiCB)pingSample , "Ping Application Framework", NULL}, {"error" , (AFB_apiCB)wrongApi , "Ping Application Framework", NULL}, {"ctx-store", (AFB_apiCB)pingSample , "Verbose Mode", NULL}, {"ctx-load" , (AFB_apiCB)pingSample , "Verbose Mode", NULL}, {0,0,0} }; PUBLIC AFB_plugin *alsaRegister (AFB_session *session) { AFB_plugin *plugin = malloc (sizeof (AFB_plugin)); plugin->type = AFB_PLUGIN; plugin->info = "Application Framework Binder Service"; plugin->prefix = "alsa"; plugin->apis = pluginApis; return (plugin); };