mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-30 00:19:08 +00:00
Change to support common INC for all firmware This will help with: 1) Eliminating requirement to change multiple recipes for firmware update 2) This will help support AUTOREV Signed-off-by: Yogesh Siraswar <yogeshs@ti.com> Reviewed-by: Denys Dmytriyenko <denys@konsulko.com>
24 lines
457 B
BlitzBasic
24 lines
457 B
BlitzBasic
DESCRIPTION = "NETCP SA firmware for Keystone"
|
|
|
|
require recipes-bsp/ti-linux-fw/ti-linux-fw.inc
|
|
|
|
PV = "${NETCP_SA_FW_VERSION}"
|
|
PR = "${INC_PR}.0"
|
|
|
|
CLEANBROKEN = "1"
|
|
|
|
COMPATIBLE_MACHINE = "keystone"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
TARGET = "sa_mci.fw"
|
|
|
|
do_install() {
|
|
install -d ${D}${base_libdir}/firmware
|
|
install -m 0644 ${S}/ti-keystone/${TARGET} ${D}${base_libdir}/firmware/${TARGET}
|
|
}
|
|
|
|
FILES_${PN} = "${base_libdir}/firmware"
|