Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
bee-files/alsa-lib.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
> ### Core ### > > * Release v1.1.3 > * conf/ucm: skylake: add skylake-rt286 conf files > * conf: bxtrt298: Add topology conf file for bxt > * conf: sklrt286: Remove tool to generate private data blobs > * ucm: Add ucm files for DB410c board. > > ### Control API ### > > * ctl: correct documentation about TLV feature > * ctl: improve documentation about TLV-related APIs > * ctl: improve API documentation for TLV operation > > ### Mixer API ### > > * mixer: Fix rounding mode documentation > > ### PCM API ### > > * pcm: fix get_stop_threshold alsa-lib 0.9 alias > * pcm: file: update linked hw_ptr and appl_ptr > * pcm_rate: Do not discard slave reported delay in status result. > * pcm: fix wrong document references to PCM APIs which perform > direct memory access with frame copying > * pcm: dmix: Do not discard slave reported delay in status result > * pcm: Add the PCM state checks to plugins > * Revert "pcm: file: Add htimestamp operation in plugin file" > * pcm: file: Add htimestamp operation in plugin file > * pcm: dshare: Fix endless playback of buffer > * pcm: direct: Protect from freeing semaphore when already in use > * pcm_dshare: Do not discard slave reported delay in status result. > * pcm_plug: Clear plugins on all error conditions > * pcm: Better understandable locking code > * pcm: Fix shm initialization race-condition > > ### Topology API ### > > * topology: fix unused-variable warnings introduced to build_link() > * topology: Store number of strings of a text section > * topology: Merge private data before embedded controls of a widget > * topology: Revise document and comments for ABI v5 > * topology: Export physical DAIs to the binary for kernel > * topology: Support configuring physical DAIs by C API > * topology: Parse physical DAIs in text conf file > * topology: Remove BE or CC in comments of physical links C API template > * topology: Parse name and stream name of physical DAI links > * topology: Parse and build private data of physical links > * topology: Parse link flags of physical DAI links > * topology: Parse HW configurations of physical DAI links in text conf file > * topology: Parse HW configurations of physical DAI links defined by C API > * topology: Define new type and section name to configure physical links > * topology: Rename varaibles for add physical links by C API > * topology: Define a function to build a single physical DAI link > * topology: Merge an element's be & cc pointer to one link pointer > * topology: Use snd_config_get_bool to simplify boolean flag parsing > * topology: tplg_elem_lookup() checks parameter before searching > * topology: Parse and build private data for PCM > * topology: Define a function to build a single PCM element > * topology: Parse flags for PCM > * topology: Parse sig_bits of stream caps > * topology: Add doc for including other files in the text conf file > * topology: Fix missing stream name of widgets in text conf file > > ### Use Case Manager API ### > > * ucm: Execute sequence of component devices > * ucm: Parse sequence of component devices > * ucm: Skip component directories when scanning sound card configuration files > * ucm: docs: typeset lists of identifiers explicitly > * ucm: fix crash when calling snd_use_case_geti() with no device or modifier > > Configuration > > * conf: don't install smixer.conf when python is not available > * topology: Update physical link configurations in Broadwell text conf file > * conf: Search included files under user specified configuration directories > * conf/ucm: skylake: add skylake-rt286 conf files > * conf: bxtrt298: Add topology conf file for bxt > * conf: sklrt286: Remove tool to generate private data blobs > * conf: sklrt286: define module private data through tuples in skylake > * ucm: Add ucm files for DB410c board. > > Kernel Headers > > * topology: ABI - Add voice wake up flag for DAI links > * topology: ABI - Define new types for physical DAI > * topology: ABI - Update manifest and pump ABI version to 5 > * topology: ABI - Update physical DAI link configurations to ABI v5 > * topology: ABI - Define DAI physical PCM data formats > * topology: ABI - Update stream caps and PCM objects to ABI v5 > * Update include/sound/tlv.h from 4.9-pre kernel uapi > > ### Simple Abstraction Mixer Modules ### > > * mixer: Don't install smixer modules unless python is enabled > > ### Test/Example code ### > > * test: use actual information for TLV operation
executable file
85 lines (65 sloc)
2.54 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env beesh | |
# BEE_VERSION alsa-lib-1.1.3-0 | |
## this file was created by bee init and should be executed to build a | |
## bee-package. (Additional hints are located at the end of this file.) | |
############################################################################### | |
## The source URL(s) define the location of the sources that will be | |
## downloaded. Version variables may be used to simplify reuse of this bee-file. | |
SRCURL[0]="ftp://ftp.alsa-project.org/pub/lib/alsa-lib-${PKGVERSION}.tar.bz2" | |
############################################################################### | |
## Add URLs/pathes to patch files to the PATCHURL array. | |
## The sources will be patched in the order of the array. | |
# PATCHURL+=() | |
############################################################################### | |
## Add filename patterns to the EXCLUDE array of files that should not | |
## be added to you package but may be present in the image directory. | |
# EXCLUDE+=() | |
############################################################################### | |
## Uncomment the next statement, if the software may not be able to be build | |
## outside the source directory and need to be build inside the source | |
## directory. | |
# build_in_sourcedir | |
############################################################################### | |
## bee cannot detect buildtypes specified in subdirectories. | |
## Sometimes packages "hide" the real sources in a subdirectory named | |
## 'src' or 'cmake' or .. | |
## use 'sourcesubdir_append' to specify this directory if known. | |
# sourcesubdir_append src | |
############################################################################### | |
## Change the default (auto-detected) steps to | |
## extract, patch, configure/setup, build and install the software. | |
## Make sure the mee_install function does install everything to the | |
## image directory "${D}" | |
#mee_extract() { | |
# bee_extract "${@}" | |
#} | |
#mee_patch() { | |
# bee_patch "${@}" | |
#} | |
#mee_configure() { | |
# bee_configure | |
#} | |
#mee_build() { | |
# bee_build | |
#} | |
#mee_install() { | |
# bee_install | |
#} | |
## by default this may be 'make install DESTDIR="${D}"' | |
############################################################################### | |
## | |
## Additional hints: | |
## | |
## The name of this bee-file should follow the following naming convention: | |
## pkgname-pkgversion-pkgrevision.bee | |
## | |
## You may remove all comments as long as SRCURL[0] is set. | |
## | |
## Everything in this file will be executed in a bash environment. | |
## | |
## Build the package by executing | |
## './pkg-version-N.bee' or | |
## 'beesh ./pkg-version-N.bee' | |
## | |
## see http://beezinga.org/ | |
## |