mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 12:41:58 +02:00
9 lines
323 B
Bash
9 lines
323 B
Bash
#!/bin/sh
|
|
#
|
|
# This script passes BMI state variables to the running JVM.
|
|
#
|
|
if [ ${BMIBUS_PRODUCT} != "" ] && [ ${BMIBUS_SLOT} != "" ] && [ ${ACTION} != "" ];
|
|
then
|
|
echo $BMIBUS_PRODUCT 0 $BMIBUS_SLOT $ACTION > /tmp/eventpipe
|
|
fi
|