mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-05-06 11:32:38 +00:00
Stop using un-encrypted git:// protocol to access TI repositories. This is inline with the same arguments as made by github in https://github.blog/2021-09-01-improving-git-protocol-security-github/ Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
24 lines
570 B
BlitzBasic
24 lines
570 B
BlitzBasic
SUMMARY = "Firmware for OMAP4 and OMAP5 ABE"
|
|
HOMEPAGE = "http://git.ti.com"
|
|
LICENSE = "BSD | GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=923db086ed9463ab3215b24d87e05ec5"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
COMPATIBLE_MACHINE = "pandaboard|omap5-evm"
|
|
|
|
SRC_URI = "git://git.ti.com/git/glsdk/abefw-omap4plus.git;protocol=https"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
SRCREV = "ceccc0332264e39bdc51e54f80ea7256a3886c58"
|
|
|
|
PR = "r0"
|
|
|
|
do_install() {
|
|
mkdir -p ${D}/lib/firmware
|
|
cp ${S}/firmware/omap4_abe_new ${D}/lib/firmware/
|
|
}
|
|
|
|
FILES_${PN} += "/lib/firmware/omap4_abe_new"
|