diff options
Diffstat (limited to 'scripts/load-devel-config.sh')
-rwxr-xr-x | scripts/load-devel-config.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/load-devel-config.sh b/scripts/load-devel-config.sh new file mode 100755 index 00000000..489f0075 --- /dev/null +++ b/scripts/load-devel-config.sh @@ -0,0 +1,14 @@ +#! /bin/echo must be loaded with . + +# Load DPDK devel config and allow override +# from system file +test ! -r /etc/dpdk/devel.config || + . /etc/dpdk/devel.config +# from user file +test ! -r ~/.config/dpdk/devel.config || + . ~/.config/dpdk/devel.config +# from local file +test ! -r $(dirname $(readlink -m $0))/../.develconfig || + . $(dirname $(readlink -m $0))/../.develconfig + +# The config files must export variables in the shell style |