Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 220118 - alsa-firmware-1.0.16 does not handle emu-flags correctly
Summary: alsa-firmware-1.0.16 does not handle emu-flags correctly
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo ALSA team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-05-03 14:10 UTC by Marc Hulsman
Modified: 2008-05-13 14:53 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Marc Hulsman 2008-05-03 14:10:29 UTC
Although I select the emu1212 audio device flag, the appropiate firmware was not installed due to a bug in the ebuild (alsa-firmware-1.0.16):

Relevant section of ebuild:

    local ea="no"
    for card in ${ECHOAUDIO_CARDS}; do
        use ${card} && ea="yes" && break
    done

    local emu="no"
    for card in ${EMU_CARDS}; do
        use ${card} && ea="yes" && break
    done

    [[ ${ea} == "no" ]] && rm -rf "${D}/lib/firmware/ea"
    [[ ${emu} == "no" ]] && rm -rf "${D}/lib/firmware/emu"


In the emu loop, it should read instead:
        use ${card} && emu="yes" && break

Reproducible: Always

Steps to Reproduce:
1. Install alsa-firmware-1.0.16 with emu audio device flags
Comment 1 Tony Vroon (RETIRED) gentoo-dev 2008-05-13 14:53:37 UTC
Indeed, some developer failed the copy/paste academy (that would be me). Sorry about that.