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:25:36 -0400 |
commit | 2177840474cd51a0b3bf5933a69f647e660a064e (patch) | |
tree | 923fe1b7f4f0916f31ca6f8ea817cbd5e4e07e5c /recipes-bsp | |
parent | eda7c92117cfdba0bb44a13e85bf676a836b481a (diff) | |
download | meta-ti-2177840474cd51a0b3bf5933a69f647e660a064e.tar.gz |
am33x-cm3: remove old CM3 PM FW recipe for 3.14 kernel
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp')
-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" | ||