summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/pulseaudio
AgeCommit message (Expand)Author
2019-01-14meta: Fix Deprecated warnings from regexsRichard Purdie
2019-01-11pulseaudio: switch configuration module from GConf to GSettingsRoss Burton
2019-01-11pulseaudio: add PACKAGECONFIGs for GConf and GSettingsRoss Burton
2019-01-11pulseaudio: fix multilib packagingRoss Burton
2019-01-11pulseaudio: enforce empty PNRoss Burton
2019-01-11pulseaudio: improve reproducibilityHongxu Jia
2018-08-29pulseaudio: 11.1 -> 12.2Tanu Kaskinen
2018-01-30pulseaudio: improve glibc 2.27 patchRoss Burton
2018-01-29pulseaudio: Fix build with glibc 2.27Khem Raj
2018-01-06pulseaudio: change pulse to be a system groupJackie Huang
2017-12-09pulseaudio: 10.0 -> 11.1Tanu Kaskinen
2017-09-11pulseaudio: Backport a patch to replace use of VLAISKhem Raj
2017-03-01recipes: Make use of the new bb.utils.filter() functionPeter Kjellerstedt
2017-02-15pulseaudio: 9.0 -> 10.0Tanu Kaskinen
2016-10-28pulseaudio: enable optional building of manpagesAlexander Kanavin
2016-09-16pulseaudio: add ${S}/LICENSE to LIC_FILES_CHKSUMRoss Burton
2016-09-03pulseaudio: control ipv6 support based on DISTRO_FEATURESJackie Huang
2016-07-25pulseaudio: fix floating dependency on webrtc-audio-processingTanu Kaskinen
2016-07-25pulseaudio: 8.0 -> 9.0Tanu Kaskinen
2016-07-08pulseaudio: Disable unit testsDavis, Michael
2016-04-22pulseaudio: Add intltool-native dependencyJussi Kukkonen
2016-02-18pulseaudio: 6.0 -> 8.0Tanu Kaskinen
2016-01-24pulseaudio.inc: drop obsolete dependency on liboilAndre McCurdy
2016-01-07pulseaudio: add PACKAGECONFIG for lircMartin Jansa
2015-12-16meta: Drop now pointless manual -dbg packagingRichard Purdie
2015-12-01pulseaudio: Fix HDMI profile selectionJussi Kukkonen
2015-09-06pulseaudio: handle udev dir being 2 levels below /Joshua Lock
2015-09-01pulseaudio: add 'autospawn-for-root' PACKAGECONFIGChristopher Larson
2015-09-01pulseaudio: pass --with-systemduserunitdirChristopher Larson
2015-08-31pulseaudio: improve PACKAGECONFIG for dbus/consolekit dependenciesMartin Jansa
2015-08-30libatomic-ops: move to recipes-support, fix recipe nameChristopher Larson
2015-08-09pulseaudio: Add systemd to PACKAGECONFIG if enabled in DISTRO_FEATURESPau Espin Pedrol
2015-07-20pulseaudio: rdepend on modules referenced by start-pulseaudio-x11Tanu Kaskinen
2015-07-16alsa-plugins, pulseaudio: depend on speexdsp, not speexTanu Kaskinen
2015-06-11pulseaudio: fix version when building inside a dirty git checkoutRoss Burton
2015-06-11libatomic-ops: 7.2 -> 7.4.2Tanu Kaskinen
2015-05-24pulseaudio: conf-parser: add support for .d directoriesTanu Kaskinen
2015-05-24pulseaudio: client-conf: Add allow-autospawn-for-rootTanu Kaskinen
2015-05-24alsa-plugins: initial recipeTanu Kaskinen
2015-04-13pulseaudio: Fix build with muslKhem Raj
2015-03-20pulseaudio: remove obsolete resampler patchingTanu Kaskinen
2015-03-20pulseaudio: add system.pa to CONFFILESTanu Kaskinen
2015-03-20pulseaudio: move client.conf to libpulseTanu Kaskinen
2015-02-23pulseaudio: upgrade to 6.0Cristian Iorga
2015-02-16pulseaudio: select distro preference for bluez providerPeter A. Bigot
2015-01-07pulseaudio: use stricter PACKAGES_DYNAMICMartin Jansa
2014-12-21libatomics-ops: add aarch64 target iniitial supportKai Kang
2014-07-29pulseaudio: fix CVE-2014-3970Shan Hai
2014-07-25pulseaudio: add missing dependency on libcapJackie Huang
2014-07-19libatomics-ops: Extend to nativesdkRichard Purdie
xes8'>paule/recipetool-fixes8 OpenEmbedded Core user contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/oe-init-build-env-memres
blob: 15e4f445ed293496bcbcf4d4deca86424de04d86 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/sh

# OE Build Environment Setup Script
#
# Copyright (C) 2006-2011 Linux Foundation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

#
# Normally this is called as '. ./oe-init-build-env builddir <portnumber> <builddir>'
#
# This works in most shells (not dash), but not all of them pass arg1 when
# being sourced.   To workaround the shell limitation use "set arg1" prior 
# to sourcing this script.
#
if [ -z "$1" ]; then
    echo "No port specified, using 12345"
    port=12345
else
    port=$1
    shift
fi
if [ -z "$ZSH_NAME" ] && [ "x$0" = "x./oe-init-build-env" ]; then
   echo "Error: This script needs to be sourced. Please run as '. ./oe-init-build-env'"
else
   if [ -n "$BASH_SOURCE" ]; then
      OEROOT="`dirname $BASH_SOURCE`"
   elif [ -n "$ZSH_NAME" ]; then
      OEROOT="`dirname $0`"
   else
      OEROOT="`pwd`"
   fi
   OEROOT=`readlink -f "$OEROOT"`
   export OEROOT
   . $OEROOT/scripts/oe-buildenv-internal && \
        $OEROOT/scripts/oe-setup-builddir && \
        [ -n "$BUILDDIR" ] && cd $BUILDDIR
   unset OEROOT
   unset BBPATH
fi
bitbake --server-only -t xmlrpc -B localhost:$port
export BBSERVER=localhost:$port
echo "Bitbake server started on port %s, use bitbake -m to shut it down"