blob: f6a756d048638a00cdfea84bba626a6c649a0dcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
do_install:append() {
# Work around upstream not using ${nonarch_base_libdir}/modules
if ${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', 'true', 'false', d)}; then
install -d ${D}${nonarch_base_libdir}/
mv ${D}/lib/modules ${D}${nonarch_base_libdir}/
rm -rf ${D}/lib
fi
}
# Required to guarantee the module goes into the expected
# kernel-module-vsp2driver package and doesn't end up packaged in
# kernel-module-vsp2 by the default behavior. Can be removed if
# upstream correctly use ${nonarch_base_libdir} themselves.
FILES:${PN} += "${nonarch_base_libdir}/modules/${KERNEL_VERSION}/extra/vsp2.ko"
|