mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
Register directories to be opened with PCManFM filemanager using xdg-open in Build Appliance. (From OE-Core rev: 06d1e6db91497ad86803f9a5ed2346cd23cfa744) 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>
33 lines
982 B
Bash
33 lines
982 B
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 folders to open with PCManFM filemanager
|
|
if [ ! -d /home/ubik/tmp/.local/share/applications ]; then
|
|
mkdir -p /home/builder/.local/share/applications/
|
|
xdg-mime default pcmanfm.desktop inode/directory
|
|
fi
|
|
|
|
cd /home/builder/poky
|
|
. ./oe-init-build-env
|
|
|
|
#uncomment the settings for BB_NUMBER_THREADS and PARALLEL_MAKE
|
|
sed -i 's/^#BB_NUMBER_THREADS =/BB_NUMBER_THREADS =/g' conf/local.conf
|
|
sed -i 's/^#PARALLEL_MAKE =/PARALLEL_MAKE =/g' conf/local.conf
|
|
|
|
hob &
|
|
|
|
matchbox-terminal&
|
|
|
|
/etc/mini_x/please_wait_dialog.py &
|