Merge pull request #1631 from InuSasha/fixes/bcm2835-typo

bcm2835: fix missed renames from bcm2835-firmware -> bcm2835-driver
This commit is contained in:
MilhouseVH 2017-05-20 04:47:59 -07:00 committed by GitHub
commit 0b589ed600
3 changed files with 5 additions and 5 deletions

View File

@ -41,8 +41,8 @@ PKG_CMAKE_OPTS_TARGET="-DBUILD_SHARED_LIBS=1 \
-DCMAKE_INSTALL_LIBDIR:STRING=lib \
-DCMAKE_INSTALL_LIBDIR_NOARCH:STRING=lib"
if [ "$KODIPLAYER_DRIVER" = "bcm2835-firmware" ]; then
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET bcm2835-firmware"
if [ "$KODIPLAYER_DRIVER" = "bcm2835-driver" ]; then
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET bcm2835-driver"
fi
if [ "$KODIPLAYER_DRIVER" = "libfslvpuwrap" ]; then
@ -62,7 +62,7 @@ else
fi
pre_configure_target() {
if [ "$KODIPLAYER_DRIVER" = "bcm2835-firmware" ]; then
if [ "$KODIPLAYER_DRIVER" = "bcm2835-driver" ]; then
export CXXFLAGS="$CXXFLAGS \
-I$SYSROOT_PREFIX/usr/include/interface/vcos/pthreads/ \
-I$SYSROOT_PREFIX/usr/include/interface/vmcs_host/linux"

View File

@ -43,7 +43,7 @@ if [ "$OPENGLES_SUPPORT" = yes ]; then
fi
pre_configure_target() {
if [ "$KODIPLAYER_DRIVER" = bcm2835-firmware ]; then
if [ "$KODIPLAYER_DRIVER" = bcm2835-driver ]; then
BCM2835_INCLUDES="-I$SYSROOT_PREFIX/usr/include/interface/vcos/pthreads/ \
-I$SYSROOT_PREFIX/usr/include/interface/vmcs_host/linux"
export CFLAGS="$CFLAGS $BCM2835_INCLUDES"

View File

@ -43,7 +43,7 @@ if [ "$OPENGLES_SUPPORT" = yes ]; then
fi
pre_configure_target() {
if [ "$KODIPLAYER_DRIVER" = bcm2835-firmware ]; then
if [ "$KODIPLAYER_DRIVER" = bcm2835-driver ]; then
BCM2835_INCLUDES="-I$SYSROOT_PREFIX/usr/include/interface/vcos/pthreads/ \
-I$SYSROOT_PREFIX/usr/include/interface/vmcs_host/linux"
export CFLAGS="$CFLAGS $BCM2835_INCLUDES"