aboutsummaryrefslogtreecommitdiffstats
path: root/classes/devshell.bbclass
blob: 9327b55d0af914c5646b8dc54f98f938d33ab314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
EXTRA_OEMAKE[export] = "1"

do_devshell[dirs] = "${S}"
do_devshell[nostamp] = "1"

export DISPLAY
export DBUS_SESSION_BUS_ADDRESS
export XAUTHORITY ?= "${HOME}/.Xauthority"

devshell_do_devshell() {
	export TERMWINDOWTITLE="Bitbake Developer Shell"
	${TERMCMD}
	if [ $? -ne 0 ]; then
	    echo "Fatal: '${TERMCMD}' not found. Check TERMCMD variable."
	    exit 1
	fi
}
addtask devshell after do_patch


EXPORT_FUNCTIONS do_devshell