Files
poky/meta/recipes-graphics/builder/files/builder_hob_start.sh
Cristian Iorga 76940edcdf builder: removed setting of BB_NUMBER_THREADS and PARALLEL_MAKE
This values are now adjusted automatically, based on underlying
hardware CPU cores count, so no need to enable manually.

(From OE-Core rev: 548f51122900ba600030005b888053bdf009fa31)

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-07-10 17:38:32 +01:00

38 lines
1.1 KiB
Bash

#!/bin/sh
#This script will be called via mini X session on behalf of file owner, after
#installed in /etc/mini_x/session.d/. Any auto start jobs including X apps can
#be put here
# start hob here
export PSEUDO_PREFIX=/usr
export PSEUDO_LOCALSTATEDIR=/home/builder/pseudo
export PSEUDO_LIBDIR=/usr/lib/pseudo/lib64
export GIT_PROXY_COMMAND=/home/builder/poky/scripts/oe-git-proxy
#start pcmanfm in daemon mode to allow asynchronous launch
pcmanfm -d&
#register handlers for some file types
if [ ! -d /home/builder/.local/share/applications ]; then
mkdir -p /home/builder/.local/share/applications/
#register folders to open with PCManFM filemanager
xdg-mime default pcmanfm.desktop inode/directory
#register html links and files with Midori
xdg-mime default midori.desktop x-scheme-handler/http
xdg-mime default midori.desktop x-scheme-handler/https
xdg-mime default midori.desktop text/html
#register text files with leafpad text editor
xdg-mime default leafpad.desktop text/plain
fi
cd /home/builder/poky
. ./oe-init-build-env
hob &
matchbox-terminal&
/etc/mini_x/please_wait_dialog.py &