mirror of
https://github.com/nxp-imx/meta-imx.git
synced 2026-01-27 11:32:16 +01:00
meta-bsp --> meta-imx-bsp meta-sdk --> meta-imx-sdk meta-ml --> meta-imx-ml meta-v2x --> meta-imx-v2x meta-cockpit-->meta-imx-cockpit Signed-off-by: Neena Busireddy <neenareddy.busireddy@nxp.com>
21 lines
702 B
Plaintext
21 lines
702 B
Plaintext
# Freescale specific patch
|
|
|
|
# This is the ugly patch to set matchbox-window-manager always to show cursor
|
|
do_install:append:mx6ul-nxp-bsp () {
|
|
if [ -e ${D}/${sysconfdir}/matchbox/session ]; then
|
|
sed -e 's/SHOWCURSOR=\"no\"/SHOWCURSOR=\"yes\"/' -i ${D}/${sysconfdir}/matchbox/session
|
|
fi
|
|
}
|
|
|
|
do_install:append:mx6sll-nxp-bsp () {
|
|
if [ -e ${D}/${sysconfdir}/matchbox/session ]; then
|
|
sed -e 's/SHOWCURSOR=\"no\"/SHOWCURSOR=\"yes\"/' -i ${D}/${sysconfdir}/matchbox/session
|
|
fi
|
|
}
|
|
|
|
do_install:append:mx7d-nxp-bsp () {
|
|
if [ -e ${D}/${sysconfdir}/matchbox/session ]; then
|
|
sed -e 's/SHOWCURSOR=\"no\"/SHOWCURSOR=\"yes\"/' -i ${D}/${sysconfdir}/matchbox/session
|
|
fi
|
|
}
|