diff options
author | Denys Dmytriyenko <denys@ti.com> | 2016-09-13 04:40:55 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2016-09-12 22:26:24 -0400 |
commit | c000a7f2302d08b26967243a10f8116218ba9093 (patch) | |
tree | 62a2df7589610380d5e1da418483f90565f28ff0 | |
parent | fb237a2dd0f76d07aa60c98a0fa6a7cf3c3e6873 (diff) | |
download | meta-ti-c000a7f2302d08b26967243a10f8116218ba9093.tar.gz |
am33x-cm3: remove old CM3 PM FW recipe for 3.14 kernel
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r-- | recipes-bsp/cm3-pm-firmware/am33x-cm3_git.bb | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/recipes-bsp/cm3-pm-firmware/am33x-cm3_git.bb b/recipes-bsp/cm3-pm-firmware/am33x-cm3_git.bb deleted file mode 100644 index 62aebb90..00000000 --- a/recipes-bsp/cm3-pm-firmware/am33x-cm3_git.bb +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | DESCRIPTION = "Cortex-M3 binary blob for suspend-resume" | ||
2 | |||
3 | LICENSE = "TI-TSPA" | ||
4 | LIC_FILES_CHKSUM = "file://License.txt;md5=7bdc54a749ab7a7dea999d25d99a41b8" | ||
5 | |||
6 | PV = "1.9.0" | ||
7 | PR = "r1" | ||
8 | PE = "1" | ||
9 | |||
10 | SRCREV = "d85e6a17da1025adac9ab7f97dd7aa2a58c517ce" | ||
11 | BRANCH ?= "ti-v3.14.y" | ||
12 | |||
13 | SRC_URI = "git://git.ti.com/processor-firmware/ti-amx3-cm3-pm-firmware.git;protocol=git;branch=${BRANCH}" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | FLOATABI = "${@bb.utils.contains("TUNE_FEATURES", "vfp", bb.utils.contains("TUNE_FEATURES", "callconvention-hard", " -mfloat-abi=hard", " -mfloat-abi=softfp", d), "" ,d)}" | ||
18 | |||
19 | do_compile() { | ||
20 | make CROSS_COMPILE="${TARGET_PREFIX}" CC="${TARGET_PREFIX}gcc ${TOOLCHAIN_OPTIONS} ${FLOATABI}" | ||
21 | } | ||
22 | |||
23 | do_install() { | ||
24 | install -d ${D}${base_libdir}/firmware | ||
25 | install -m 0644 bin/am335x-pm-firmware.elf ${D}${base_libdir}/firmware/ | ||
26 | install -m 0644 bin/*-scale-data.bin ${D}${base_libdir}/firmware/ | ||
27 | } | ||
28 | |||
29 | FILES_${PN} += "${base_libdir}/firmware" | ||