mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-10-22 14:52:19 +02:00
recipes: remove unused recipes
There are recipes compatible only with unsupported machines b4860qds and b4420qds and are referenced from nowhere. Remove unused recipes. Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
This commit is contained in:
parent
9bbadd4c8a
commit
b6885ffb66
|
@ -1,52 +0,0 @@
|
|||
SUMMARY = "Linux IPC Userspace Tool"
|
||||
DESCRIPTION = "DSP boot application and ipc test application"
|
||||
LICENSE = "BSD"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=fa38cd73d71527dc6efb546474f64d10"
|
||||
|
||||
SRC_URI = "git://github.com/nxp-qoriq-yocto-sdk/ipc;branch=nxp/sdk-v2.0.x \
|
||||
file://Makefile-use-LDFLAGS-if-set.patch \
|
||||
"
|
||||
SRCREV = "74d662707558290f070f9589177db730444bc435"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
# workaround for issue of parallel build, required a actual fix in ipc source
|
||||
PARALLEL_MAKE = ""
|
||||
|
||||
EXTRA_OEMAKE = 'CROSS_COMPILE="${TARGET_PREFIX}" CC="${CC}" AR="${AR}" B4860=1'
|
||||
|
||||
do_install () {
|
||||
install -d ${D}${bindir}
|
||||
install -d ${D}${includedir}
|
||||
install -d ${D}/ipc
|
||||
install -m 755 ${S}/dsp_boot/dsp_bt ${D}/ipc
|
||||
install -m 755 ${S}/ipc/ipc_test ${D}/ipc
|
||||
install -m 755 ${S}/ipc/ipc_test67 ${D}/ipc
|
||||
install -m 755 ${S}/ipc/l1d_app ${D}/ipc
|
||||
install -m 755 ${S}/fsl_shm/app ${D}${bindir}/lg_shm_test
|
||||
install -d ${D}${base_libdir}
|
||||
install -m 755 ${S}/ipc/libipc.so ${D}${base_libdir}
|
||||
install -m 755 ${S}/ipc/libmem.so ${D}${base_libdir}
|
||||
install -m 755 ${S}/ipc/libdspboot.so ${D}${base_libdir}
|
||||
install -d ${D}${includedir}/ipc
|
||||
install -d ${D}${includedir}/ipc/ipc/include
|
||||
install -d ${D}${includedir}/ipc/fsl_shm/lib
|
||||
install ${S}/ipc/include/*.h ${D}${includedir}/ipc/ipc/include
|
||||
install ${S}/dsp_boot/*.h ${D}${includedir}/ipc/ipc/include
|
||||
install ${S}/kernel/fsl_ipc_types.h ${D}${includedir}/ipc/ipc/include
|
||||
install ${S}/kernel/fsl_heterogeneous_common.h ${D}${includedir}/ipc/ipc/include
|
||||
install ${S}/kernel/fsl_heterogeneous_l1_defense.h ${D}${includedir}/ipc/ipc/include
|
||||
install ${S}/fsl_shm/include/*.h ${D}${includedir}/ipc/ipc/include
|
||||
install ${S}/fsl_shm/lib/*.h ${D}${includedir}/ipc/fsl_shm/lib
|
||||
}
|
||||
|
||||
FILES:${PN} += "${base_libdir}/*.so /ipc/*"
|
||||
FILES:${PN}-dev = "${includedir}"
|
||||
FILES:${PN}-dbg += "/ipc/.debug"
|
||||
|
||||
INSANE_SKIP:${PN} += "file-rdeps"
|
||||
INSANE_SKIP:${PN}-dev += "dev-elf"
|
||||
|
||||
COMPATIBLE_MACHINE = "(b4860qds|b4420qds)"
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
require kernel-module-ipc.inc
|
||||
|
||||
EXTRA_OEMAKE ="KERNEL_DIR=${STAGING_KERNEL_DIR} B4860=1 CONFIG_MULTI_RAT=1"
|
||||
|
||||
do_install(){
|
||||
install -d ${D}/usr/driver/IPC/multi_rat
|
||||
install -m 755 ${S}/kernel/*.ko ${D}/usr/driver/IPC/multi_rat
|
||||
}
|
||||
|
||||
FILES:${PN} += "/usr/driver/IPC/multi_rat/*.ko"
|
||||
FILES:${PN}-dbg += "/usr/driver/IPC/multi_rat/.debug"
|
||||
|
||||
COMPATIBLE_MACHINE = "(b4860qds|b4420qds)"
|
|
@ -1,13 +0,0 @@
|
|||
require kernel-module-ipc.inc
|
||||
|
||||
EXTRA_OEMAKE ="KERNEL_DIR=${STAGING_KERNEL_DIR} B4860=1"
|
||||
|
||||
do_install(){
|
||||
install -d ${D}/usr/driver/IPC/single_rat
|
||||
install -m 755 ${S}/kernel/*.ko ${D}/usr/driver/IPC/single_rat
|
||||
}
|
||||
|
||||
FILES:${PN} += "/usr/driver/IPC/single_rat/*.ko"
|
||||
FILES:${PN}-dbg += "/usr/driver/IPC/single_rat/.debug"
|
||||
|
||||
COMPATIBLE_MACHINE = "(b4860qds|b4420qds)"
|
|
@ -1,18 +0,0 @@
|
|||
DESCRIPTION = "QorIQ extension to Perf for supporting non core counters"
|
||||
LICENSE = "GPL-2.0-or-later"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=e29234dd5d40dc352cc60cc0c93437ba"
|
||||
|
||||
SRC_URI = "git://github.com/nxp-qoriq-yocto-sdk/qoriq-perf;branch=nxp/master"
|
||||
SRCREV = "7beb3783edac66bab00c85d99a7b073f569af7fd"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit module autotools-brokensep qoriq_build_64bit_kernel
|
||||
|
||||
PROCESSOR_REV ?= "B4860_R1"
|
||||
EXTRA_OECONF += "--with-linux=${STAGING_KERNEL_DIR} \
|
||||
--with-processor=${PROCESSOR_REV}"
|
||||
|
||||
EXTRA_OEMAKE += 'SYSROOT="${D}"'
|
||||
|
||||
COMPATIBLE_MACHINE = "(b4860qds)"
|
Loading…
Reference in New Issue
Block a user