mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
7d995c58b1
Not all dependencies are in yet e.g. eve is missing webkit-efl, but e-wm should build Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
30 lines
407 B
Plaintext
30 lines
407 B
Plaintext
status() {
|
|
if type splash-write >/dev/null 2>&1; then
|
|
(TMPDIR="/mnt/.splash" EXQUISITE_IPC="$TMPDIR/exquisite" splash-write "$1" || true) &
|
|
fi
|
|
}
|
|
|
|
status_position() {
|
|
status "PROGRESS $1"
|
|
}
|
|
|
|
status_title() {
|
|
status "TITLE $1"
|
|
}
|
|
|
|
status_text() {
|
|
if test -n "$1"; then
|
|
status "MSG $1"
|
|
else
|
|
status "CLEAR"
|
|
fi
|
|
}
|
|
|
|
status_pulse() {
|
|
status "PULSATE"
|
|
}
|
|
|
|
status_tick() {
|
|
status "TICK"
|
|
}
|