initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
config BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC
|
||||
bool
|
||||
default y if BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS || \
|
||||
BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
|
||||
config BR2_PACKAGE_PULSEAUDIO_ENABLE_ATOMIC
|
||||
bool
|
||||
select BR2_PACKAGE_LIBATOMIC_OPS if !BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
|
||||
config BR2_PACKAGE_PULSEAUDIO
|
||||
bool "pulseaudio"
|
||||
depends on BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC
|
||||
depends on BR2_USE_WCHAR
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on !BR2_STATIC_LIBS
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_AUDIO if BR2_PACKAGE_BLUEZ5_UTILS # runtime
|
||||
select BR2_PACKAGE_LIBTOOL
|
||||
select BR2_PACKAGE_LIBSNDFILE
|
||||
select BR2_PACKAGE_PULSEAUDIO_ENABLE_ATOMIC
|
||||
select BR2_PACKAGE_SPEEX
|
||||
help
|
||||
PulseAudio is a sound system for POSIX OSes, meaning that it
|
||||
is a proxy for your sound applications. It allows you to do
|
||||
advanced operations on your sound data as it passes between
|
||||
your application and your hardware. Things like transferring
|
||||
the audio to a different machine, changing the sample format
|
||||
or channel count and mixing several sounds into one are
|
||||
easily achieved using a sound server.
|
||||
|
||||
http://pulseaudio.org
|
||||
|
||||
if BR2_PACKAGE_PULSEAUDIO
|
||||
|
||||
config BR2_PACKAGE_PULSEAUDIO_DAEMON
|
||||
bool "start as a system daemon"
|
||||
help
|
||||
PulseAudio can be started as a system daemon. This is not the
|
||||
recommended way of using PulseAudio unless you are building a
|
||||
headless system.
|
||||
|
||||
endif
|
||||
|
||||
comment "pulseaudio needs a toolchain w/ wchar, threads, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
@@ -0,0 +1,46 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Starts pulseaudio.
|
||||
#
|
||||
|
||||
|
||||
start() {
|
||||
printf "Starting pulseaudio: "
|
||||
umask 077
|
||||
/usr/bin/pulseaudio \
|
||||
--system \
|
||||
--daemonize \
|
||||
--disallow-module-loading \
|
||||
--disallow-exit \
|
||||
--exit-idle-time=-1 \
|
||||
--use-pid-file \
|
||||
--disable-shm
|
||||
echo "OK"
|
||||
}
|
||||
stop() {
|
||||
printf "Stopping pulseaudio: "
|
||||
PULSE_RUNTIME_PATH=/var/run/pulse /usr/bin/pulseaudio --kill
|
||||
echo "OK"
|
||||
}
|
||||
restart() {
|
||||
stop
|
||||
start
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
start
|
||||
;;
|
||||
stop)
|
||||
stop
|
||||
;;
|
||||
restart|reload)
|
||||
restart
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# From https://lists.freedesktop.org/archives/pulseaudio-discuss/2021-January/031990.html
|
||||
sha256 75d3f7742c1ae449049a4c88900e454b8b350ecaa8c544f3488a2562a9ff66f1 pulseaudio-14.2.tar.xz
|
||||
# Locally computed
|
||||
sha256 c38aee9e3c8c4d5d594ff548a1be05453023016d6286931f6512db215ec1fd42 GPL
|
||||
sha256 a9bdde5616ecdd1e980b44f360600ee8783b1f99b8cc83a2beb163a0a390e861 LGPL
|
||||
sha256 a1064b9838b6b4feee61eaeb0925da4b4834c984b77716558860c4294ed6c015 LICENSE
|
||||
@@ -0,0 +1,178 @@
|
||||
################################################################################
|
||||
#
|
||||
# pulseaudio
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PULSEAUDIO_VERSION = 14.2
|
||||
PULSEAUDIO_SOURCE = pulseaudio-$(PULSEAUDIO_VERSION).tar.xz
|
||||
PULSEAUDIO_SITE = https://freedesktop.org/software/pulseaudio/releases
|
||||
PULSEAUDIO_INSTALL_STAGING = YES
|
||||
PULSEAUDIO_LICENSE = LGPL-2.1+ (specific license for modules, see LICENSE file)
|
||||
PULSEAUDIO_LICENSE_FILES = LICENSE GPL LGPL
|
||||
PULSEAUDIO_CPE_ID_VENDOR = pulseaudio
|
||||
PULSEAUDIO_SELINUX_MODULES = pulseaudio xdg
|
||||
PULSEAUDIO_CONF_OPTS = \
|
||||
--disable-default-build-tests \
|
||||
--disable-legacy-database-entry-format \
|
||||
--disable-manpages \
|
||||
--disable-running-from-build-tree
|
||||
|
||||
PULSEAUDIO_DEPENDENCIES = \
|
||||
host-pkgconf libtool libsndfile speex \
|
||||
$(TARGET_NLS_DEPENDENCIES) \
|
||||
$(if $(BR2_PACKAGE_LIBGLIB2),libglib2) \
|
||||
$(if $(BR2_PACKAGE_AVAHI_DAEMON),avahi) \
|
||||
$(if $(BR2_PACKAGE_DBUS),dbus) \
|
||||
$(if $(BR2_PACKAGE_NCURSES),ncurses) \
|
||||
$(if $(BR2_PACKAGE_OPENSSL),openssl) \
|
||||
$(if $(BR2_PACKAGE_FFTW_SINGLE),fftw-single) \
|
||||
$(if $(BR2_PACKAGE_SYSTEMD),systemd)
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBSAMPLERATE),y)
|
||||
PULSEAUDIO_CONF_OPTS += --enable-samplerate
|
||||
PULSEAUDIO_DEPENDENCIES += libsamplerate
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --disable-samplerate
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GDBM),y)
|
||||
PULSEAUDIO_CONF_OPTS += --with-database=gdbm
|
||||
PULSEAUDIO_DEPENDENCIES += gdbm
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --with-database=simple
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_JACK2),y)
|
||||
PULSEAUDIO_CONF_OPTS += --enable-jack
|
||||
PULSEAUDIO_DEPENDENCIES += jack2
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --disable-jack
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBATOMIC_OPS),y)
|
||||
PULSEAUDIO_DEPENDENCIES += libatomic_ops
|
||||
ifeq ($(BR2_sparc_v8)$(BR2_sparc_leon3),y)
|
||||
PULSEAUDIO_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -DAO_NO_SPARC_V9"
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ORC),y)
|
||||
PULSEAUDIO_DEPENDENCIES += orc
|
||||
PULSEAUDIO_CONF_ENV += ORCC=$(HOST_DIR)/bin/orcc
|
||||
PULSEAUDIO_CONF_OPTS += --enable-orc
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --disable-orc
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBCAP),y)
|
||||
PULSEAUDIO_DEPENDENCIES += libcap
|
||||
PULSEAUDIO_CONF_OPTS += --with-caps
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --without-caps
|
||||
endif
|
||||
|
||||
# gtk3 support needs X11 backend
|
||||
ifeq ($(BR2_PACKAGE_LIBGTK3_X11),y)
|
||||
PULSEAUDIO_DEPENDENCIES += libgtk3
|
||||
PULSEAUDIO_CONF_OPTS += --enable-gtk3
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --disable-gtk3
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBSOXR),y)
|
||||
PULSEAUDIO_CONF_OPTS += --with-soxr
|
||||
PULSEAUDIO_DEPENDENCIES += libsoxr
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --without-soxr
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_BLUEZ5_UTILS)$(BR2_PACKAGE_SBC),yy)
|
||||
PULSEAUDIO_CONF_OPTS += --enable-bluez5
|
||||
PULSEAUDIO_DEPENDENCIES += bluez5_utils sbc
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --disable-bluez5
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
||||
PULSEAUDIO_CONF_OPTS += --enable-udev
|
||||
PULSEAUDIO_DEPENDENCIES += udev
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --disable-udev
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING),y)
|
||||
PULSEAUDIO_CONF_OPTS += --enable-webrtc-aec
|
||||
PULSEAUDIO_DEPENDENCIES += webrtc-audio-processing
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --disable-webrtc-aec
|
||||
endif
|
||||
|
||||
# neon intrinsics not available with float-abi=soft
|
||||
ifeq ($(BR2_ARM_SOFT_FLOAT),)
|
||||
ifeq ($(BR2_ARM_CPU_HAS_NEON),y)
|
||||
PULSEAUDIO_USE_NEON = y
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(PULSEAUDIO_USE_NEON),y)
|
||||
PULSEAUDIO_CONF_OPTS += --enable-neon-opt=yes
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --enable-neon-opt=no
|
||||
endif
|
||||
|
||||
# pulseaudio alsa backend needs pcm/mixer apis
|
||||
ifeq ($(BR2_PACKAGE_ALSA_LIB_PCM)$(BR2_PACKAGE_ALSA_LIB_MIXER),yy)
|
||||
PULSEAUDIO_DEPENDENCIES += alsa-lib
|
||||
PULSEAUDIO_CONF_OPTS += --enable-alsa
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --disable-alsa
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBXCB)$(BR2_PACKAGE_XLIB_LIBSM)$(BR2_PACKAGE_XLIB_LIBXTST),yyy)
|
||||
PULSEAUDIO_DEPENDENCIES += libxcb xlib_libSM xlib_libXtst
|
||||
|
||||
# .desktop file generation needs nls support, so fake it for !locale builds
|
||||
# https://bugs.freedesktop.org/show_bug.cgi?id=54658
|
||||
ifeq ($(BR2_SYSTEM_ENABLE_NLS),)
|
||||
define PULSEAUDIO_FIXUP_DESKTOP_FILES
|
||||
cp $(@D)/src/daemon/pulseaudio.desktop.in \
|
||||
$(@D)/src/daemon/pulseaudio.desktop
|
||||
endef
|
||||
PULSEAUDIO_POST_PATCH_HOOKS += PULSEAUDIO_FIXUP_DESKTOP_FILES
|
||||
endif
|
||||
|
||||
else
|
||||
PULSEAUDIO_CONF_OPTS += --disable-x11
|
||||
endif
|
||||
|
||||
# ConsoleKit module init failure breaks user daemon startup
|
||||
define PULSEAUDIO_REMOVE_CONSOLE_KIT
|
||||
rm -f $(TARGET_DIR)/usr/lib/pulse-$(PULSEAUDIO_VERSION)/modules/module-console-kit.so
|
||||
endef
|
||||
|
||||
define PULSEAUDIO_REMOVE_VALA
|
||||
rm -rf $(TARGET_DIR)/usr/share/vala
|
||||
endef
|
||||
|
||||
PULSEAUDIO_POST_INSTALL_TARGET_HOOKS += PULSEAUDIO_REMOVE_VALA \
|
||||
PULSEAUDIO_REMOVE_CONSOLE_KIT
|
||||
|
||||
ifeq ($(BR2_PACKAGE_PULSEAUDIO_DAEMON),y)
|
||||
define PULSEAUDIO_USERS
|
||||
pulse -1 pulse -1 * /var/run/pulse - audio,pulse-access
|
||||
endef
|
||||
|
||||
define PULSEAUDIO_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -D -m 755 package/pulseaudio/S50pulseaudio \
|
||||
$(TARGET_DIR)/etc/init.d/S50pulseaudio
|
||||
endef
|
||||
|
||||
define PULSEAUDIO_INSTALL_INIT_SYSTEMD
|
||||
$(INSTALL) -D -m 644 package/pulseaudio/pulseaudio.service \
|
||||
$(TARGET_DIR)/usr/lib/systemd/system/pulseaudio.service
|
||||
endef
|
||||
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
@@ -0,0 +1,11 @@
|
||||
[Unit]
|
||||
Description=PulseAudio Sound System
|
||||
After=syslog.target
|
||||
|
||||
[Service]
|
||||
UMask=077
|
||||
ExecStart=/usr/bin/pulseaudio --system --daemonize=no
|
||||
Restart=always
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
Reference in New Issue
Block a user