From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Petazzoni Date: Wed, 13 Apr 2016 23:12:52 +0200 Subject: [Buildroot] [git commit] package/kodi: optimise for RPi2 Message-ID: <20160413211303.108CB81908@busybox.osuosl.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net commit: https://git.buildroot.net/buildroot/commit/?id=ef37472b20894c99cad758397f3cd6b90f933df1 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master Kodi has specific optimisation and configuration flags for RPi vs. RPi2. Only configure for the RPi2 when we're sure (i.e. it is a cortex A7), and fallback to con figuring for the RPi otherwise. Signed-off-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- package/kodi/kodi.mk | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/package/kodi/kodi.mk b/package/kodi/kodi.mk index 94a8cd8..ca1cae2 100644 --- a/package/kodi/kodi.mk +++ b/package/kodi/kodi.mk @@ -47,7 +47,14 @@ endif ifeq ($(BR2_PACKAGE_RPI_USERLAND),y) KODI_DEPENDENCIES += rpi-userland -KODI_CONF_OPTS += --with-platform=raspberry-pi --enable-player=omxplayer +# Kodi has specific configuration flags for RPi/RPi2. Configure for a +# RPi2 when we're sure, fallback to RPi otherwise. +ifeq ($(BR2_cortex_a7),y) +KODI_CONF_OPTS += --with-platform=raspberry-pi2 +else +KODI_CONF_OPTS += --with-platform=raspberry-pi +endif +KODI_CONF_OPTS += --enable-player=omxplayer KODI_CONF_ENV += INCLUDES="-I$(STAGING_DIR)/usr/include/interface/vcos/pthreads \ -I$(STAGING_DIR)/usr/include/interface/vmcs_host/linux" \ LIBS="-lvcos -lvchostif"