mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 09:32:11 +02:00
Inside Build Appliance, external repos can be accesed using the git protocol through a proxy Fixes [YOCTO #3175] (From OE-Core rev: 938bfe375b6fca3c9281f3c906fba1aca6677aca) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
703 B
Bash
24 lines
703 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-socks-command
|
|
|
|
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 &
|