summaryrefslogtreecommitdiffstats
path: root/recipes-support/lin-config/lin-config_git.bb
blob: a8c8f4fc1f9957610def77d4ef77d50f84ae6d53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
DESCRIPTION = "lin-config tool for the sllin driver module"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://lin_config.c;beginline=4;endline=9;md5=196a29df19a30dbc752937bdfc819d7a"

DEPENDS += "libnl libxml2"

SRC_URI = "git://github.com/lin-bus/linux-lin.git;protocol=https;branch=master"
SRCREV = "beb057d7505e0c4d7c61f3f4927b76916ec00e88"
S = "${WORKDIR}/git/lin_config/src"

SRC_URI:append = " \
	file://0001-Change-Makefile-to-use-pkg-config-for-libxml-2.0.patch \
	file://0002-Change-Makefile-to-use-LDFLAGS.patch \
	"

inherit pkgconfig

PV = "0.1+git${SRCPV}"

do_configure[noexec] = "1"

do_install:append() {
    install -d ${D}/${bindir}
    install -m 755 ${S}/lin_config ${D}/${bindir}
}
AGS} -Wall -Wextra -Wno-unused-parameter" ) diff --git a/weston-ivi-shell/src/ivi-controller.c b/weston-ivi-shell/src/ivi-controller.c index 4701aec..94ca83e 100644 --- a/weston-ivi-shell/src/ivi-controller.c +++ b/weston-ivi-shell/src/ivi-controller.c @@ -881,15 +881,15 @@ set_bkgnd_surface_prop(struct ivishell *shell) wl_list_for_each(output, &compositor->output_list, link) { if (!count) { - x = output->x; - y = output->y; + x = output->pos.c.x; + y = output->pos.c.y; count++; } - dest_width = output->x + output->width; + dest_width = output->pos.c.x + output->width; if (output->height > dest_height) dest_height = output->height; weston_log("set_bkgnd_surface_prop: o_name:%s x:%d y:%d o_width:%d o_height:%d\n", - output->name, output->x, output->y, output->width, output->height); + output->name, output->pos.c.x, output->pos.c.y, output->width, output->height); } w_surface = view->surface; @@ -2197,7 +2197,7 @@ launch_client_process(void *data) setenv(IVI_CLIENT_ENABLE_CURSOR_ENV_NAME, option, 0x1); } - shell->client = weston_client_start(shell->compositor, + shell->client = wet_client_start(shell->compositor, shell->ivi_client_name); shell->client_destroy_listener.notify = ivi_shell_client_destroy; -- 2.44.0