Files
devtools/devshell.sh
Giacomo Tesio 7be0dbfbed devshell.sh: introduce $JEHANNE_DEVELOPER_DIR
$JEHANNE_DEVELOPER_DIR (default to ~/.jehanne) can hooks the
into the enviroment started by ./hacking/devshell.sh:

	$JEHANNE_DEVELOPER_DIR/devshell.sh is sourced by ./hacking/devshell.sh
	$JEHANNE_DEVELOPER_DIR/gdbinit is sourced by gdb started with ./hacking/gdb.sh
2017-01-19 19:31:39 +01:00

24 lines
674 B
Bash
Executable File

#!/bin/bash
export JEHANNE=`git rev-parse --show-toplevel`
export PATH="$JEHANNE/hacking/bin:$PATH"
export PATH="$JEHANNE/hacking/cross/toolchain/bin:$PATH"
export ARCH=amd64
export TOOLPREFIX=x86_64-jehanne-
# let each developer to customize her environment
if [ "$JEHANNE_DEVELOPER_DIR" = "" ]; then
JEHANNE_DEVELOPER_DIR=$HOME/.jehanne/
fi
if [ -d "$JEHANNE_DEVELOPER_DIR" ]; then
export JEHANNE_DEVELOPER_DIR
if [ -f "$JEHANNE_DEVELOPER_DIR/devshell.sh" ]; then
if [ "$JEHANNE_DEVELOPER_INIT_RUN" != "1" ]; then
. "$JEHANNE_DEVELOPER_DIR/devshell.sh"
export JEHANNE_DEVELOPER_INIT_RUN=1
fi
fi
fi
bash --rcfile <(cat ~/.bashrc; echo 'PS1="JehanneDEV $PS1"')