mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
Add dialog box while bitbake starts hob to inform user to please wait for the hob screen to become visible. (From OE-Core rev: d4d8dd9e272ee651b98bb336e96be601af366d41) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
921 B
BlitzBasic
31 lines
921 B
BlitzBasic
SUMMARY = "New user to do specific job"
|
|
DESCRIPTION = "This recipe create a new user named ${PN}, who is used for specific jobs like building. The task can be auto started via mini X"
|
|
SECTION = "x11"
|
|
PR = "r3"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://builder_hob_start.sh;endline=5;md5=84796c3c41785d86100fdabcbdade00e"
|
|
|
|
SRC_URI = "file://builder_hob_start.sh \
|
|
file://please_wait_dialog.py \
|
|
"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
RDEPENDS_${PN} = "mini-x-session"
|
|
|
|
inherit useradd
|
|
|
|
USERADD_PACKAGES = "${PN}"
|
|
USERADD_PARAM_${PN} = "--system --create-home \
|
|
--groups video,tty,audio \
|
|
--user-group ${PN}"
|
|
|
|
do_install () {
|
|
install -d -m 755 ${D}/etc/mini_x/session.d
|
|
install -p -m 755 builder_hob_start.sh ${D}/etc/mini_x/session.d/
|
|
|
|
chown ${PN}.${PN} ${D}/etc/mini_x/session.d/builder_hob_start.sh
|
|
install -p -m 755 please_wait_dialog.py ${D}/etc/mini_x
|
|
}
|
|
|