blob: 5a282fb2f2834beff67db43d693884f3a0209203 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:"
EXTRA_OEGYP_prepend = "-DUSE_EABI_HARDFLOAT=1"
SRC_URI += " \
file://chromium_arm_build.patch \
file://h264_enablement.patch \
"
FILES_${PN} += " \
${libdir}/libOmxCore.so \
"
#we have a symlinks ending in .so, skip QA ldflags for this package
INSANE_SKIP_${PN} = "dev-so ldflags"
do_install_append () {
#make a symlink with the standard soname of the OpenMax component
install -d ${D}/${libdir}
ln -s libnvomx.so ${D}/${libdir}/libOmxCore.so
}
|