Skip to content
Snippets Groups Projects
firmware-vesta.bb 766 B
Newer Older
  • Learn to ignore specific revisions
  • SUMMARY = "Vesta firmware"
    DESCRIPTION = "Vesta wifi bdata file"
    SECTION = "base"
    LICENSE = "Proprietary"
    LIC_FILES_CHKSUM = "file://git/firmware/ath6k/LICENSE.qca_firmware;md5=2a397c0e988f4c52d3d526133b617c8d"
    
    PACKAGE_ARCH = "${MACHINE_ARCH}"
    
    #Qualcomm 6234 board data file
    SRCBRANCH ?= "master"
    SRCREV = "a5b37d7b354b6140d7e8fbb8bea1842550067e1c"
    SRC_URI = "git://git.rigado.com/vesta/vesta-firmware.git;protocol=https;branch=${SRCBRANCH};destsuffix=${S}/git "
    
    do_install() {
    	install -d ${D}${base_libdir}/firmware/ath6k/AR6004/hw3.0
        install -m 444 git/firmware/ath6k/AR6004/hw3.0/bdata.bin ${D}${base_libdir}/firmware/ath6k/AR6004/hw3.0
    }
    
    FILES_${PN} += " \
    	${base_libdir}/firmware/ath6k/AR6004/hw3.0/bdata.bin \
    "
    
    
    COMPATIBLE_MACHINE = "(vesta|imx6ul)"