X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?p=openpandora.oe.git;a=blobdiff_plain;f=recipes%2Fpandora-system%2Fpandora-firmware.bb;h=17d957ad497bb80dd1c29b00e89a909c0bedaf9f;hp=d6e1cea33bbb098752eaf60ea74b0cff1a699894;hb=325404fe135c42f6e31b5806b274a7c6d8507ed9;hpb=e7abcb4d2212ed2cca9b8ca5c88565d4d2fac91e diff --git a/recipes/pandora-system/pandora-firmware.bb b/recipes/pandora-system/pandora-firmware.bb index d6e1cea..17d957a 100755 --- a/recipes/pandora-system/pandora-firmware.bb +++ b/recipes/pandora-system/pandora-firmware.bb @@ -1,15 +1,17 @@ -DESCRIPTION = "Install binary firmware for Bluetooth and WiFi into the image." +DESCRIPTION = "Binary firmware blobs for WiFi, Bluetooth and DSP." +SUMMARY = "This is required to support WiFi, BT and DSP on the Pandora" LICENSE = "proprietary-binary" -RRECOMMENDS_${PN} = "kernel-module-firmware-class" -PR = "r4" +PR = "r5" SRC_URI = " \ file://brf6300.bin \ file://wl1251-fw.bin \ - file://bluetooth-conf \ + file://bluetooth-conf \ + file://baseimage.dof \ + file://baseimage.dof.license.txt \ + file://dspbridge.rules \ " -SUMMARY = "This is required to support the Bluetooth and WiFi modules on the Pandora" S = "${WORKDIR}" do_install() { @@ -17,10 +19,16 @@ do_install() { install -m 0644 ${S}/brf6300.bin ${S}/wl1251-fw.bin ${D}${base_libdir}/firmware/ install -d ${D}${sysconfdir}/sysconfig install -m 0755 ${S}/bluetooth-conf ${D}${sysconfdir}/sysconfig/bluetooth + install -d ${D}${base_libdir}/dsp + install -m 0644 ${S}/baseimage.dof ${D}${base_libdir}/dsp/ + install -m 0644 ${S}/baseimage.dof.license.txt ${D}${base_libdir}/dsp/ + install -d ${D}${base_libdir}/udev/rules.d/ + install -m 0755 ${S}/dspbridge.rules ${D}${base_libdir}/udev/rules.d/ } PACKAGE_ARCH = "${MACHINE_ARCH}" -FILES_${PN} += "${base_libdir}/firmware ${sysconfdir}/sysconfig" +FILES_${PN} += "${base_libdir}/firmware ${base_libdir}/dsp \ + ${sysconfdir}/sysconfig ${base_libdir}/udev/rules.d" COMPATIBLE_MACHINE = "omap3-pandora"