aboutsummaryrefslogtreecommitdiff
path: root/tools/Linux
AgeCommit message (Collapse)Author
2012-09-12fixed: trailing semicolon missing in desktop file (closes #13330 - thanks ↵vdrfan
amak79)
2012-08-24fix xbmc.desktop file syntaxKen Dreyer
"OnlyShowIn" values must have a semicolon as a trailing character, and correct the spelling of "Exec"
2012-03-20Added Unity Quicklist integrationDavid Baucum
2012-02-22fixed: syntax error in FEH.py (closes #12682 - thanks bonemasterno1)vdrfan
2011-10-27changd: slightly improved error message. thanks flyserspiff
2011-10-27fixed: xbmc-standalone did not respect configure prefix.spiff
thanks to flyser, closes #11895
2011-02-27changed: removed executable bit of FEH.py and xbmc-standalone.sh.invdrfan
2011-02-27fixed: xbmc-standalone command line args (fixes #9879)vdrfan
2011-02-09Nuke ppa packaging from our repo and give it a new home.theuni
Our tag and release schedules should be separate from our packaging. With this moved out, we can roll new XBMC releases from existing XBMC tags in order to correct packaging screwups. See: git://github.com/xbmc/xbmc-packaging.git
2011-01-23Revert "Merge remote branch 'upstream/master'"Lars Op den Kamp
This reverts commit 4e98a514c6a2975ec234fe19fe058e7e74bcfb7d, reversing changes made to 8d73cbde1dcd240d80bee9301d0321703a15c995.
2011-01-04merge pvr-testing2 svn rev 32591 into trunkLars Op den Kamp
2010-12-06Customise distro description at build time onlylcapriotti
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35583 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-11-29removed: last traces of libshout.theuni
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35524 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-11-15removed: dependency on libfaac which doesn't seem to be used anywhereelupus
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35279 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-11-05incorrectly hardcoded userlcapriotti
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35168 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-11-05support for building maverick packageslcapriotti
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35165 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-11-02added: note in linux crashlog if gdb is not installedanssih
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35117 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-28fixed: backtrace in crashlog when core name is "core"anssih
This was a regression of r34954. Also, add a comment in xbmc.sh.in explaining the glob pattern to avoid this issue coming back in the future. git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35063 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-27live: don't remove the xbmc user after xbmc-live package removal. better ↵theuni
safe than sorry. git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35041 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-27live: give permissions to the correct user, don't assume xbmctheuni
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35040 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-27fixed: do not try to start pulse if --disable-pulse was usedanssih
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35032 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-27partially reverting r35018lcapriotti
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35031 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-26fixed: pulseaudio started on non-pulse systems by standalone modeanssih
Fix a regression of r34013 in which pulseaudio was started on systems with pulseaudio disabled when running the standalone mode script. See ticket #9247 for details. This is done by switching to use start-pulseaudio-x11 with pulse-session as fallback (the latter was used before r34013) instead of pulseaudio directly. git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35024 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-26support for building maverick packageslcapriotti
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35018 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-24fixed: policykit has been depracated on Maverick in favor ov policykit-1.theuni
This means that our dep was broken in Maverick, and the old policykit script would not work anyway. Use a pkla file for distros >= Maverick. Ping ceros and lcapriotti for review. git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34993 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-22fixed: do not enable core dumps when gdb is not installedanssih
xbmc.sh.in can't handle core dumps without gdb, so do not enable them in the first place in that case. git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34955 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-22fixed: various issues with backtrace generation on linuxanssih
There were several issues with the single_stacktrace() shell function in xbmc.sh that is used to generate backtraces when XBMC crashes: - it removed all core* files from current directory, even those that were unrelated to XBMC or were not actually core files at all - it did not work when current path contained whitespace characters (which could also lead to unrelated files being removed) Fix those by rewriting the function. Additionally, output the timestamp of the core file to the crash log (useful for determining the correct backtrace in case there were several core files for some reason). git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34954 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-20Python 3 forces print to be a function. It was supported in older versions ↵theuni
but not enforced. Support both. Arch Linux was hitting this. git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34877 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-18removed: xinerama build depsvdrfan
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34839 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-18do not set volume at boot, audio mixer script to rescuelcapriotti
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34831 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-18specify that job will start Xlcapriotti
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34827 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-18do not rely on hooks to return a proper exit statuslcapriotti
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34825 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-17add maverick to the packageswattazoum
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34794 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-11customize distro descriptionlcapriotti
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34677 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-09fixed: enable core dumps only just before xbmc starts on Linuxanssih
xbmc-standalone.sh enables core dumps before it calls xbmc.sh. However, xbmc.sh already enables core dumps just before starting xbmc. Remove the enablement from xbmc-standalone.sh to minimize the amount of core dumps from other processes (FEH.py, etc). git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34589 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-08Only execute hooks if hooks directory is found.ceros7
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34573 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-08Don't limit hook scripts to bash scripts.ceros7
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34572 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-08Execute hooks that are executable, regardless of it's name.ceros7
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34571 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-08Change path to hooks directory.ceros7
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34570 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-08Convert xbmc-live to an arch-dependent package.ceros7
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34569 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-08Remove xbmc-web.install as it's no longer needed.ceros7
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34567 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-08Change SVN revision to use.ceros7
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34566 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-08Update packaging, removing xbmc-web and using latest Dharma branch revision.ceros7
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34565 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-08Change location where live.d is installed to /etc/xbmc.ceros7
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34564 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-07fixed: removal of core files when gdb is not installedanssih
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34536 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-07new upstart job using external hookslcapriotti
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34524 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-10-06updated: include upstart hooks in xbmc-live packagevdrfan
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34511 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-09-21xbmc cannot rely on pulse-session on debian systems - PROPER fix for Ticket ↵lcapriotti
#9247 git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34043 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-09-20xbmc cannot rely on pulse-session on debian systems - fix for Ticket #9247lcapriotti
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34013 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
2010-09-10merged: webinterface branch into trunk.jmarshallnz
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@33665 568bbfeb-2a22-0410-94d2-cc84cf5bfa90