Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/openelec-4.2' into openelec-4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
codesnake committed Oct 5, 2014
2 parents cc7c974 + 7fc61da commit 37cda4d
Show file tree
Hide file tree
Showing 11 changed files with 275 additions and 122 deletions.
4 changes: 2 additions & 2 deletions config/functions
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ get_module_dir() {
# get package's build dir
get_build_dir() {
if [ ! -z $1 ] ; then
local _PKG_DIR=$(find $ROOT/projects/$PROJECT/packages -name $1)
local _PKG_DIR=$(find $ROOT/projects/$PROJECT/packages -name $1 2>/dev/null)
if [ -d "$_PKG_DIR" -a -f $_PKG_DIR/package.mk ] ; then
. $_PKG_DIR/package.mk
else
local _PKG_DIR=$(find $ROOT/packages -name $1)
local _PKG_DIR=$(find $ROOT/packages -name $1 2>/dev/null)
if [ -d "$_PKG_DIR" -a -f $_PKG_DIR/package.mk ] ; then
. $_PKG_DIR/package.mk
fi
Expand Down
4 changes: 2 additions & 2 deletions config/path
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ SED="sed -i"
# first check project folder for a package
FOUND=0
ALL_DIRS=""
for DIR in $ROOT/`find projects/$PROJECT/packages -type d -name $_PKG_ROOT_NAME ! -wholename \*\/source\/\* 2>/dev/null` ; do
for DIR in `find $ROOT/projects/$PROJECT/packages -type d -name $_PKG_ROOT_NAME ! -wholename \*\/source\/\* 2>/dev/null` ; do
# keep track of dirs with meta for debugging
if [ -z "$ALL_DIRS" ] ; then
ALL_DIRS="$DIR"
Expand All @@ -93,7 +93,7 @@ SED="sed -i"
if [ $FOUND -eq 0 ] ; then
FOUND=0
ALL_DIRS=""
for DIR in $ROOT/`find $PACKAGES -type d -name $_PKG_ROOT_NAME ! -wholename \*\/source\/\* 2>/dev/null` ; do
for DIR in `find $ROOT/$PACKAGES -type d -name $_PKG_ROOT_NAME ! -wholename \*\/source\/\* 2>/dev/null` ; do
# keep track of dirs with meta for debugging
if [ -z "$ALL_DIRS" ] ; then
ALL_DIRS="$DIR"
Expand Down
2 changes: 1 addition & 1 deletion config/version
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# VERSION: set full version, use "devel" for development version
OPENELEC_VERSION="devel"
OPENELEC_VERSION="4.2.1"

# OS_VERSION: OS Version
OS_VERSION="4.2"
Expand Down
4 changes: 3 additions & 1 deletion packages/audio/alsa-utils/scripts/soundconfig
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,10 @@ else

# and this for various Fusion devices like Zotac ZBOX
mixer $card 'Front',0 100% on

# NVidia CK804 sound devices
mixer $card 'IEC958 Playback AC97-SPSA' 100%
fi

exit 0
)&

1 change: 1 addition & 0 deletions packages/devel/ncurses/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ PKG_CONFIGURE_OPTS_TARGET="--without-cxx \
--without-cxx-binding \
--without-ada \
--without-progs \
--with-curses-h \
--with-shared \
--with-normal \
--without-debug \
Expand Down
2 changes: 1 addition & 1 deletion packages/devel/pcre/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
################################################################################

PKG_NAME="pcre"
PKG_VERSION="8.35"
PKG_VERSION="8.36"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="OSS"
Expand Down
2 changes: 1 addition & 1 deletion packages/graphics/bcm2835-driver/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
################################################################################

PKG_NAME="bcm2835-driver"
PKG_VERSION="79acaf6"
PKG_VERSION="f2275b9"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="nonfree"
Expand Down
2 changes: 1 addition & 1 deletion packages/tools/bcm2835-bootloader/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
################################################################################

PKG_NAME="bcm2835-bootloader"
PKG_VERSION="79acaf6"
PKG_VERSION="f2275b9"
PKG_REV="1"
PKG_ARCH="arm"
PKG_LICENSE="nonfree"
Expand Down
2 changes: 1 addition & 1 deletion packages/x11/driver/xf86-video-ati/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
################################################################################

PKG_NAME="xf86-video-ati"
PKG_VERSION="7.4.0"
PKG_VERSION="7.5.0"
PKG_REV="1"
PKG_ARCH="i386 x86_64"
PKG_LICENSE="OSS"
Expand Down
14 changes: 11 additions & 3 deletions packages/x11/driver/xf86-video-intel/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,16 @@
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
################################################################################

# Notes: dont enable tearfree support in later versions, this causes stutter
# for some people, see
# http://openelec.tv/forum/120-news-announcements/73013-openelec-4-2-0-released?start=135#118846

# Todo: at least version 2.99.916 causes hangs and stuttering XBMC Gui, this dont
# happens with 2.99.911, so stick on this for now and figure out which version
# breaks this.

PKG_NAME="xf86-video-intel"
PKG_VERSION="2.99.916"
PKG_VERSION="2.99.911"
PKG_REV="1"
PKG_ARCH="i386 x86_64"
PKG_LICENSE="OSS"
Expand Down Expand Up @@ -46,10 +54,10 @@ PKG_CONFIGURE_OPTS_TARGET="--disable-backlight \
--enable-sna \
--enable-uxa \
--disable-xvmc \
--enable-glamor \
--disable-glamor \
--disable-xaa \
--disable-dga \
--enable-tear-free \
--disable-tear-free \
--disable-rendernode \
--disable-create2 \
--disable-rotation \
Expand Down
Loading

0 comments on commit 37cda4d

Please sign in to comment.